taskchad-os: Skill for Claude Code

.claude/skills/brownfield-day-1/SKILL.md

brownfield-day-1 is a skill for Claude Code from TheSmokeDev/taskchad-os. It costs 121 tokens per session (2,604 once invoked), scanned A, original, MIT.

A workflow that studies a codebase without an AI configuration and creates one from that analysis. The AI layer consists of a CLAUDE.md instruction file and customized Claude commands.

In plain words
What is it for?
Use it to scan a new codebase, analyze its structure, and generate project-specific AI instructions and command files.
Why use it?
It removes the need to understand the entire repository and design its assistant instructions manually. It first checks that the repository does not already have a CLAUDE.md file.

Skill for Claude Code

Written for Claude Code: arguments in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

This is TheSmokeDev/taskchad-os's own configuration. It tells Claude Code how to work on taskchad-os itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything taskchad-os configures →

Reuse

Borrowing it

Nothing to install: this file belongs to TheSmokeDev/taskchad-os. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/TheSmokeDev/taskchad-os/master/.claude/skills/brownfield-day-1/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/TheSmokeDev/taskchad-os

Made for: Claude Code.

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 brownfield-day-1

README.md
[![agentmods](https://agentmods.dev/badge/skills/thesmokedev/taskchad-os/brownfield-day-1/github.svg)](https://agentmods.dev/skills/thesmokedev/taskchad-os/brownfield-day-1)
Your own site
<a href="https://agentmods.dev/skills/thesmokedev/taskchad-os/brownfield-day-1"><img src="https://agentmods.dev/badge/skills/thesmokedev/taskchad-os/brownfield-day-1/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for brownfield-day-1

Your own site · 80×15
<a href="https://agentmods.dev/skills/thesmokedev/taskchad-os/brownfield-day-1"><img src="https://agentmods.dev/badge/skills/thesmokedev/taskchad-os/brownfield-day-1.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,604 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00121 $0.02604
Opus 5 $0.00060 $0.01302
Sonnet 5 $0.00024 $0.00521
Haiku 4.5 $0.00012 $0.00260

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

Security

Grade A, and why

brownfield-day-1 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 11d 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.

.claude/skills/brownfield-day-1/SKILL.md · 244 lines

How it starts

The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Brownfield Day-1 — Derive AI Layer From Scratch

You are executing the Brownfield Day-1 flow on a codebase. Goal: take a codebase with no AI Layer (no CLAUDE.md, no .claude/) and derive a working AI Layer — global rules + a customized command suite — in a single agent invocation.

Template path: $1 (a folder containing reference CLAUDE.md + .claude/commands/ to copy and customize from). If $1 is empty, use the default YourProduct template at .claude/skills/brownfield-day-1/templates/YourProduct/.

What you will do

  1. Initial Scan — quick read of the codebase shape
  2. Plan the subagent slicing — decide how many Explorer subagents and what each investigates
  3. Dispatch Explorer subagents in parallel — N parallel sub-agents, one per slice
  4. Converge their reports into tmp/brownfield-day-1/codebase-analysis.md
  5. Dispatch 3 AI Layer Builders in parallel — derive CLAUDE.md + the command suite
  6. Report the final state

You orchestrate. The user does not dispatch subagents — you do.


Precondition Check

Before starting, check if CLAUDE.md already exists in the target repo:

  • If CLAUDE.md exists: STOP. Warn the user that this codebase already has an AI layer. Suggest updating the existing CLAUDE.md and commands directly, or running /vertical-slice-audit to score a specific feature.
  • If CLAUDE.md does not exist: proceed with the full Day-1 flow below.

Step 0 — Initial Scan (≤3 minutes)

  1. Read README.md if it exists. Capture: what is this product, tech stack at a glance.
  2. Walk the top-level folder structurels -la and tree -L 2 (exclude node_modules, dist, build, .git, __pycache__, .venv).
  3. Read root config files — whichever apply: package.json, pyproject.toml, Cargo.toml, go.mod, Gemfile, composer.json, tsconfig.json, etc.
  4. Glance at 1-2 high-traffic files — the server entry point, main router, or primary CLI entrypoint.

Output (internal — don't write to disk): a 5-bullet sketch of what the codebase is, its layout, and where the interesting parts live.

Read the full file on GitHub · 244 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. 11d ago First seen · 244 lines · 121 tokens per session scan A 278b8b40d743

Subscribe to this mod's changes

brownfield-day-1 is a skill published in the GitHub repository TheSmokeDev/taskchad-os (23 stars, last pushed today), licensed MIT. It adds 121 tokens to every session and 2,604 once invoked, about $0.0006 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.

Related

Other skills, from other repositories

graphify

Use when the user invokes /graphify or asks to build, update, or query a knowledge graph from a folder of files (code, docs, papers, notes, images). Triggers: 'map this codebase', 'graph my notes', 'what is connected across these files', 'community detection', 'GraphRAG', incremental graph update, Neo4j/SVG/GraphML…

mycelium-hq/ai-brain-starter · 111 tokens

insights

Use when the user types /weekly or /monthly, asks for a weekly or monthly journal review or retrospective, asks 'how was my week' or 'how was my month', or wants trends, anomalies, or patterns across recent journal entries. Also fires when regenerating an insight report for a past week or month. NOT for writing…

mycelium-hq/ai-brain-starter · 91 tokens

setup-brain

Set up or upgrade an AI-powered Obsidian vault. Interviews you, builds your vault structure (or works with what you already have), creates your CLAUDE.md memory file, installs tools, and gets you journaling — all in one conversation. Also has a repair/upgrade path for existing users.

mycelium-hq/ai-brain-starter · 66 tokens

second-brain-mapping

Use when the user wants to map or remap their second brain, refresh the vault's queryable metadata index, extract structured frontmatter from typed notes (books, meetings, people, journals, goals), fill wikilink gaps, or surface cross-type insights and patterns no single file shows. Triggers: /second-brain-mapping…

mycelium-hq/ai-brain-starter · 116 tokens

sunday-review

Use when the user asks for the weekly meta-review or Sunday wrap-up of their week and vault: says /sunday, /sunday-review, 'let's do the weekly review,' 'Sunday review,' 'review my week,' 'weekly retro,' 'week in review,' 'end-of-week review,' or wants journals, patterns, vault health, and stale decisions reviewed…

mycelium-hq/ai-brain-starter · 102 tokens

coach

Use when the user says /coach (today, week, month, profile, log), asks what to do today for training, asks for a workout, weekly training plan, or longevity plan, wants to log a finished workout or check lift progression (PR, plateau, deload), or a scheduled morning task fires to drop today's workout into the…

mycelium-hq/ai-brain-starter · 103 tokens