project_management

project_management is a skill for Claude Code, Codex from cafe3310/public-agent-skills. It costs 11 tokens per session (2,480 once invoked), scanned A, original, Apache-2.0.

A general project-management workflow for organizing requirements, tasks, documentation, source code, and development projects. It recommends a monorepo structure, meaning one repository containing multiple related projects or shared resources.

In plain words
What is it for?
Use it to organize repository folders, maintain project charters and task lists, manage requirements and specifications, and coordinate development work.
Why use it?
It helps keep project work in predictable locations and gives agents a consistent way to manage tasks, requirements, documentation, testing, and deployment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md; mentions Gemini CLI.

Good fit Use it to organize repository folders, maintain project charters and task lists, manage requirements and specifications, and coordinate development work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cafe3310/public-agent-skills/project-management
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.

Any agent
npx skills add cafe3310/public-agent-skills --skill project-management
Clone the repo
git clone --depth 1 https://github.com/cafe3310/public-agent-skills

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_management

README.md
[![agentmods](https://agentmods.dev/badge/skills/cafe3310/public-agent-skills/project-management/github.svg)](https://agentmods.dev/skills/cafe3310/public-agent-skills/project-management)
Your own site
<a href="https://agentmods.dev/skills/cafe3310/public-agent-skills/project-management"><img src="https://agentmods.dev/badge/skills/cafe3310/public-agent-skills/project-management/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for project_management

Your own site · 80×15
<a href="https://agentmods.dev/skills/cafe3310/public-agent-skills/project-management"><img src="https://agentmods.dev/badge/skills/cafe3310/public-agent-skills/project-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,480 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00011 $0.02480
Opus 5 $0.00005 $0.01240
Sonnet 5 $0.00002 $0.00496
Haiku 4.5 $0.00001 $0.00248

Measured 13d ago against content hash 6c508d6ecdc0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

project_management 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 13d 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_archived/project-management/SKILL.md · 174 lines

How it starts

The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill - 项目管理

本技能提供了一套通用的项目管理规范和工作流程,旨在确保项目高效、规范地进行,涵盖从项目初始化、需求管理、开发、测试到部署的全过程。

关键词: project management, 任务, 需求, 文档, TODO, backlog, workshops

1.1. 何时使用本技能

如果项目章程(AGENTS.md)或用户指令中要求,则应随时使用本 Skill。具体情形包括但不限于:

  • 当用户在项目中进行需求、任务或缺陷管理时;
  • 当需要进行代码开发、测试、分支管理和部署操作时;
  • 当用户要求整理项目结构或创建新文档时; 等等。

1.2. 如何覆盖本 Skill 的缺省描述

本 Skill 的描述可以根据具体项目需求进行调整和覆盖:

  • 如果在项目章程(AGENTS.md)中提及如 覆盖 project_management 的 ... 部分,则应在对应部分,优先采用项目特定的描述和规范。
  • 若用户要求覆盖本 Skill 的描述,请确认用户意图,并按 覆盖 project_management 的 ... 部分 的明确描述写入项目章程。

2. 目录结构与特殊目录使用方式

为了确保项目的一致性和可维护性,推荐在仓库中采用以下标准化的 Monorepo 目录结构。

2.1. 目录结构

/                              # 仓库根目录
├── .git/
├── workshops/                   # 所有仓库包含的开发项目所在地
│   └── <project-name>/            # 单个项目目录
│       ├── AGENTS.md              # 单个项目的章程
│       ├── TODO.md                # 单个项目特定的任务列表
│       ├── docs/                  # 单个项目特定的文档
│       │   ├── requirements/        # 单个项目的需求文档列表
│       │   └── specs/               # 单个项目的整体设计文档
│       └── src/                   # 项目源代码
├── skills/                      # 仓库特定 Skill
│   └── ...
├── local-inbox/                 # 「收件箱」目录,用于用户提供文件
├── AGENTS.md                    # 仓库的章程
├── GEMINI.md                    # AGENTS.md 的符号链接(别名)
├── README.md                    # AGENTS.md 的符号链接(别名)
├── TODO.md                      # 全局的、跨项目的任务列表
├── .gitignore
└── ...

部分仓库可能只包含一个项目。此时目录结构可能简化,由 AGENTS.md 确定。

2.2. 「收件箱」使用方法

如果用户需要传递非文本文件、图片、多个文件给助手,用户会将文件放置在一个约定的「收件箱」目录(默认 local-inbox/)。

助手需要定期检查此目录是否有新文件,根据文件内容和用户指令和文档对文件进行重命名,并移动到合适的归档位置(例如 docs/specs/docs/requirements/)。

3. 需求与任务管理

3.1. 文档管理

在创建任何需求、设计或其他类型的文档时,必须遵循以下规范:

  1. 确定位置: 根据本 Skill 和项目章程文件确定目标文档位置;
  2. 获取时间戳: 必须先运行 date +'%Y-%m-%d-%H-%M' 命令获取当前时间;
  3. 命名文件: 文件名必须是 YYYY-MM-DD-HH-mm-{文档名称}.md 的格式,方便按时间排序和检索;
  4. 更新 TODO: 在创建文档后,应在相应的 TODO.md 任务中添加对该文档的引用链接。

在可能时,文档应链接到其「下属」文档,以形成清晰的文档层级结构。例如,主规格文档应链接到各个功能规格文档,需求文档应链接到相关的设计文档,TODO 项目应链接到对应的需求或缺陷文档。

你可以从其他 Skill 获取文档模板,以确保一致性和质量。

Read the full file on GitHub · 174 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. 13d ago First seen · 174 lines · 11 tokens per session scan A 6c508d6ecdc0

Subscribe to this mod's changes

project_management is a skill published in the GitHub repository cafe3310/public-agent-skills (253 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 11 tokens to every session and 2,480 once invoked, about $0.0001 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

firstsun-project-init

Bootstraps a firstsun-dev project end-to-end: selects relevant skills, scaffolds the agent harness, creates or reconciles the GitHub repository, applies repository metadata and README standards, and classifies the project under Firstsun Dev governance. New projects default to Workshop and are not automatically…

firstsun-dev/skills · 76 tokens

firstsun-pm

Expert project management for the Firstsun-Dev organization. This skill standardizes issue creation across multiple repositories, ensures all tasks are correctly linked to the central Project Board (#6), and enforces naming conventions. Trigger this whenever the user says "add a task", "create a ticket", "new job"…

firstsun-dev/skills · 80 tokens

monorepo-management

Master monorepo management. Use this to set up or optimize multi-package repositories using Turborepo, pnpm workspaces, or Nx.

firstsun-dev/skills · 35 tokens

gh-cli

GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.

firstsun-dev/skills · 45 tokens

retro

Facilitate a structured sprint retrospective — what went well, what didn't, and prioritized action items with owners and deadlines. Use when running a retrospective, reflecting on a sprint, creating action items from team feedback, or learning how to run effective retros.

phuryn/pm-skills · 52 tokens

spec-kitty-mission-system

Understand how Spec Kitty missions work: the 4 built-in mission types, how they define workflows via step contracts and action indices, how missions and work packages relate, how templates are resolved through the 6-tier chain, and how doctrine artifacts (procedures, tactics, directives) compose mission behavior.…

Priivacy-ai/spec-kitty · 160 tokens