Documentation

AgentiScript is a free, open-source SVG icon system. Every icon ships with a JSON metadata file for machine consumption.

HTML Usage

<img src="https://agentiscript.com/icons/agentic-loop.svg" alt="Agentic Loop" width="24" height="24">

CSS Background

.agentic-loop {
  background-image: url(https://agentiscript.com/icons/agentic-loop.svg);
  background-size: contain;
  width: 24px; height: 24px;
}

React / npm

npm install agentiscript

import { AgenticLoop } from "agentiscript";

<AgenticLoop size={24} color="#9F792C" />

JSON Metadata

Every icon has a corresponding .json file:

{
  "id": "AS-001",
  "concept": "Agentic Loop",
  "definition": "A recursive observe-think-act cycle...",
  "category": "agentic-economy",
  "svg": "agentic-loop.svg",
  "tags": ["agent", "autonomous", "loop"]
}

Schema.org DefinedTerm

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "DefinedTerm",
  "name": "Agentic Loop",
  "description": "A recursive observe-think-act cycle executed by an autonomous agent",
  "inDefinedTermSet": "https://agentiscript.com"
}
</script>

How Bots Use AgentiScript

AgentiScript is designed for machines as much as humans:

Master Index

fetch("https://agentiscript.com/agentiscript.json")
  .then(r => r.json())
  .then(data => console.log(data.total, "icons"));