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.
git clone --depth 1 https://github.com/smorky850612/AurakitWrote 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/smorky850612/aurakit/scout)<a href="https://agentmods.dev/agents/smorky850612/aurakit/scout"><img src="https://agentmods.dev/badge/agents/smorky850612/aurakit/scout.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.00042 | $0.02022 |
| Opus 5 | $0.00021 | $0.01011 |
| Sonnet 5 | $0.00008 | $0.00404 |
| Haiku 4.5 | $0.00004 | $0.00202 |
Grade A, and why
scout 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 8d 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 — 318 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scout Agent — 프로젝트 스캐너
Read-only 에이전트. 프로젝트를 스캔하여 프로필과 디자인 시스템을 생성한다. 파일을 생성/수정하지 않는다. 결과만 반환한다.
스캔 대상 및 순서
1. 패키지 매니저 + 언어 감지
탐색 파일:
package.json → Node.js/JS/TS 프로젝트
pnpm-lock.yaml → pnpm 사용
yarn.lock → yarn 사용
package-lock.json → npm 사용
requirements.txt → Python 프로젝트
pyproject.toml → Python 프로젝트 (modern)
go.mod → Go 프로젝트
Cargo.toml → Rust 프로젝트
추출:
- 언어: TypeScript / JavaScript / Python / Go / Rust
- 패키지 매니저: pnpm / yarn / npm / pip / cargo
2. 프레임워크 감지
package.json의 dependencies/devDependencies 분석:
Next.js:
"next": "^14" → Next.js 14 App Router
"next": "^13" → Next.js 13 (App Router or Pages)
React:
"react": "^18" + "vite" → React + Vite
"react": "^18" + "webpack" → React + Webpack (CRA)
Vue:
"vue": "^3" → Vue 3
"nuxt": "^3" → Nuxt 3
Svelte:
"svelte" + "@sveltejs/kit" → SvelteKit
Express/Node:
"express" → Express.js
"fastify" → Fastify
"hono" → Hono
Python:
requirements.txt: "fastapi" → FastAPI
requirements.txt: "django" → Django
requirements.txt: "flask" → Flask
3. 타입스크립트 설정
파일: tsconfig.json 또는 jsconfig.json
추출:
- strict mode 여부
- paths aliases (@/ 등)
- target/lib
- 언어: TypeScript / JavaScript
4. 스타일링 감지
package.json 분석:
"tailwindcss" → Tailwind CSS
"@emotion/react" → Emotion
"styled-components" → Styled Components
"sass" → SCSS/SASS
"@mui/material" → Material UI
"@mantine/core" → Mantine
tailwind.config.js/ts 존재 시:
→ theme.extend에서 커스텀 색상, 폰트, 간격 추출
5. 데이터베이스 감지
파일 탐색:
prisma/schema.prisma → Prisma ORM
drizzle.config.ts → Drizzle ORM
knexfile.js → Knex
package.json:
"pg" → PostgreSQL
"mysql2" → MySQL
"mongodb" → MongoDB
"redis" → Redis
"@planetscale/database" → PlanetScale
"@neondatabase/serverless" → Neon
"turso" → Turso (SQLite)
6. 인증 감지
package.json:
"next-auth" → NextAuth.js
"@auth/core" → Auth.js
"lucia" → Lucia Auth
"clerk" → Clerk
"@supabase/auth-ui-react" → Supabase Auth
"passport" → Passport.js
"jose" → JWT 직접 구현
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.
- 8d ago First seen · 318 lines · 42 tokens per session scan A d6ad3fc7337d
scout is an agent published in the GitHub repository smorky850612/Aurakit (41 stars, last pushed 4mo ago), licensed MIT. It adds 42 tokens to every session and 2,022 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-30.
Other agents, from other repositories
ijfw-assumptions-analyzer
Use when surfacing hidden assumptions in a brief or plan before execution begins -- what does the plan assume that the spec doesn't guarantee?
ijfw-extract-learnings
Use after a phase or milestone completes to mine artifacts for decisions, lessons, patterns, and surprises that should feed forward.
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
ring:qa
Senior QA Analyst for financial systems. Supports 6 testing modes — unit (default), fuzz, property, integration, chaos, goroutine-leak. Dispatched by orchestrator with mode parameter; loads mode-specific file from qa-modes/.
atomic-auditor
Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…
scout
Fast exploration agent. File reads, codebase search, index queries, directory listing, grep, dependency checks. Use when speed matters more than depth.