existential-birds

78 mods across 2 repositories, 100 stars between them.

artifact-analysis

25

existential-birds/beagle

Skill Claude CodeCodex

Use when the user wants a cited, structured read of local documents and project knowledge. Triggers on: "analyze these docs", "scan my project for context", "read the docs folder", "summarize what's in .beagle/concepts/", "extract context from docs/", "what's in this folder", "go read everything in X and tell me…

79 22d ago A 192 tokens original Apache-2.0

brainstorm-beagle

26

existential-birds/beagle

Skill Claude CodeCodex

Use when the user has a fuzzy idea and wants to shape it into a concrete project spec before planning or building. Triggers on: "brainstorm this", "I have an idea for...", "help me think through this project", "what should I build", "spec this out". Also catches vague feature descriptions needing structured…

79 22d ago A 106 tokens original Apache-2.0

llm-judge

27

existential-birds/beagle

Skill Claude CodeCodex

Use when comparing two or more code implementations against a spec or requirements doc. Triggers on "which repo is better", "compare these implementations", "evaluate both solutions", "rank these codebases", or "judge which approach wins". Also covers choosing between competing PRs or vendor submissions solving the…

79 22d ago A 104 tokens original Apache-2.0

prfaq-beagle

28

existential-birds/beagle

Skill Claude CodeCodex

Use when the user wants to pressure-test a product, internal-tool, or OSS concept against Amazon's Working Backwards PRFAQ gauntlet before committing to a spec. Triggers on: "work backwards", "write a PRFAQ", "press release first", "is this idea worth building", "pressure-test this concept", "filter this before…

79 22d ago A 167 tokens original Apache-2.0

quick-plan

29

existential-birds/beagle

Skill Claude CodeCodex

Use when you need a bite-sized, TDD-driven implementation plan but do NOT have a brainstorm-beagle spec to plan against. quick-plan reconstructs intent from the current conversation, fans out domain-expert exploration subagents across the codebase, and synthesizes the same plan format write-plan produces — without…

79 22d ago A 230 tokens original Apache-2.0

resolve-beagle

30

existential-birds/beagle

Skill Claude CodeCodex

Use as the follow-up to brainstorm-beagle when a spec has an Open Questions section (or quietly carries latent gaps) that need closing before planning or implementation can begin. Triggers on: "resolve the open questions", "close the gaps in this spec", "research the open items", "finalize my spec", "make this spec…

79 22d ago A 170 tokens original Apache-2.0

strategy-interview

31

existential-birds/beagle

Skill Claude CodeCodex

Use when the user wants to build or think through a strategy via guided conversation — for a company, product, team, career, or initiative. Triggers on "help me figure out our direction", "what should we focus on", strategic planning, competitive positioning, go-to-market strategy. Also catches indirect requests like…

79 22d ago B 99 tokens original Apache-2.0

strategy-review

32

existential-birds/beagle

Skill Claude CodeCodex

Use when reviewing, critiquing, or stress-testing an existing strategy document. Evaluates seven dimensions — diagnosis quality, guiding policy strength, action coherence, assumption exposure, falsifiability — with optional 7S, Five Forces, Balanced Scorecard, and Hoshin Kanri lenses. Triggers on: review my strategy…

79 22d ago A 107 tokens original Apache-2.0

web-research

33

existential-birds/beagle

Skill Claude CodeCodex

Use when the user wants web research: gathering cited, multi-angle evidence on a specific question. Triggers on: "research X for me", "do web research on", "look up sources for", "find citations for", "gather evidence on", "what does the web say about X". Also invoked programmatically by other beagle skills…

79 22d ago A 165 tokens original Apache-2.0

write-adr

34

existential-birds/beagle

Skill Claude CodeCodex

Use when you want to generate Architecture Decision Records from this session. Triggers on "write ADRs", "document our decisions", "create decision records", "record the choices we made". Also useful after design discussions where decisions were reached but not documented. Does NOT extract decisions alone (use…

79 22d ago A 98 tokens original Apache-2.0

write-plan

35

existential-birds/beagle

Skill Claude CodeCodex

Use when you have a finalized brainstorm-beagle spec at .beagle/concepts/ /spec.md and need a bite-sized, TDD-driven implementation plan before any code is written. Triggers on: "write a plan", "plan this spec", "turn the spec into a plan", "now plan the implementation", "write-plan". Reads the spec, designs the file…

79 22d ago A 170 tokens original Apache-2.0

beagle-core

36

existential-birds/beagle

Plugin Claude Code

Shared code review workflows, verification protocol, git commands, and feedback handling. Recommended as a base for all beagle plugins.

79 22d ago A tokens not measured original Apache-2.0

commit-push

37

existential-birds/beagle

Skill Claude CodeCodex

Commit all local changes following Conventional Commits format and push to remote.

79 22d ago A 13 tokens original Apache-2.0

create-pr

38

existential-birds/beagle

Skill Claude CodeCodex

create a pull request with standardized description template.

79 22d ago A 11 tokens original Apache-2.0

fetch-pr-feedback

39

existential-birds/beagle

Skill Claude CodeCodex

Fetch unresolved review comments from a PR and evaluate with receive-feedback skill.

79 22d ago A 17 tokens original Apache-2.0

fix-llm-artifacts

40

existential-birds/beagle

Skill Claude CodeCodex

Applies fixes from a prior review-llm-artifacts run, with safe/risky classification. Respects verify-llm-artifacts output when present to skip false positives.

79 22d ago A 43 tokens original Apache-2.0

existential-birds/beagle

Skill Claude CodeCodex

Detects common LLM coding agent artifacts in codebases. Identifies test quality issues, dead code, over-abstraction, and verbose LLM style patterns. Use when cleaning up AI-generated code or reviewing for agent-introduced cruft.

79 22d ago A 56 tokens original Apache-2.0

prompt-improver

43

existential-birds/beagle

Skill Claude CodeCodex

Optimize prompts for code-related tasks following prompt-engineering best practices. Use when refining prompts for implementation, debugging, refactoring, code review, or testing.

79 22d ago A 36 tokens original Apache-2.0

receive-feedback

44

existential-birds/beagle

Skill Claude CodeCodex

Process external code review feedback with technical rigor. Use when receiving feedback from another LLM, human reviewer, or CI tool. Verifies claims before implementing, tracks disposition.

79 22d ago A 37 tokens original Apache-2.0

existential-birds/beagle

Skill Claude CodeCodex

Schema for tracking code review outcomes to enable feedback-driven skill improvement. Use when logging review results or analyzing review quality.

79 22d ago A 27 tokens original Apache-2.0

existential-birds/beagle

Skill Claude CodeCodex

Detects common LLM coding agent artifacts across four categories (tests, dead code, abstraction, style) over the project or changed files — using parallel subagents when the agent supports them, otherwise four sequential passes. Scans files changed since main by default; use --all for full-project scan. Triggers on…

79 22d ago A 101 tokens original Apache-2.0

review-plan

48

existential-birds/beagle

Skill Claude CodeCodex

Review implementation plans for parallelization, TDD, types, libraries, and security before execution.

79 22d ago A 21 tokens original Apache-2.0