Project Skill Audit logo

Project Skill Audit

CommunityPopular
Dimillian
project-skill-audit

Analyze a project's past Codex sessions, memory files, and existing local skills to recommend the highest-value skills to create or update. Use when a user asks what skills a project needs, wants skill ideas grounded in real project history, wants an audit of current project-local skills, or wants recommendations for updating stale or incomplete skills instead of creating duplicates.

Overview

PublisherDimillian
RepositorySkills
Skill nameproject-skill-audit
Stars
4K
Forks
206
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Dimillian on GitHub. Read the source before you install it.

Installation

Install the Project Skill Audit AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Dimillian/Skills.git /tmp/Skills
mkdir -p .claude/skills
cp -r /tmp/Skills/project-skill-audit .claude/skills/project-skill-audit
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Project Skill Audit in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Project Skill Audit on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Project Skill Audit is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

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.

Workflow

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

  2. 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/
  3. 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.
  4. 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.
  5. 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.
  6. 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.

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

  • Past sessions and memory:

    • memory summary already in context, if any
    • $CODEX_HOME/memories/MEMORY.md or ~/.codex/memories/MEMORY.md
    • the 1-3 most relevant rollout summaries for the current repo
    • raw $CODEX_HOME/sessions or ~/.codex/sessions JSONL files only if summaries are insufficient
  • Project-local skill surface:

    • ./.agents/skills/*/SKILL.md
    • ./.agents/skills/*/agents/openai.yaml
    • ./.codex/skills/*/SKILL.md
    • ./skills/*/SKILL.md
  • Project conventions:

    • AGENTS.md
    • README.md
    • roadmap, ledger, architecture, or validation docs
    • current worktree or recent touched areas if needed for context

Output Expectations

Return a compact audit with:

  1. Existing skills List the project-local skills found and the main workflow each one covers.

  2. Suggested updates For each update candidate, include:

    • skill name
    • why it is incomplete or stale
    • the highest-value change to make
  3. 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
  4. 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.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Project Skill Audit AI skill do?

Analyze a project's past Codex sessions, memory files, and existing local skills to recommend the highest-value skills to create or update. Use when a user asks what skills a project needs, wants skill ideas grounded in real project history, wants an audit of current project-local skills, or wants recommendations for updating stale or incomplete skills instead of creating duplicates.

Why use Project Skill Audit on TypingMind?

Because you install it once and use it with any model. Project Skill Audit is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Project Skill Audit in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Dimillian/Skills/tree/main/project-skill-audit. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Project Skill Audit?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Project Skill Audit?

As many as you like. As long as a model supports skills, you can use Project Skill Audit with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Project Skill Audit AI skill free?

Yes. It is published on GitHub by Dimillian under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇