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.
npx agentmods add skills/cwinvestments/memstack/worknpx skills add cwinvestments/memstack --skill workgit clone --depth 1 https://github.com/cwinvestments/memstackWrote 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.
[](https://agentmods.dev/skills/cwinvestments/memstack/work)<a href="https://agentmods.dev/skills/cwinvestments/memstack/work"><img src="https://agentmods.dev/badge/skills/cwinvestments/memstack/work.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00035 | $0.01455 |
| Opus 5 | $0.00017 | $0.00727 |
| Sonnet 5 | $0.00007 | $0.00291 |
| Haiku 4.5 | $0.00003 | $0.00145 |
Grade A, and why
work scanned grade A with 1 finding 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 yesterday.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
[x] 5. Update guide with curl snippet How it starts
The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
📋 Work: Plan Execution Engaged
Track tasks, manage plans, and survive CC compacts with three operating modes.
Activation
When this skill activates, output:
📋 Work: Plan execution engaged.
Then determine which mode to use based on the trigger.
Context Guard
| Context | Status |
|---|---|
| User says "copy plan", "append plan", "resume plan" | ACTIVE: use matching mode |
| User says "what's next", "todo", "priorities" | ACTIVE: quick query mode |
| User provides a task list or plan | ACTIVE: copy mode |
| General discussion about planning concepts | DORMANT: do not activate |
| User is executing a task (not managing the list) | DORMANT: do not activate |
Step 0: Silent Context Compilation (MANDATORY)
Before executing ANY mode, silently gather current state. Do NOT present findings. Do NOT ask questions. Just internalize:
- Read the project's
STATE.md(if it exists): current task, blockers, next steps - Read the project's
CLAUDE.md(if it exists): conventions, architecture decisions - Check recent diary:
python "$MEMSTACK_PATH/db/memstack-db.py" get-sessions <project> --limit 3 - Check git state:
git log --oneline -5 git diff --stat
This is silent. Synthesize an internal understanding of where the project stands. Then proceed to the triggered mode with full context. The user already knows their project state, don't waste their time repeating it back.
Mode 1: Copy Plan
Trigger: "copy plan" or when a new plan is provided
-
Parse the entire plan into individual numbered tasks
-
For each task, save to SQLite:
Write the payload to a file, then pipe it in with
-as the argument. A payload on stdin is never seen by the shell's parser, so a redirection operator inside a task description cannot be read as one.cat task.json | python "$MEMSTACK_PATH/db/memstack-db.py" add-plan-task -task.jsoncontains:{"project":"<name>","task_number":<n>,"description":"<task>","status":"pending"} -
Confirm with task count
-
Also write a markdown copy to
memory/projects/{project}-plan.mdfor human readability
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.
- yesterday Changed 645e0b7ccac5
- yesterday First seen · 159 lines · 35 tokens per session scan A 9d27c030ac1d
work is a skill published in the GitHub repository cwinvestments/memstack (419 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 1,455 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
ccpm
CCPM - spec-driven project management: PRD → Epic → GitHub Issues → parallel agents → shipped code. Use this skill for anything in the software delivery lifecycle: writing a PRD ('write a PRD for X', 'let's plan X', 'scope this out'), parsing a PRD into an epic, decomposing an epic into tasks, syncing to GitHub ('sync…
issue-triage
Issue triage: audit open issues, categorize, detect duplicates, cross-ref PRs, risk assessment, post comments. Args: "all" for deep analysis of all, issue numbers to focus (e.g. "42 57"), "en"/"fr" for language, no arg = audit only in French.
plan-eng-review
Eng manager-mode plan review. Lock in the execution plan — architecture, data flow, diagrams, edge cases, test coverage, performance. Walks through issues interactively with opinionated recommendations. Use when asked to "review the architecture", "engineering review", or "lock in the plan". Proactively suggest when…
pre-landing-review
Pre-landing PR review. Analyzes diff against the base branch for SQL safety, LLM trust boundary violations, conditional side effects, and other structural issues. Use when explicitly asked for the specialized pre-landing workflow. Product /review requests are handled by BitFun's unified Review mechanism instead.…
miniapp-dev
Develops, maintains, and generates BitFun MiniApps (Zero-Dialect Runtime). Use when (1) working on miniapp framework code under src/crates/assembly/core/src/miniapp/ or src/web-ui/src/app/scenes/miniapps/; or (2) generating / creating / designing a NEW MiniApp for the user — including any request like "做一个小应用 / 生成…
commit-push-pr
Commit selected local changes, push the branch, and create or update a GitHub pull request with BitFun attribution. Use when the user asks to 提交 PR、提代码、commit and push、开 PR、create a pull request, or wants a Claude Code-like one-command PR publishing flow from BitFun.