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/opencoven/coven/project-managernpx skills add OpenCoven/coven --skill project-managergit clone --depth 1 https://github.com/OpenCoven/covenWrote 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/opencoven/coven/project-manager)<a href="https://agentmods.dev/skills/opencoven/coven/project-manager"><img src="https://agentmods.dev/badge/skills/opencoven/coven/project-manager.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.00098 | $0.00729 |
| Opus 5 | $0.00049 | $0.00365 |
| Sonnet 5 | $0.00020 | $0.00146 |
| Haiku 4.5 | $0.00010 | $0.00073 |
Grade A, and why
project-manager 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Project Manager
Manage project-scoped context in projects/ within the workspace.
File Structure
projects/
├── _bookmarks.json ← global bookmarks store
├── <project-slug>/
│ ├── CONTEXT.md ← project overview, status, key info
│ └── notes/
│ └── YYYY-MM-DD.md ← dated notes (append-style)
Bookmarks
Stored in projects/_bookmarks.json as an array:
[
{
"id": "b1",
"url": "https://example.com",
"title": "Example Site",
"description": "Optional description",
"projects": ["project-slug"],
"added": "2026-02-08"
}
]
- Bookmarks exist independently and can be tied to zero or more projects
- Use short incremental IDs: b1, b2, b3...
- When adding, auto-fetch the page title if not provided
Actions
Create project
- Slugify the name (lowercase, hyphens)
- Create
projects/<slug>/CONTEXT.mdwith project name, description, and any initial info - Create
projects/<slug>/notes/directory
Add note to project
- Append to
projects/<slug>/notes/YYYY-MM-DD.md(today's date) - Use
## HH:MMheaders for multiple entries per day - If the note contains a decision, prefix with Decision:
Add bookmark
- Read
projects/_bookmarks.json - Generate next ID (b1, b2, ...)
- Append new bookmark with optional project tags
- Write back
Link bookmark to project
- Find bookmark by URL or ID
- Add project slug to its
projectsarray
Switch context / Chat about project
- Read
projects/<slug>/CONTEXT.md - Read recent notes:
projects/<slug>/notes/(last 3 files) - Read bookmarks tagged to this project from
_bookmarks.json - Use this context to inform conversation
List projects
- List directories in
projects/(excluding files starting with_) - Show name + first line of CONTEXT.md for each
Search across projects
- Use
grep -riacrossprojects/for text search - Report which project(s) and file(s) matched
List bookmarks
- Read
_bookmarks.json - Optionally filter by project tag
- Display as a clean list with titles and URLs
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.
- 4d ago First seen · 91 lines · 98 tokens per session scan A 4a2b8c49c01f
project-manager is a skill published in the GitHub repository OpenCoven/coven (46 stars, last pushed today), licensed MIT. It adds 98 tokens to every session and 729 once invoked, about $0.0005 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.
Other skills, from other repositories
swarm-init
Start a new project connected to the SwarmVault — register it, wire platform adapters, offer git init, set vault-as-default. Use when starting a new project, connecting a project to the vault, or when the user asks to set up SwarmVault in a directory.
swarm-migrate
Bring existing projects into the SwarmVault — register, mirror docs, optionally mine the repo into SDLC artifacts and resume the flow mid-phase (brownfield adoption). Use when the user wants existing projects migrated/connected to the vault, or an existing codebase placed into the SDLC flow.
swarm-eject
Disconnect a project from SwarmVault and choose what happens to its knowledge — keep it, export it into the repo, or delete it. Use when the user wants to stop using SwarmVault here, remove the vault wiring, uninstall the framework from a project, offboard or archive a project, or delete a project's vault data.
knowledge-curation
Context priming before work (bd prime) and self-reflection after completion to extract patterns, gotchas, and decisions into the knowledge base.
mindforge-thread
Manage persistent context threads for cross-session work.
gh-file-issue
Use when filing a new Codewhale GitHub issue: turn a bug or idea into a well-formed, actionable issue with repro, acceptance criteria, labels, and milestone.