project-docs-management

project-docs-management is a skill for Claude Code, Codex from nongjun/feishu-cursor-claw. It costs 80 tokens per session (1,172 once invoked), scanned A, original, MIT.

A setup guide for creating a structured project knowledge base with AGENTS.md, an architecture document, and organized Markdown folders.

In plain words
What is it for?
Use it when starting a project knowledge base, initializing documentation, or creating a documentation structure.
Why use it?
It gives an AI coding assistant a clear map of the project and moves important knowledge into the repository. It is intended only for creating the structure for the first time.

Skill for Claude CodeCodex

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

Good fit Use it when starting a project knowledge base, initializing documentation, or creating a documentation structure.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nongjun/feishu-cursor-claw/project-docs-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 nongjun/feishu-cursor-claw --skill project-docs-management
Clone the repo
git clone --depth 1 https://github.com/nongjun/feishu-cursor-claw

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-docs-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/nongjun/feishu-cursor-claw/project-docs-management.svg)](https://agentmods.dev/skills/nongjun/feishu-cursor-claw/project-docs-management)
Your own site
<a href="https://agentmods.dev/skills/nongjun/feishu-cursor-claw/project-docs-management"><img src="https://agentmods.dev/badge/skills/nongjun/feishu-cursor-claw/project-docs-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,172 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.
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.00080 $0.01172
Opus 5 $0.00040 $0.00586
Sonnet 5 $0.00016 $0.00234
Haiku 4.5 $0.00008 $0.00117

Measured 8d ago against content hash 658f076b2652, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

project-docs-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 8d 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.

参考代码/njcursor/skills/project-docs-management/SKILL.md · 97 lines

What it actually says

项目结构化知识库初始化

本技能仅用于首次搭建。知识库建好后的所有维护(巡检、整理散乱文档、审计模块旧文档)统一由 doc-gardener 技能负责。

核心理念

给 Agent 一张地图,而不是一本说明书。

  1. 渐进式披露AGENTS.md 是 Cursor 原生 AI 入口文件(≤250行),指向 文档/ 深层文档
  2. 不在仓库里 = 不存在:把隐性知识搬入仓库
  3. 为 Agent 可读性优化:文档不含示例代码,充分信任大模型

命名规范

一切使用中文命名:文件、目录、导航文档、架构文档全部中文,.md 格式。

知识库目录结构

项目根目录/
├── AGENTS.md              # Cursor 原生 AI 入口文件(≤250行)
├── 架构.md                # 项目鸟瞰图
├── 文档/                  # 结构化知识库(唯一真相源)
│   ├── 设计文档/          # 标注验证状态
│   ├── 核心信念/          # 团队工程原则与长期规范
│   ├── 执行计划/
│   │   ├── 进行中/
│   │   ├── 已完成/
│   │   └── 技术债务/
│   ├── 产品规格/
│   ├── 参考资料/
│   ├── 质量评分/
│   ├── 凭据与配置/        # 开发阶段直接记录明文
│   └── 变更日志/

AGENTS.md 编写规则

Cursor 原生文件,AI 助手启动时自动读取,是 AI 理解项目的唯一入口

严格 ≤250 行。必含:项目概述、技术栈、知识库索引、目录结构、标准模块结构、核心编码规范、部署约束、凭据位置。 禁止放入:详细 API 文档、完整部署步骤、数据库 Schema、冗长示例代码。

架构.md 编写规则

必含:业务域划分、代码包分层、模块依赖关系、部署拓扑(容器/端口/域名)、数据存储。

文档分类规则

  • 设计文档:开头必须标注 验证状态: ✅已验证 | ⚠️部分验证 | ❌未验证 | 🚧设计中
  • 核心信念:不随任务变化的长期约定
  • 执行计划:复杂任务签入 进行中/,完成移至 已完成/,技术债务单独记录
  • 质量评分:各模块成熟度(⭐~⭐⭐⭐⭐⭐)、改动风险
  • 凭据与配置:Token/密码/API Key 集中明文记录
  • 变更日志:跨模块的重大变更

初始化工作流(使用子 agent 并行)

必须使用 Task 工具启动子 agent 并行处理,不指定 model 参数(继承父级模型)。

阶段1:搭建结构 + 扫描现有文档(并行)

同时启动 2 个子 agent:

子 agent 任务
agent-A 创建 文档/ 完整目录结构(含所有子目录)
agent-B 递归扫描项目下所有 .md 文件,生成完整文档清单(路径、大小、修改时间、初步分类)

阶段2:编写核心文档 + 分类现有文档(并行)

根据扫描结果,启动 3-4 个子 agent:

子 agent 任务
agent-C 编写 架构.md(读取代码结构、docker-compose、nginx配置)
agent-D 编写 AGENTS.md(基于架构.md和文档/结构,含知识库索引+编码规范+模块结构模板)
agent-E 将系统级文档迁移到 文档/ 对应子目录
agent-F 整合凭据信息(读取 .env、credentials 文件,生成凭据总览)

阶段3:收尾

  1. 为设计文档补验证状态头部
  2. 建立初始质量评分
  3. 生成初始化审计报告存入 文档/变更日志/
  4. 备份原始文档目录

详细参考

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 97 lines · 80 tokens per session scan A 658f076b2652

Subscribe to this mod's changes

project-docs-management is a skill published in the GitHub repository nongjun/feishu-cursor-claw (14 stars, last pushed 1mo ago), licensed MIT. It adds 80 tokens to every session and 1,172 once invoked, about $0.0004 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.