Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计异常

project-skill-audit项目技能审核

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

7,054

周安装

303

GitHub Stars

3,427

下载量

2,472
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-skill-audit(项目技能审核)
来源仓库:https://github.com/dimillian/skills
仓库路径:skills/project-skill-audit
安装命令:
npx skills add https://github.com/dimillian/skills --skill project-skill-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dimillian/skills --skill project-skill-audit

简介

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。

  • 它支持安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。
  • 使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • project-skill-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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/

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

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

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

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

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

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.57%
按下载量换算879

Claude

32.22%
按下载量换算796

Cursor

17.71%
按下载量换算438

Gemini CLI

9.32%
按下载量换算230

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills