project-manager

project-manager is a skill for Claude Code, Codex from OpenCoven/coven. It costs 98 tokens per session (729 once invoked), scanned A, original, MIT.

A workspace skill for keeping project knowledge in files. It stores project overviews, dated notes, decisions, and web bookmarks, with bookmarks optionally linked to one or more projects.

In plain words
What is it for?
Creating projects, switching the active project, adding or searching notes and decisions, and adding, listing, tagging, or searching bookmarks across projects.
Why use it?
It keeps important context outside a chat, making past decisions, research links, and project status easier to find and reuse.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/opencoven/coven/project-manager
Any agent
npx skills add OpenCoven/coven --skill project-manager
Clone the repo
git clone --depth 1 https://github.com/OpenCoven/coven

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for project-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/opencoven/coven/project-manager.svg)](https://agentmods.dev/skills/opencoven/coven/project-manager)
Your own site
<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>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 729 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 4a2b8c49c01f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

skills/project-manager/SKILL.md · 91 lines

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

  1. Slugify the name (lowercase, hyphens)
  2. Create projects/<slug>/CONTEXT.md with project name, description, and any initial info
  3. Create projects/<slug>/notes/ directory

Add note to project

  1. Append to projects/<slug>/notes/YYYY-MM-DD.md (today's date)
  2. Use ## HH:MM headers for multiple entries per day
  3. If the note contains a decision, prefix with Decision:

Add bookmark

  1. Read projects/_bookmarks.json
  2. Generate next ID (b1, b2, ...)
  3. Append new bookmark with optional project tags
  4. Write back

Link bookmark to project

  1. Find bookmark by URL or ID
  2. Add project slug to its projects array

Switch context / Chat about project

  1. Read projects/<slug>/CONTEXT.md
  2. Read recent notes: projects/<slug>/notes/ (last 3 files)
  3. Read bookmarks tagged to this project from _bookmarks.json
  4. Use this context to inform conversation

List projects

  1. List directories in projects/ (excluding files starting with _)
  2. Show name + first line of CONTEXT.md for each

Search across projects

  1. Use grep -ri across projects/ for text search
  2. Report which project(s) and file(s) matched

List bookmarks

  1. Read _bookmarks.json
  2. Optionally filter by project tag
  3. Display as a clean list with titles and URLs

Read the full file on GitHub · 91 lines

Changes

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.

  1. 4d ago First seen · 91 lines · 98 tokens per session scan A 4a2b8c49c01f

Subscribe to this mod's changes

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.

Related

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.

AnmarHani/SwarmVault · 60 tokens

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.

AnmarHani/SwarmVault · 64 tokens

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.

AnmarHani/SwarmVault · 72 tokens

knowledge-curation

Context priming before work (bd prime) and self-reflection after completion to extract patterns, gotchas, and decisions into the knowledge base.

a5c-ai/babysitter · 33 tokens

mindforge-thread

Manage persistent context threads for cross-session work.

sairam0424/MindForge · 12 tokens

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.

Hmbown/CodeWhale · 41 tokens