skymanbp

66 mods across 6 repositories, 145 stars between them.

cc-tree

01

skymanbp/cc-tree

Plugin Claude Code

Plugin marketplace listing 1 plugin: cc-tree.

108 6d ago A tokens not measured original MIT

cc-tree

02

skymanbp/cc-tree

Plugin Claude Code

Universal radial-tree exploration engine for Claude Code. One tree skill + swappable presets (brainstorm / attack / design / code-audit) for divergent ideation, adversarial critique, and design-space exploration. 12 framings × hard-ban-on-incomplete-leaves × stable convergence. See CHANGELOG.md for per-version histor.

108 6d ago A tokens not measured original MIT

attack

03

skymanbp/cc-tree

Command

Adversarial radial-tree critique. Wraps /cc-tree:tree with the attack preset preselected — finds the strongest reviewer-style attacks against a finished artifact (document / argument / proposal). Every leaf resolves to CONFIRMED / MARGINAL / REFUTED with file:line evidence; hard-banned against NEEDS-MORE-INFO…

108 6d ago A 101 tokens original MIT

brainstorm

04

skymanbp/cc-tree

Command

Divergent radial-tree ideation. Wraps /cc-tree:tree with the brainstorm preset preselected — exhaustive exploration of research directions or problem-solving paths, hard-banned against future-work / TODO / NEEDS-MORE-INFO deferred leaves. 中文触发:发散头脑风暴、穷尽探索研究方向或解题路径。.

108 6d ago A 75 tokens original MIT

code-audit

05

skymanbp/cc-tree

Command

Adversarial code review tree. Wraps /cc-tree:tree with the code-audit preset preselected — finds security / performance / correctness / contract findings a static linter would miss. Every finding carries file:line evidence + threat-model context + proposedfix; hard-banned against NEEDS-MORE-INFO deferrals.…

108 6d ago A 98 tokens original MIT

design

06

skymanbp/cc-tree

Command

Design-space exploration tree. Wraps /cc-tree:tree with the design preset preselected — enumerates options × trade-offs × reversibility × cost × fit-with-constraints for an engineering / product / process decision. Produces a comparison table and a RECOMMENDED short-list. 中文触发:设计空间探索、方案对比与取舍、给出推荐短名单。.

108 6d ago A 79 tokens original MIT

tree-chain

07

skymanbp/cc-tree

Command

Cross-preset chaining — run several cc-tree presets in sequence, piping each stage's top-K primary deliverable into the next via --seed-from. The canonical pipeline is brainstorm → design → attack (diverge on directions, design the best into options, attack the winner before committing). Each stage converges…

108 6d ago A 101 tokens original MIT

tree

08

skymanbp/cc-tree

Skill Claude CodeCodex

Universal radial-tree exploration engine. Loads a preset, builds a §2 baseline, then recursively applies 12 framing passes per node until stable convergence (no new high-verdict branches over the last 2 rounds + all 12 framings exercised + all leaves complete). Width × depth × rounds default to ∞; resource caps are…

108 6d ago A 247 tokens original MIT

codeeraser

09

skymanbp/CodeEraser

Plugin Claude Code

Plugin marketplace listing 1 plugin: codeeraser.

20 yesterday A tokens not measured original Apache-2.0

codeeraser

10

skymanbp/CodeEraser

Plugin Claude Code

CodeEraser passive guard + erase skill: a winnowing clone index behind a per-project daemon intercepts T1/T2 duplicate writes at PreToolUse, audits net LOC + touched duplicates at Stop, and reports health at SessionStart; the erase skill walks findings to safe, re-gated deletions. Gradual modes observe/warn/ask/deny…

20 yesterday A tokens not measured original Apache-2.0

reports

11

skymanbp/CodeEraser

MCP server Claude CodeCodexCursor +2

MCP server "reports" as configured in skymanbp/CodeEraser. Launched with sh ${CLAUDE_PLUGIN_ROOT}/bin/ce.sh mcp ${CLAUDE_PROJECT_DIR}.

20 yesterday A tokens not measured original Apache-2.0

update

12

skymanbp/CodeEraser

Command

Check for a newer CodeEraser release and say how this install updates.

20 yesterday A 15 tokens original Apache-2.0

SessionStart

13

skymanbp/CodeEraser

Hook

Runs when a session starts, executing ce.sh via sh with --hook. From skymanbp/CodeEraser.

20 yesterday A tokens not measured original Apache-2.0

PreToolUse

14

skymanbp/CodeEraser

Hook

Runs before the agent uses a tool for Write and Edit tool calls, executing ce.sh via sh with --hook. From skymanbp/CodeEraser.

20 yesterday A tokens not measured original Apache-2.0

Stop

15

skymanbp/CodeEraser

Hook

Runs when the agent finishes a response, executing ce.sh via sh with --hook. From skymanbp/CodeEraser.

20 yesterday A tokens not measured original Apache-2.0

erase

16

skymanbp/CodeEraser

Skill Claude CodeCodex

Guided cleanup of CodeEraser findings — read the reports, verify every candidate against the actual code, delete safely, and prove convergence with ce check. Invoke when the user asks to clean up duplication, dead code, or act on CodeEraser findings.

20 yesterday A 56 tokens original Apache-2.0

cc-memory

17

skymanbp/cc-memory

Plugin Claude Code

Plugin marketplace listing 1 plugin: cc-memory.

6 yesterday A tokens not measured original MIT

cc-memory

18

skymanbp/cc-memory

Plugin Claude Code

Persistent memory for Claude Code — automatic save/restore across compactions and sessions. Anti-patch reconcile-on-write + LLM-judged semantic de-duplication, forced PROGRESS.md handoff with per-session annotation, live PLAN.md anchor, injection observability, FTS5 search, AI-judged extraction with Haiku + local…

6 yesterday A tokens not measured original MIT

cc-memory CLAUDE.md

19

skymanbp/cc-memory

Instructions file

Instructions for skymanbp/cc-memory, covering claude.md — project instructions for claude code, project: cc-memory, what changed in v2.13.2 (over v2.13.1), what changed in v2.13.1 (over v2.13.0) and what changed in v2.13.0 (over v2.12.2).

6 yesterday D 28,206 tokens original MIT

plan-guardian

20

skymanbp/cc-memory

Agent

Drift check for the active cc-memory plan. Read .ccm/PLAN.md + .ccm/PROGRESS.md, compare against recent activity, and report whether the live work is still aligned with the plan. Read-only — do not edit files or write to the DB.

6 yesterday A 61 tokens original MIT

plan-refiner

21

skymanbp/cc-memory

Agent

Normalise a raw plan (markdown or freeform text from ExitPlanMode or a user) into the canonical cc-memory JSON schema. Use this exactly once per new plan; do not invoke for re-syncing TodoWrite (that's mechanical) or for drift checks (use plan-guardian instead).

6 yesterday A 63 tokens original MIT

cc-mem

22

skymanbp/cc-memory

Command

Query and manage cc-memory state for the current project. Subcommands run the installed plugin's CLI (ccmemory/cli/mem.py on a marketplace/dev checkout, cli/mem.py on a flat standalone install — the resolver below probes both).

6 yesterday A 49 tokens original MIT

PreCompact

23

skymanbp/cc-memory

Hook

Runs before the context is compacted, executing pre_compact.py and consolidate_async.py via python3 (2 commands). From skymanbp/cc-memory.

6 yesterday A tokens not measured original MIT

SessionStart

24

skymanbp/cc-memory

Hook

Runs when a session starts, executing session_start.py via python3. From skymanbp/cc-memory.

6 yesterday A tokens not measured original MIT