Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/thirdkeyai/symbi-gemini-cli/symbi-initnpx skills add ThirdKeyAI/symbi-gemini-cli --skill symbi-initgit clone --depth 1 https://github.com/ThirdKeyAI/symbi-gemini-cliWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/thirdkeyai/symbi-gemini-cli/symbi-init)<a href="https://agentmods.dev/skills/thirdkeyai/symbi-gemini-cli/symbi-init"><img src="https://agentmods.dev/badge/skills/thirdkeyai/symbi-gemini-cli/symbi-init.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00048 | $0.00447 |
| Opus 5 | $0.00024 | $0.00224 |
| Sonnet 5 | $0.00010 | $0.00089 |
| Haiku 4.5 | $0.00005 | $0.00045 |
Grade A, and why
symbi-init scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
Copies of this mod
1 near-identical copy found in the catalogue:
- symbi-init — 100% identical, 0 lines differ
What it actually says
Initialize Symbiont Project
Set up a governed agent project in the current directory.
Steps
-
Check if
symbiont.tomlalready exists. If so, ask before overwriting. -
Create the directory structure:
agents/ # Agent DSL definitions policies/ # Cedar policy files -
Create
symbiont.tomlwith sensible defaults:[runtime] security_tier = "tier1" # Docker isolation log_level = "info" [policy] engine = "cedar" enforcement = "strict" [schemapin] mode = "tofu" # Trust-On-First-Use -
Create a starter agent at
agents/assistant.dsl:metadata { version = "1.0.0" description = "Default governed assistant" } agent assistant(input: Query) -> Response { capabilities = ["read", "analyze"] policy default_access { allow: read(input) if true deny: write(any) if not approved audit: all_operations } with memory = "session" { result = process(input) return result } } -
Create a starter Cedar policy at
policies/default.cedar:// Default: allow read operations, require approval for writes permit( principal, action == Action::"read", resource ); forbid( principal, action == Action::"write", resource ) unless { principal.approved == true }; -
Create
AGENTS.mdmanifest for the project. -
Report what was created and suggest next steps.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 78 lines · 48 tokens per session scan A 45510d69fbb2
symbi-init is a skill published in the GitHub repository ThirdKeyAI/symbi-gemini-cli (3 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 48 tokens to every session and 447 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
symbi-agent-sdk
Generate boilerplate for wrapping Gemini CLI agents in ORGA governance. Use when building headless agents that run inside Symbiont's CliExecutor or when integrating Gemini CLI with Symbiont's trust stack.
symbi-init
Initialize a Symbiont-governed project. Creates agent definitions, Cedar policies, and configuration files. Use when setting up a new project with AI agent governance or adding Symbiont to an existing project.
symbi-policy
Create, edit, or validate Cedar authorization policies for Symbiont agents. Use when defining access control rules, setting up security policies, or debugging policy evaluation.
symbi-dsl
Parse, validate, and create Symbiont DSL agent definitions. Use when writing new agents, debugging DSL syntax errors, or understanding existing agent definitions.
symbi-verify
Verify MCP tool schemas using SchemaPin cryptographic verification. Use when adding new MCP servers, auditing existing tool integrations, or checking tool integrity.
symbi-audit
Query and analyze Symbiont's cryptographic audit logs. Use when reviewing agent activity, investigating incidents, or preparing compliance reports.