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 instructions/shinerio/skillflow/agents-mdgit clone --depth 1 https://github.com/shinerio/SkillFlowWhat 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.04744 | $0.04744 |
| Opus 5 | $0.02372 | $0.02372 |
| Sonnet 5 | $0.00949 | $0.00949 |
| Haiku 4.5 | $0.00474 | $0.00474 |
Grade A, and why
SkillFlow AGENTS.md 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 370 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to coding agents when working with this repository.
Directory Organization Rule - MANDATORY
The root directory must contain no Go source files. All code lives in clearly scoped subdirectories:
/ (project root - no .go files here)
go.mod, go.sum
Makefile
AGENTS.md (→ CLAUDE.md symlink)
README.md, README_zh.md
contributing.md, contributing_zh.md
LICENSE, .gitignore, .github/
changelog/
chats/
docs/
agents/
skill_directory.md
memory_directory.md
architecture/
README.md
README_zh.md
overview.md
overview_zh.md
contexts.md
contexts_zh.md
layers.md
layers_zh.md
use-cases.md
use-cases_zh.md
runtime-and-storage.md
runtime-and-storage_zh.md
features.md
features_zh.md
config.md
config_zh.md
plans/
superpowers/
core/
config/
platform/
shared/
orchestration/
readmodel/
skillcatalog/
app/
domain/
infra/
promptcatalog/
app/
domain/
infra/
agentintegration/
app/
domain/
infra/
skillsource/
app/
domain/
infra/
backup/
app/
domain/
infra/
cmd/
skillflow/
main.go
app.go, app_*.go
adapters.go, providers.go, events.go, version.go
process_*.go
tray_*.go
window_*.go
single_instance_*.go
wails.json
build/
frontend/
Rules:
- Never add
.gofiles to the project root. - New backend business code must go under a bounded context in
core/<context>/app,core/<context>/domain, orcore/<context>/infra. - Cross-context write coordination belongs in
core/orchestration/. - Cross-context read composition belongs in
core/readmodel/. - Pure technical capabilities with no business ownership belong in
core/platform/. core/config/is a frontend-facing settings facade and split/merge persistence adapter. Do not treat it as a bounded context.core/shared/is only for highly stable shared kernel concepts. Do not move context-local IDs or business rules there unless they are genuinely cross-context.cmd/skillflow/remains the Wails desktop shell, transport adapter layer, process host, and composition root.wails.jsonmust stay co-located withfrontend/insidecmd/skillflow/.- The
//go:embed all:frontend/distdirective inmain.goworks because both are incmd/skillflow/. go test ./core/...is run from the module root.- Import paths use the full module path:
github.com/shinerio/skillflow/core/.... cmd/skillflow/*.gofiles must remain flat. Wails bindings require a singlepackage maindirectory, so do not create subdirectories undercmd/skillflow/.- Use file-name prefixes inside
cmd/skillflow/as the organization convention:app.go,app_*.gofor Wails-facing transport methodsevents.gofor shell event types and emittersadapters.go,providers.gofor shell-side wiringprocess_*.go,tray_*.go,window_*.go,single_instance_*.gofor shell/runtime concerns
- When a concern grows large enough to warrant its own package, extract it to
core/rather than creating a subdirectory insidecmd/skillflow/.
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.
- 2d ago First seen · 370 lines · 4,744 tokens per session scan A a2d7adc57341
SkillFlow AGENTS.md is an instructions file published in the GitHub repository shinerio/SkillFlow (24 stars, last pushed 2d ago), licensed MIT. It adds 4,744 tokens to every session, about $0.0237 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-30.
Other instructions, from other repositories
rolecraft AGENTS.md
Instructions for rolecraft-sh/rolecraft, covering rolecraft — development guidelines, ⚠️ startup checklist (read before every task), workflow, interaction rules and code style.
skills AGENTS.md
Instructions for flc1125/skills, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
claude-skills CLAUDE.md
Instructions for obeone/claude-skills, covering claude.md, repository overview, architecture, current skills and commands.
claude-skills AGENTS.md
Instructions for obeone/claude-skills, covering agents.md, overview: claude agent skills stack, execution environment, key paths and release & versioning.
Loop AGENTS.md
Instructions for Kevin-Liu-01/Loop, covering claude code prompt for plan mode, ultracite code standards, quick reference, core principles and type safety & explicitness.
SonarCloud-Skill-Agent-Guidance
Repository guidance for the SonarCloud/SonarQube findings management skill.