wbs

wbs is a skill for Claude Code, Codex from Adelie-Squad/solosquad. It costs 52 tokens per session (913 once invoked), scanned A, original, MIT.

A work-breakdown tool that turns quarterly goals or milestones into workstreams and daily tasks. WBS means Work Breakdown Structure: a way to split large work into smaller pieces and show their dependencies.

In plain words
What is it for?
Use it to plan projects, break goals into actionable work, map dependencies, and identify the critical path.
Why use it?
It clarifies what needs to be done, in what order, and which tasks control the schedule.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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/wbs
Any agent
npx skills add Adelie-Squad/solosquad --skill wbs
Clone the repo
git clone --depth 1 https://github.com/Adelie-Squad/solosquad

Made for: Claude Code, Codex.

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 wbs

README.md
[![agentmods](https://agentmods.dev/badge/skills/adelie-squad/solosquad/wbs.svg)](https://agentmods.dev/skills/adelie-squad/solosquad/wbs)
Your own site
<a href="https://agentmods.dev/skills/adelie-squad/solosquad/wbs"><img src="https://agentmods.dev/badge/skills/adelie-squad/solosquad/wbs.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 913 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.1 $0.00052 $0.00913
Opus 5 $0.00026 $0.00456
Sonnet 5 $0.00010 $0.00183
Haiku 4.5 $0.00005 $0.00091

Measured 6d ago against content hash 3e93e480d3df, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

wbs 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 6d 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/wbs/SKILL.md · 116 lines

How it starts

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

WBS Decomposition Skill

PM 의 마일스톤/WBS 의사결정 영역 (Chief OKR 결정과 분리).

입력

  • team OKR (특히 KR)
  • prd §6 Solution (recommended approach)
  • hypothesis-design recommended hypothesis

분해 3단계

Level 1: Milestone (분기 ~ 월)
  Level 2: Workstream (주)
    Level 3: Task (일)

형식

milestones:
  - id: m1
    title: "lazy-create 패턴 도입"
    target_date: "2026-06-14"   # YYYY-MM-DD
    okr_kr_ref: "Q2-KR2"
    exit_criteria:
      - "discord-adapter 가 config 없을 때 자동 생성"
      - "qa test 통과"
    workstreams:
      - id: m1.w1
        title: "discord-adapter lazy-create"
        owner_specialist: "backend"
        target_date: "2026-06-07"
        tasks:
          - { id: "m1.w1.t1", title: "loadOrEmpty + mkdir 헬퍼", estimate: "2h", depends_on: [] }
          - { id: "m1.w1.t2", title: "config.yaml schema validation", estimate: "1h", depends_on: ["m1.w1.t1"] }
          - { id: "m1.w1.t3", title: "test 작성", estimate: "1h", depends_on: ["m1.w1.t1"] }
      - id: m1.w2
        title: "add-repo CLI seed"
        owner_specialist: "frontend"
        ...

dependency_graph:
  # 의존성 시각화 (graphviz dot 또는 mermaid)
  - "m1.w1 → m1.w2"
  - "m1.w2 → m2"

critical_path:
  - "m1.w1.t1 → m1.w1.t2 → m1.w1.t3 → m1.w2 → m2"
  total_estimate: "4 weeks"

HARD GATE: WBS 완료 조건

  • 모든 milestone 에 target_date + exit_criteria 명시
  • 모든 task 에 estimate + owner_specialist 명시
  • dependency_graph cycle 없음
  • critical_path 식별
  • team OKR 의 KR 과 milestone 의 1:N 매핑 확인

입력 → 출력 흐름

PM 호출 wbs({
  okr: <team OKR>,
  solution: <prd §6.recommended>,
  hypothesis: <hypothesis-design.recommended>
})

→ {
  milestones: [...],
  dependency_graph: [...],
  critical_path: [...],
  total_estimate: "...",
  open_questions: [
    // capacity 미확인 (e.g. backend 가용 시간)
    // priority tie-break 필요
  ]
}

Anti-Sycophancy

  • ❌ "약 4주 정도 걸릴 것 같습니다"
  • ✅ "Critical path 추정 4주. backend task throughput 가정 5h/day. 가정 깨지면 6주."

Reference

  • IEEE 1490 (PMBOK) WBS 원칙
  • phuryn/pm-skills/pm-execution/outcome-roadmap
  • v1.1 PRD §6.4 (PM 마일스톤/WBS 권한)

Read the full file on GitHub · 116 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. 6d ago First seen · 116 lines · 52 tokens per session scan A 3e93e480d3df

Subscribe to this mod's changes

wbs is a skill published in the GitHub repository Adelie-Squad/solosquad (19 stars, last pushed 16d ago), licensed MIT. It adds 52 tokens to every session and 913 once invoked, about $0.0003 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

linear-fetch

This skill should be used when a user input contains a Linear issue reference (e.g., SOL-39 or linear.app/.../issue/ ) and the downstream agent needs the screenshots embedded in the issue as visual context.

jikig-ai/soleur · 48 tokens

drain-labeled-backlog

This skill should be used when draining a labeled issue backlog (deferred-scope-out, code-review, type/security) in one cleanup PR. Groups by code area and delegates to /soleur:one-shot.

jikig-ai/soleur · 50 tokens

file-todos

This skill should be used when managing the file-based todo tracking system in the todos/ directory. It provides workflows for creating todos, managing status and dependencies, conducting triage, and integrating with code review.

jikig-ai/soleur · 45 tokens

cpo

Orchestrates the product domain -- assesses product strategy, validates business models, and delegates to specialist agents (spec-flow-analyzer, ux-design-lead, business-validator, competitive-intelligence). Use individual product agents for focused tasks; use this agent for cross-cutting product strategy and…

jikig-ai/soleur · 63 tokens

campaign-calendar

This skill should be used when generating or refreshing the rolling campaign calendar. Scans knowledge-base/marketing/distribution-content/ markdown frontmatter, groups by status (overdue/upcoming/draft/published), writes a calendar view.

jikig-ai/soleur · 49 tokens

cco

Orchestrates the support domain -- assesses support posture, recommends actions, and delegates to support specialist agents. Use individual support agents for focused tasks; use this agent for cross-cutting support strategy and multi-agent coordination.

jikig-ai/soleur · 45 tokens