docs

A document-management guide for planning documents such as product requirements, reports, architecture notes, and roadmaps. It explains how to classify, place, version, update, and check these documents within a software repository.

In plain words
What is it for?
Use it when creating or moving planning documents, deciding which version they belong to, preparing a release, or checking whether published documentation is current.
Why use it?
It reduces confusion about where documents belong and whether they are meant for users or internal teams. It also points to automated checks for keeping documentation aligned with releases.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/adelie-squad/solosquad/docs
Any agent
npx skills add Adelie-Squad/solosquad --skill docs
Clone the repo
git clone --depth 1 https://github.com/Adelie-Squad/solosquad

Made for: Claude Code, Codex.

Per session 216 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,097 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00216 $0.03097
Opus 5 $0.00108 $0.01548
Sonnet 5 $0.00043 $0.00619
Haiku 4.5 $0.00022 $0.00310

Measured 2d ago against content hash 50e02ec5b704, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

skills/docs/SKILL.md · 165 lines

How it starts

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

Docs Manager Skill — v1.3.8 (문서 관리 단일 권위)

너는 기획 산출 문서의 대화형 큐레이션 매니저다. "이 문서 어디 둬?", "PRD 어느 버전으로?", "배포 전에 뭐 갱신해?", "리포트 어디에 쌓아?" 류 질문에 아래 체계로 답하고 배치·생성·갱신을 안내한다. 역할 분리: docs=어디에·어떤 버전으로·언제 최신화·외부냐 내부냐 (cross-doc 큐레이션) · prd=한 PRD 를 어떻게 쓰나 (per-PRD writer). 둘을 섞지 않는다.

작성 표준 (점진공개): 공통 표준은 skills/skill-core/primitive-core.md — 특히 §3.2(description 공식) · §3.3(정량 한도) · §5(rubric). 결정적 동작은 npm run docs-check 게이트로 위임하고, 파일 이동·삭제 등 파괴적 동작은 적용 전 항상 확인(검증 게이트 경유 — 직접 조작 금지).

스코프 = repository 단위 (load-bearing): docs·버전의 단위는 repo다. 각 repo 가 자기 package.json(version)·docs/·CHANGELOG·manual 을 갖고 독립적으로 x/y/z 를 올린다(또는 안 올린다). PM 은 각 repo 를 기준으로 문서를 사고. 한 워크플로우가 여러 repo 를 건드려도 release 하는 repo 만 버전·PRD 가 따른다(작업≠배포).


1. 문서 1차 축 = 외부(사용자 대면) vs 내부(기획·개발 전용)

경계는 package.json.files 가 강제(load-bearing). 내부 문서는 npm 패키지로 새지 않고, 외부 문서는 배포 게이트로 최신화된다. 분류가 헷갈리면 "이게 npm 으로 배포돼 사용자가 보나?" 로 가른다.

타입 위치 npm 청자
🌐 외부 readme README.md / README.kr.md ✅ 자동 잠재 사용자·기여자
changelog CHANGELOG.md ✅ files 사용자
manual † manual/master-guide_{ko,en}.html, manual/*.md ✅ files 제품 사용자
🔒 내부 prd docs/prd/v<N.N.N>_<name>.md 기획·개발(본인)
ideation docs/ideation/<name>_<YYMMDD>.md 기획(발산)
poc docs/poc/<name>.{mjs,md} 개발(실증)
policy docs/policy/<topic>.md 개발(불변 계약)
architecture docs/architecture.md 개발(구조 living)
roadmap docs/roadmap.md ✗* 기획(비전 living)

* roadmap 은 외부 공개 제품이면 package.json.files 옵트인(트리거는 사람이 결정). † manual 은 제품 특성 조건부 — 코드/문서를 사용자가 보는 제품(agent·OSS·CLI; SoloSquad 해당)만. 일반 웹/모바일 앱은 생략 가능(게이트도 부재 시 스킵). 불변식: package.json.filesdocs/ 가 들어가면 안 된다(내부 누출). docs-check 가 검사.

스코프 계층 (직교 축): 위 위치는 repo-relative. 타입은 두 계층 —

계층 타입 위치
repo prd · architecture · roadmap · poc · policy · README · CHANGELOG · manual <repo>/docs/·루트 (release-bound, 버전 결합)
org ideation · reports <org>/docs/ 워크스페이스 (cross-repo 발산·근거, class A 무관)

Read the full file on GitHub · 165 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. 2d ago First seen · 165 lines · 216 tokens per session scan A 50e02ec5b704

Subscribe to this mod's changes

docs is a skill published in the GitHub repository Adelie-Squad/solosquad (19 stars, last pushed 12d ago), licensed MIT. It adds 216 tokens to every session and 3,097 once invoked, about $0.0011 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

saas-launcher

Sıfırdan production-ready bir SaaS uygulaması kur. Ödeme, kimlik doğrulama, veritabanı, e-posta, landing page, SEO ve API güvenliği dahil tüm katmanları kapsar. Kullanıcı SaaS kurmak, web uygulaması başlatmak, AI aracı oluşturmak veya online ürün çıkarmak istediğinde bu skill'i kullan — "startup kur", "proje başlat"…

komunite/tezgah · 136 tokens

saas-payments

SaaS uygulaması için ödeme ve abonelik sistemi kur. Stripe veya Lemon Squeezy ile checkout, webhook, abonelik yönetimi, fiyatlandırma planları ve müşteri portalı yapılandır. Bu skill'i kullanıcı ödeme, abonelik, fiyatlandırma, Stripe, gelir, plan, subscription veya checkout ile ilgili bir şey istediğinde kullan. "Para…

komunite/tezgah · 103 tokens

saas-api-security

SaaS uygulaması için API güvenlik katmanı kur. Rate limiting, plan bazlı erişim kontrolü, input validation, hata yönetimi, CORS ve health check. Bu skill'i kullanıcı API güvenliği, rate limiting, yetkilendirme, input doğrulama, hata yönetimi veya API koruması ile ilgili bir şey istediğinde kullan. "API'yi koru", "rate…

komunite/tezgah · 108 tokens

saas-analytics

SaaS uygulaması için PostHog analytics ve ürün analizi kur. Event tracking, kullanıcı tanımlama, feature flag, session replay, funnel analizi ve gizlilik uyumlu yapılandırma. Bu skill'i kullanıcı analytics, PostHog, event tracking, kullanıcı davranışı, feature flag, A/B test, dönüşüm analizi veya metrik takibi ile…

komunite/tezgah · 119 tokens

saas-testing

SaaS uygulaması için test stratejisi kur. Vitest ile birim test, Playwright ile E2E test, API route testi, webhook mock, Stripe test modu ve CI entegrasyonu. Bu skill'i kullanıcı test, test yazma, E2E, birim test, Playwright, Vitest, coverage veya kalite güvencesi ile ilgili bir şey istediğinde kullan. "Test yaz"…

komunite/tezgah · 115 tokens

saas-deployment

SaaS uygulamasını production'a taşı. Vercel, Railway veya Fly.io ile deployment, domain yapılandırması, SSL, ortam değişkenleri, CI/CD, izleme ve operasyonel hazırlık. Bu skill'i kullanıcı deploy, yayınlama, production, hosting, domain, SSL, CI/CD, monitoring veya "siteyi canlıya al" ile ilgili bir şey istediğinde…

komunite/tezgah · 119 tokens