same-set-reusable-flow-for-project-file-inventor

same-set-reusable-flow-for-project-file-inventor is a skill for Claude Code from KimYx0207/Meta_Kim. It costs 45 tokens per session (1,143 once invoked), scanned A, original, Apache-2.0.

A file-inventory review process for a MetaKim project. It classifies files as source code, generated copies, temporary state, or uncertain items before cleanup or committing changes.

In plain words
What is it for?
Use it to decide what to keep, commit, ignore, or inspect when a project contains many files or generated runtime copies.
Why use it?
It replaces guesses about which files are safe to remove or ignore with evidence from Git, scripts, tests, documentation, and configuration.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions subagents; mentions Codex; built for openclaw.

Good fit Use it to decide what to keep, commit, ignore, or inspect when a project contains many files or generated runtime copies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor
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 KimYx0207/Meta_Kim --skill same-set-reusable-flow-for-project-file-inventor
Clone the repo
git clone --depth 1 https://github.com/KimYx0207/Meta_Kim

Made for: Claude Code.

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 same-set-reusable-flow-for-project-file-inventor

README.md
[![agentmods](https://agentmods.dev/badge/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor/github.svg)](https://agentmods.dev/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor)
Your own site
<a href="https://agentmods.dev/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor"><img src="https://agentmods.dev/badge/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor/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 same-set-reusable-flow-for-project-file-inventor

Your own site · 80×15
<a href="https://agentmods.dev/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor"><img src="https://agentmods.dev/badge/skills/kimyx0207/meta_kim/same-set-reusable-flow-for-project-file-inventor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,143 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 80
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00045 $0.01143
Opus 5 $0.00023 $0.00571
Sonnet 5 $0.00009 $0.00229
Haiku 4.5 $0.00005 $0.00114

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

Security

Grade A, and why

same-set-reusable-flow-for-project-file-inventor 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.

canonical/skills/same-set-reusable-flow-for-project-file-inventor/SKILL.md · 99 lines

How it starts

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

Project File Inventory Classification

Use this skill when a Meta_Kim workspace has too many files and the user needs to know which are useful, generated, risky, or safe to ignore.

Goal

Produce a source-backed inventory, not a cleanup guess. The output should help the user decide what to keep, commit, ignore, or inspect again.

Required Evidence

Start with read-only evidence:

  1. git status --short --branch
  2. git ls-files
  3. git ls-files --others --exclude-standard
  4. git check-ignore -v <path> for suspicious ignored paths
  5. rg -n "<filename-or-command>" package.json docs scripts tests canonical config for tracked candidates
  6. npm run script inventory from package.json

Do not classify a tracked file as removable only because it has few references. Check package scripts, tests, docs, sync scripts, setup scripts, and contracts first.

Classification Buckets

  • Core source: canonical/, config/contracts/, config/capability-index/, durable scripts, package scripts, and tests that define behavior.
  • Runtime projection: .claude/, .agents/, .cursor/, openclaw/, .codex/ mirrors generated from canonical sources or sync scripts.
  • Generated evidence: .meta-kim/state/default/, graph outputs, reports, SQLite run state, smoke artifacts, and temporary proof files.
  • Planning continuity: task_plan.md, findings.md, progress.md; keep during active work even if ignored.
  • Reference docs: tracked docs and plans that explain product, architecture, contracts, or release decisions.
  • Suspicious or cleanup candidate: files with no package, test, docs, sync, install, contract, or runtime evidence.

Output Format

Return a compact table with:

  • path or pattern
  • bucket
  • why it exists
  • evidence command
  • recommendation: keep, commit, ignore, regenerate, inspect again, or cleanup candidate
  • risk if deleted

End with a short "do not delete yet" list for any file whose role is uncertain.

Boundaries

  • Do not auto-write canonical state without Warden approval.
  • Keep one-run task details in workerTaskPackets, not durable identity.
  • Do not delete files as part of inventory classification unless the user separately approves a cleanup action.
  • Do not treat runtime mirrors or generated reports as source of truth when canonical or config sources exist.

Read the full file on GitHub · 99 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 · 99 lines · 45 tokens per session scan A f56225c64786

Subscribe to this mod's changes

same-set-reusable-flow-for-project-file-inventor is a skill published in the GitHub repository KimYx0207/Meta_Kim (273 stars, last pushed 3d ago), licensed Apache-2.0. It adds 45 tokens to every session and 1,143 once invoked, about $0.0002 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

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

chinese-documentation

A Chinese technical-documentation style guide covering spacing, punctuation, numbers, terminology, and links when Chinese and English appear together.

jnMetaCode/superpowers-zh · 62 tokens

go-testing

Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.

Gentleman-Programming/gentle-ai · 26 tokens

ijfw-workflow

Use when the user says: 'build', 'create', 'plan', 'new project', 'brainstorm', 'design', 'UI', 'website', 'dashboard', 'app', 'help me build', 'launch', 'book', 'campaign', or anything project-level. Skill body decides Quick vs Deep path.

FerroxLabs/ijfw · 70 tokens

ijfw-plan

Use when the user says 'plan this', 'plan it', 'make a plan', 'let's plan', 'draft a plan', 'how should we tackle this', 'break this down', or invokes '/ijfw-plan'. Produces a falsifiable PLAN.md (software, book, campaign, design, research) with task breakdown, dependency wave-table, and success criteria — gated by…

FerroxLabs/ijfw · 95 tokens

ijfw-writing-skills

Authoring discipline for new IJFW skills. Use when creating a new skill, writing a skill, making a skill that does X, or asked to add a skill. Trigger: create a new skill, write a skill, new skill, make me a skill, skill that does, /ijfw-writing-skills.

FerroxLabs/ijfw · 69 tokens