agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Use when you want to understand what Claude contributed vs what you drove in a session. Triggers on: /collab-proof, session retrospective, ai contribution analysis, collaboration evidence, what did claude do.
$ npx -y skills add alirezarezvani/claude-skills --skill collab-proof --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/collab-proofContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when you want to understand what Claude contributed vs what you drove in a session. Triggers on: /collab-proof, session retrospective, ai contribution analysis, collaboration evidence, what did claude do.
name: "collab-proof" description: "Use when you want to understand what Claude contributed vs what you drove in a session. Triggers on: /collab-proof, session retrospective, ai contribution analysis, collaboration evidence, what did claude do." license: MIT
Surfaces AI collaboration evidence the developer didn't consciously record. Vela 3-layer pipeline × ADHD 4-frame reasoning — prompt-native, zero dependencies.
---
Run `git log --oneline -10` and `git diff --stat HEAD~3..HEAD` first.
Classify signal level using this rubric (pick the highest that matches):
**HIGH** → full artifacts (DECISIONS.md + session-history + WORKLOG + HTML)
(not just "fixed X" but "the bug was caused by Y because Z")
**BUG_FIXING special rule** — override file count: Even if only 1 file changed, classify as HIGH if the conversation contains:
File count doesn't matter for bugs — a well-diagnosed single-file fix is more valuable than a 10-file feature with no discussion.
**MEDIUM** → WORKLOG only
**LOW** → silence, tell user "Routine session — nothing recorded."
Show the user: `Signal: HIGH / MEDIUM / LOW — [one-line reason]`
---
Run all four frames simultaneously against conversation context + git diff. Score each frame 0.0–1.0 using the rubric below. Then apply pruning and classification rules.
**Frame A — Technical** (code churn complexity)
**Frame B — Uncertainty** (developer doubt signals)
**Frame C — Fork** (decision branch presence)
**Frame D — AI contribution** (Claude's actual impact)
---
Prune any frame scoring < 0.4.
**Exception — High-Speed Execution Guard:** If `Frame A >= 0.8` AND `Frame D >= 0.6`, do NOT prune and do NOT silence the session, even if Frame B = 0.0 and Frame C = 0.0. This is a boilerplate-heavy FEATURE_BUILDING session. Classify immediately as `FEATURE_BUILDING` with `HIGH` signal. Rationale: zero uncertainty in a fast-moving session is a feature, not a reason to discard it.
---
| Surviving frames | Dominant intent | Meaning | |---|---|---| | A high + D mid-high (B, C low) | `FEATURE_BUILDING` | High-velocity feature generation, Claude scaffolding | | B high + A/D high | `BUG_FIXING` or `STUCK` | Active debugging or unresolved looping | | C high + A high | `REFACTORING` or `EXPLORING` | Architecture exploration, weighing alternatives | | All frames < 0.4 | `FLOW_STATE` or LOW | Routine typing, silence unless Layer 01 was HIGH |
If multiple intents tie, pick the one with the highest combined frame score. Record the runner-up — it belongs in the session narrative.
---
Before proceeding to Layer 03, resolve to this structure (show it to the user):
{
"frames": {
"technical": 0.0,
"uncertainty": 0.0,
"fork": 0.0,
"ai_contribution": 0.0
},
"pruned": ["list of pruned frame names"],
"intent": "FEATURE_BUILDING",
"signal": "HIGH",
"calibration_note": "one sentence explaining any exception rule applied"
}---
**Append to `DECISIONS.md`** — one entry per real fork (Frame C must confirm alternatives existed):
## [YYYY-MM-DD] <title> **Context**: [Frame A — what forced this choice] **Decision**: what was chosen **Alternatives considered**: [Frame C — road not taken] **Reasoning**: why — prefix "inferred:" if reconstructed from context **AI contribution**: - Identified: [Frame D — something developer missed] - Suggested: [Frame D — approach or alternative] - Developer-driven: [what the developer decided independently] **Intent class**: [from Layer 02] **Signal score**: HIGH **Outcome**: implemented | pending | reversed
If no real fork existed → write nothing. Never fabricate decisions.
**BUG_FIXING intent: use this format instead:**
## [YYYY-MM-DD] <bug title> **Root cause**: what actually caused the bug — the WHY, not just the what **Symptom**: what the developer observed **Fix**: what was changed **Why this fix**: rationale — inferred if not stated explicitly **Alternative fixes considered**: other approaches discussed (if any) **AI
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…