Project Skill Audit
Overview
Audit the project's real recurring workflows before recommending skills. Prefer evidence from memory, rollout summaries, existing skill folders, and current repo conventions over generic brainstorming.
Recommend updates before new skills when an existing project skill is already close to the needed behavior.
When to Use
- When the user asks what skills a project needs or which existing skills should be updated.
- When recommendations should be grounded in project history, memory files, and local conventions.
Workflow
Map the current project surface.
Identify the repo root and read the most relevant project guidance first, such as AGENTS.md, README.md, roadmap/ledger files, and local docs that define workflows or validation expectations.
Build the memory/session path first.
Resolve the memory base as $CODEX_HOME when set, otherwise default to ~/.codex.
Use these locations:
- memory index:
$CODEX_HOME/memories/MEMORY.md or ~/.codex/memories/MEMORY.md
- rollout summaries:
$CODEX_HOME/memories/rollout_summaries/
- raw sessions:
$CODEX_HOME/sessions/ or ~/.codex/sessions/
Read project past sessions in this order.
If the runtime prompt already includes a memory summary, start there.
Then search MEMORY.md for:
- repo name
- repo basename
- current
cwd
- important module or file names
Open only the 1-3 most relevant rollout summaries first.
Fall back to raw session JSONL only when the summaries are missing the exact evidence you need.
Scan existing project-local skills before suggesting anything new.
Check these locations relative to the current repo root:
.agents/skills
.codex/skills
skills
Read both SKILL.md and agents/openai.yaml when present.
Compare project-local skills against recurring work.
Look for repeated patterns in past sessions:
- repeated validation sequences
- repeated failure shields
- recurring ownership boundaries
- repeated root-cause categories
- workflows that repeatedly require the same repo-specific context
If the pattern appears repeatedly and is not already well captured, it is a candidate skill.
Separate new skill from update existing skill.
Recommend an update when an existing skill is already the right bucket but has stale triggers, missing guardrails, outdated paths, weak validation instructions, or incomplete scope.
Recommend a new skill only when the workflow is distinct enough that stretching an existing skill would make it vague or confusing.
Check for overlap with global skills only after reviewing project-local skills.
Use $CODEX_HOME/skills and $CODEX_HOME/skills/public to avoid proposing project-local skills for workflows already solved well by a generic shared skill.
Do not reject a project-local skill just because a global skill exists; project-specific guardrails can still justify a local specialization.
Session Analysis
1. Search memory index first
- Search
MEMORY.md with rg using the repo name, basename, and cwd.
- Prefer entries that already cite rollout summaries with the same repo path.
- Capture:
- repeated workflows
- validation commands
- failure shields
- ownership boundaries
- milestone or roadmap coupling
2. Open targeted rollout summaries
- Open the most relevant summary files under
memories/rollout_summaries/.
- Prefer summaries whose filenames,
cwd, or keywords match the current project.
- Extract:
- what the user asked for repeatedly
- what steps kept recurring
- what broke repeatedly
- what commands proved correctness
- what project-specific context had to be rediscovered
3. Use raw sessions only as a fallback
- Only search
sessions/ JSONL files if rollout summaries are missing a concrete detail.
- Search by:
- exact
cwd
- repo basename
- thread ID from a rollout summary
- specific file paths or commands
- Use raw sessions to recover exact prompts, command sequences, diffs, or failure text, not to replace the summary pass.
4. Turn session evidence into skill candidates
- A candidate
new skill should correspond to a repeated workflow, not just a repeated topic.
- A candidate
skill update should correspond to a workflow already covered by a local skill whose triggers, guardrails, or validation instructions no longer match the recorded sessions.
- Prefer concrete evidence such as:
- "this validation sequence appeared in 4 sessions"
- "this ownership confusion repeated across extractor and runtime fixes"
- "the same local script and telemetry probes had to be rediscovered repeatedly"
Recommendation Rules
Recommend a new skill when:
- the same repo-specific workflow or failure mode appears multiple times across sessions
- success depends on project-specific paths, scripts, ownership rules, or validation steps
- the workflow benefits from strong defaults or failure shields
Recommend an update when:
- an existing project-local skill already covers most of the need
SKILL.md and agents/openai.yaml drift from each other
- paths, scripts, validation commands, or milestone references are stale
- the skill body is too generic to reflect how the project is actually worked on
Do not recommend a skill when:
- the pattern is a one-off bug rather than a reusable workflow
- a generic global skill already fits with no meaningful project-specific additions
- the workflow has not recurred enough to justify the maintenance cost
What To Scan
Output Expectations
Return a compact audit with:
Existing skills
List the project-local skills found and the main workflow each one covers.
Suggested updates
For each update candidate, include:
- skill name
- why it is incomplete or stale
- the highest-value change to make
Suggested new skills
For each new skill, include:
- recommended skill name
- why it should exist
- what would trigger it
- the core workflow it should encode
Priority order
Rank the top recommendations by expected value.
Naming Guidance
- Prefer short hyphen-case names.
- Use project prefixes for project-local skills when that improves clarity.
- Prefer verb-led or action-oriented names over vague nouns.
Failure Shields
- Do not invent recurring patterns without session or repo evidence.
- Do not recommend duplicate skills when an update to an existing skill would suffice.
- Do not rely on a single memory note if the current repo clearly evolved since then.
- Do not bulk-load all rollout summaries; stay targeted.
- Do not skip rollout summaries and jump straight to raw sessions unless the summaries are insufficient.
- Do not recommend skills from themes alone; recommendations should come from repeated procedures, repeated validation flows, or repeated failure modes.
- Do not confuse a project's current implementation tasks with its reusable skill needs.
Follow-up
If the user asks to actually create or update one of the recommended skills, switch to $skill-creator and implement the chosen skill rather than continuing the audit.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: project-skill-audit3description: Audit a project and recommend the highest-value skills to add or update.4---56# Project Skill Audit78## Overview910Audit the project's real recurring workflows before recommending skills. Prefer evidence from memory, rollout summaries, existing skill folders, and current repo conventions over generic brainstorming.1112Recommend updates before new skills when an existing project skill is already close to the needed behavior.1314## When to Use15- When the user asks what skills a project needs or which existing skills should be updated.16- When recommendations should be grounded in project history, memory files, and local conventions.1718## Workflow19201. Map the current project surface.21 Identify the repo root and read the most relevant project guidance first, such as `AGENTS.md`, `README.md`, roadmap/ledger files, and local docs that define workflows or validation expectations.22232. Build the memory/session path first.24 Resolve the memory base as `$CODEX_HOME` when set, otherwise default to `~/.codex`.25 Use these locations:26 - memory index: `$CODEX_HOME/memories/MEMORY.md` or `~/.codex/memories/MEMORY.md`27 - rollout summaries: `$CODEX_HOME/memories/rollout_summaries/`28 - raw sessions: `$CODEX_HOME/sessions/` or `~/.codex/sessions/`29303. Read project past sessions in this order.31 If the runtime prompt already includes a memory summary, start there.32 Then search `MEMORY.md` for:33 - repo name34 - repo basename35 - current `cwd`36 - important module or file names37 Open only the 1-3 most relevant rollout summaries first.38 Fall back to raw session JSONL only when the summaries are missing the exact evidence you need.39404. Scan existing project-local skills before suggesting anything new.41 Check these locations relative to the current repo root:42 - `.agents/skills`43 - `.codex/skills`44 - `skills`45 Read both `SKILL.md` and `agents/openai.yaml` when present.46475. Compare project-local skills against recurring work.48 Look for repeated patterns in past sessions:49 - repeated validation sequences50 - repeated failure shields51 - recurring ownership boundaries52 - repeated root-cause categories53 - workflows that repeatedly require the same repo-specific context54 If the pattern appears repeatedly and is not already well captured, it is a candidate skill.55566. Separate `new skill` from `update existing skill`.57 Recommend an update when an existing skill is already the right bucket but has stale triggers, missing guardrails, outdated paths, weak validation instructions, or incomplete scope.58 Recommend a new skill only when the workflow is distinct enough that stretching an existing skill would make it vague or confusing.59607. Check for overlap with global skills only after reviewing project-local skills.61 Use `$CODEX_HOME/skills` and `$CODEX_HOME/skills/public` to avoid proposing project-local skills for workflows already solved well by a generic shared skill.62 Do not reject a project-local skill just because a global skill exists; project-specific guardrails can still justify a local specialization.6364## Session Analysis6566### 1. Search memory index first6768- Search `MEMORY.md` with `rg` using the repo name, basename, and `cwd`.69- Prefer entries that already cite rollout summaries with the same repo path.70- Capture:71 - repeated workflows72 - validation commands73 - failure shields74 - ownership boundaries75 - milestone or roadmap coupling7677### 2. Open targeted rollout summaries7879- Open the most relevant summary files under `memories/rollout_summaries/`.80- Prefer summaries whose filenames, `cwd`, or `keywords` match the current project.81- Extract:82 - what the user asked for repeatedly83 - what steps kept recurring84 - what broke repeatedly85 - what commands proved correctness86 - what project-specific context had to be rediscovered8788### 3. Use raw sessions only as a fallback8990- Only search `sessions/` JSONL files if rollout summaries are missing a concrete detail.91- Search by:92 - exact `cwd`93 - repo basename94 - thread ID from a rollout summary95 - specific file paths or commands96- Use raw sessions to recover exact prompts, command sequences, diffs, or failure text, not to replace the summary pass.9798### 4. Turn session evidence into skill candidates99100- A candidate `new skill` should correspond to a repeated workflow, not just a repeated topic.101- A candidate `skill update` should correspond to a workflow already covered by a local skill whose triggers, guardrails, or validation instructions no longer match the recorded sessions.102- Prefer concrete evidence such as:103 - "this validation sequence appeared in 4 sessions"104 - "this ownership confusion repeated across extractor and runtime fixes"105 - "the same local script and telemetry probes had to be rediscovered repeatedly"106107## Recommendation Rules108109- Recommend a new skill when:110 - the same repo-specific workflow or failure mode appears multiple times across sessions111 - success depends on project-specific paths, scripts, ownership rules, or validation steps112 - the workflow benefits from strong defaults or failure shields113114- Recommend an update when:115 - an existing project-local skill already covers most of the need116 - `SKILL.md` and `agents/openai.yaml` drift from each other117 - paths, scripts, validation commands, or milestone references are stale118 - the skill body is too generic to reflect how the project is actually worked on119120- Do not recommend a skill when:121 - the pattern is a one-off bug rather than a reusable workflow122 - a generic global skill already fits with no meaningful project-specific additions123 - the workflow has not recurred enough to justify the maintenance cost124125## What To Scan126127- Past sessions and memory:128 - memory summary already in context, if any129 - `$CODEX_HOME/memories/MEMORY.md` or `~/.codex/memories/MEMORY.md`130 - the 1-3 most relevant rollout summaries for the current repo131 - raw `$CODEX_HOME/sessions` or `~/.codex/sessions` JSONL files only if summaries are insufficient132133- Project-local skill surface:134 - `./.agents/skills/*/SKILL.md`135 - `./.agents/skills/*/agents/openai.yaml`136 - `./.codex/skills/*/SKILL.md`137 - `./skills/*/SKILL.md`138139- Project conventions:140 - `AGENTS.md`141 - `README.md`142 - roadmap, ledger, architecture, or validation docs143 - current worktree or recent touched areas if needed for context144145## Output Expectations146147Return a compact audit with:1481491. `Existing skills`150 List the project-local skills found and the main workflow each one covers.1511522. `Suggested updates`153 For each update candidate, include:154 - skill name155 - why it is incomplete or stale156 - the highest-value change to make1571583. `Suggested new skills`159 For each new skill, include:160 - recommended skill name161 - why it should exist162 - what would trigger it163 - the core workflow it should encode1641654. `Priority order`166 Rank the top recommendations by expected value.167168## Naming Guidance169170- Prefer short hyphen-case names.171- Use project prefixes for project-local skills when that improves clarity.172- Prefer verb-led or action-oriented names over vague nouns.173174## Failure Shields175176- Do not invent recurring patterns without session or repo evidence.177- Do not recommend duplicate skills when an update to an existing skill would suffice.178- Do not rely on a single memory note if the current repo clearly evolved since then.179- Do not bulk-load all rollout summaries; stay targeted.180- Do not skip rollout summaries and jump straight to raw sessions unless the summaries are insufficient.181- Do not recommend skills from themes alone; recommendations should come from repeated procedures, repeated validation flows, or repeated failure modes.182- Do not confuse a project's current implementation tasks with its reusable skill needs.183184## Follow-up185186If the user asks to actually create or update one of the recommended skills, switch to `$skill-creator` and implement the chosen skill rather than continuing the audit.187188## Limitations189- Use this skill only when the task clearly matches the scope described above.190- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.191- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.