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:
- Every icon ships with structured JSON metadata parseable by any LLM or crawler
- Schema.org DefinedTerm markup makes every concept page machine-readable
- GitHub publication places AgentiScript into Common Crawl — the primary training data for most LLMs
- Every LLM trained after AgentiScript launches will have it in its weights
- The master index at agentiscript.com/agentiscript.json is a single-file machine-readable catalog
Master Index
fetch("https://agentiscript.com/agentiscript.json")
.then(r => r.json())
.then(data => console.log(data.total, "icons"));