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 agents/silo-code/silo/profilesgit clone --depth 1 https://github.com/silo-code/siloWrote 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/agents/silo-code/silo/profiles)<a href="https://agentmods.dev/agents/silo-code/silo/profiles"><img src="https://agentmods.dev/badge/agents/silo-code/silo/profiles.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 | $0.00000 | $0.01475 |
| Opus 5 | $0.00000 | $0.00737 |
| Sonnet 5 | $0.00000 | $0.00295 |
| Haiku 4.5 | $0.00000 | $0.00147 |
Grade A, and why
profiles 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 today.
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.
How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ctx.agents.profiles
Read the user's Agent Profiles and start one — optionally with an opening
prompt. A profile is the user's own named recipe for launching a coding agent
(a label, a command line like claude-work, and an optional config directory
for running a second account), defined on Settings → Agents → Profiles.
ctx.agents.profiles: AgentProfilesService
A profile is a way to start a terminal, not a way to talk to an agent. What comes up is a PTY running a real agent CLI, exactly as if the user had typed the command themselves — there is no agent-agnostic messaging layer here, and there is not meant to be one. Talking to an agent that is already running is out of scope.
There is deliberately no pick() — build one from list() and
ctx.ui.showMenu — and no get(), which is list().find().
Example
Let the user pick a profile and start it on a task
function startOn(ctx: ExtensionContext, profileId: string): void {
const result = ctx.agents.profiles.launch({
profileId,
prompt: "Fix the failing test in src/foo.test.ts",
});
if (result.ok) {
ctx.ui.notify("info", `Started in terminal ${result.terminalId}.`);
} else {
ctx.ui.notify("warn", `Couldn't start it: ${result.refusal}`);
}
}
export const extension: Extension = {
id: "my.start-task",
activate(ctx) {
ctx.subscriptions.push(
ctx.registerCommand({
id: "my.startTask",
label: "My: Start a task",
run: () => {
const profiles = ctx.agents.profiles.list();
if (profiles.length === 0) {
ctx.ui.notify(
"warn",
"No agent profiles yet — add one in Settings → Agents.",
);
return;
}
void ctx.ui.showMenu({
items: profiles.map((p) => ({
label: p.isDefault ? `${p.label} (default)` : p.label,
run: () => startOn(ctx, p.id),
})),
});
},
}),
);
},
};
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.
- today First seen · 152 lines · 0 tokens per session scan A 9bc6a3b8e481
profiles is an agent published in the GitHub repository silo-code/silo (55 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,475 tokens. 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-09-03.
Other agents, from other repositories
project-structure-validator
Validates project structure against co-location and architecture patterns defined in AGENTS.md.
codemap
Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…
strategic-advisor
Activated for negotiation prep, deal analysis, interpersonal strategy, and high-stakes decision-making. Combines game theory with psychological awareness.
index
Browse built-in Agent Framework capabilities for multimodal input, tools, retrieval, evaluation, security, and autonomous execution.
reviewer
Code reviewer (escalation, not a default step). Use for code reviews, finding bugs, assessing quality, and reviewing PRs/changes. Never modifies code.
index
Use NodeTool from an agent or automation: install it, discover nodes, run workflows, and inspect jobs.