scout

scout is an agent for Claude Code from smorky850612/Aurakit. It costs 42 tokens per session (2,022 once invoked), scanned A, original, MIT.

A read-only project scanner that identifies a codebase's language, package manager, framework, TypeScript settings, dependencies, and design tokens. Design tokens are shared values such as colors, spacing, and font sizes.

In plain words
What is it for?
Use it to create or refresh a project profile and understand the project's structure, tools, dependencies, and visual design rules.
Why use it?
It removes the need to inspect project files manually before an agent works on a project.

Agent for Claude Code

Written for Claude Code: disallowed-tools in frontmatter. Also seen: model in frontmatter.

Part of the aurakit plugin — 3 skills, 23 agents shipped together

Good fit Use it to create or refresh a project profile and understand the project's structure, tools, dependencies, and visual design rules.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/smorky850612/aurakit/scout
Install

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.

Clone the repo
git clone --depth 1 https://github.com/smorky850612/Aurakit

Made for: Claude Code.

Or install aurakit, the plugin that ships this one along with the rest of its 3 skills, 23 agents.

Wrote 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.

agentmods badge for scout

README.md
[![agentmods](https://agentmods.dev/badge/agents/smorky850612/aurakit/scout.svg)](https://agentmods.dev/agents/smorky850612/aurakit/scout)
Your own site
<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>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,022 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash d6ad3fc7337d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

agents/scout.md · 318 lines

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 직접 구현

Read the full file on GitHub · 318 lines

Changes

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.

  1. 8d ago First seen · 318 lines · 42 tokens per session scan A d6ad3fc7337d

Subscribe to this mod's changes

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.