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

c3C3 搜索

Agent Skill

c3 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

849

周安装

34

GitHub Stars

10

下载量

275
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lagz0ne/c3-skill --skill c3

简介

用于管理 C3X 命令行工具,支持文档验证和实体创建。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,提供拓扑和覆盖检查。
  • 支持 fix、only 和 include-adr 参数,确保文档一致性。
  • 安装方式:github,命令为 npx skills add https://github.com/lagz0ne/c3-skill --skill c3。
  • 建议确认项目结构和命令参数,避免误操作。

SKILL.md

C3

CLI: C3X_MODE=agent bash <skill-dir>/bin/c3x.sh <command> [args]

  • Enforce: c3x = single source. Skill = router: classify -> run c3x -> follow output. No duplicate CLI checklists.
  • Agent mode: C3X_MODE=agent -> TOON output (~40% fewer tokens). Commands append help[] hints.
  • Entry point: c3x list for topology + coverage, c3x check for validation. --help for help.
CommandPurpose
listTopology with counts + coverage (--flat, --compact)
checkValidate docs match code (--fix, --only, --include-adr, --only-touched)
add <type> <slug>Create entity; body via stdin or --file <path> (--container, --feature)
write <id>Rewrite body or a section (--section <name>, --file <path>, stdin)
set <id> <field> <val>Update frontmatter field (goal, status, boundary, category, title, date, codemap patterns)
wire <src> <tgt>Link entities (--remove unlinks)
schema <type>Section defs for entity type
read <id>Entity content; agent truncates 1500 chars (--full bypasses)
lookup <file-or-glob>File/glob -> component + refs
delete <id>Remove entity + clean refs (--dry-run)
graph <id>Relationship graph (--depth, `--direction forward

Types for add: container, component, ref, rule, adr, recipe

Authoring: body with mermaid, code fences, or tables -> use --file <path>, not inline strings. Single-sentence text edits -> echo "..." | c3x write <id> --section <name>. Whole-body rewrite -> c3x write <id> --file body.md. Frontmatter fields -> c3x set <id> <field> <value>.


Intent Classification

KeywordsOpRef
adopt, init, scaffold, bootstrap, onboard, "create.c3"onboardreferences/onboard.md
where, explain, how, diagram, trace, "show me", "what is"queryreferences/query.md
audit, validate, "check docs", driftauditreferences/audit.md
add, change, fix, implement, refactor, remove, provision, designchangereferences/change.md
pattern, convention, "create ref", "update ref", standardizerefreferences/ref.md
"coding rule", "coding standard", "coding convention", "split ref into rule"rulereferences/rule.md
marketplace, "browse rules", "adopt rule", "install rule from"rule (Adopt)references/rule.md
impact, "what breaks", assess, sweep, "is this safe"sweepreferences/sweep.md
recipe, "trace end-to-end", "cross-cutting flow"query(read) / change(create)references/query.md / references/change.md

Dispatch

  1. Classify op (ambiguous -> AskUserQuestion with options)
  2. Load references/<op>.md
  3. Execute (Task tool for parallelism)

Precondition

Before every op except onboard:

bash <skill-dir>/bin/c3x.sh list
bash <skill-dir>/bin/c3x.sh check

Missing .c3/ -> onboard. Follow help[] hints in output.

CoT Harness

C3 context loaded. Before touching anything, ask C3 first:

c3x lookup <file-or-glob> -> component docs, refs, constraints. They supersede assumptions.

Context shifts mid-task -> look up again. Topology = source of truth.

ASSUMPTION_MODE

First AskUserQuestion denial -> ASSUMPTION_MODE = true for session.

  • Never call AskUserQuestion again
  • High-impact: state assumption, mark [ASSUMED]
  • Low-impact: auto-proceed

Shared Rules

HARD RULE --.c3/ is CLI-only. NEVER Read/Glob/Edit/Write .c3/ files.

.c3/c3.db = disposable cache, not submitted state. Raw file access bypasses CLI contract -> stale/misleading. ALL access via c3x:

OpCommands
Createadd
Readread <id>, list, lookup, graph
Updatewrite <id>, set, wire (--remove unwires)
Deletedelete
Validatecheck, schema

Missing c3x operation -> STOP, tell user. No file-tool workarounds.

Search strategy: code->entity via c3x lookup <file-or-glob>; topology via c3x list; full-text over doc bodies -> grep over .c3/.

c3x check after every mutation (add, write, set, wire, delete). Errors = blockers.

ADR-first for changes: Every change starts c3x add adr <slug> before implementation. (Exception: ref-add creates ADR at completion -- references/ref.md.) ADR = work order. Start with c3x schema adr BEFORE drafting any ADR body. Treat schema output as an authoring contract: it tells you what to fill and what breaks if the section stays vague. Then draft the full ADR body to that schema and create it complete. Use c3x read <adr> --full and help[] to verify the body still matches the contract. Rejects thin creation; complete up front, N.A - <reason> for inapplicable rows. list/check exclude ADRs by default; --include-adr only when working on specific ADR. ADR content historical -- verify against current docs.

Stop if:

  • No ADR for change -> c3x add adr <slug> NOW
  • Guessing intent -> AskUserQuestion (skip if ASSUMPTION_MODE)
  • Jumping to component -> start Context down
  • Updating docs without code check

File Context -- MANDATORY before reading/altering any file

1. Lookup:

bash <skill-dir>/bin/c3x.sh lookup <file-path>
bash <skill-dir>/bin/c3x.sh lookup 'src/auth/**'

Run when any file path surfaces. No match = uncharted.

2. Load rules: For every rule-* from lookup:

bash <skill-dir>/bin/c3x.sh read <rule-id>

Extract ## Rule, ## Golden Example, ## Not This. Code MUST match golden pattern. Deviations need Override or new ADR.

3. Parent context: Read upward first:

bash <skill-dir>/bin/c3x.sh read <parent-container-id>
bash <skill-dir>/bin/c3x.sh read <component-id>

Parent responsibilities + membership = integration contract.

4. Graph context:

bash <skill-dir>/bin/c3x.sh graph <parent-container-id> --depth 1
bash <skill-dir>/bin/c3x.sh graph <component-id> --depth 1

Change affects interface -> check consumers first.

Result: Refs + rules + parent + graph = full constraint set. All honored.

New component: Top-down. Container Components + Responsibilities first, then component. Not done until parent has Parent Delta decision.

Navigation: Context -> Container -> Component

Graph Output

Include mermaid when relationships matter:

bash <skill-dir>/bin/c3x.sh graph <entity-id> --format mermaid

Root selection > depth:

  • container: components + refs (query, audit, onboard)
  • component: constraints + siblings (query, change, sweep)
  • ref/rule: citation graph (Usage, sweep)
  • --depth 1 default. --depth 2 for cross-container only
  • --direction forward = impact. --direction reverse = dependents
  • Never graph c3-0 -- one node, no signal

File Structure

.c3/
├── README.md                    # Context (c3-0)
├── adr/adr-YYYYMMDD-slug.md
├── refs/ref-slug.md
├── rules/rule-slug.md
├── recipes/recipe-slug.md
└── c3-N-name/
    ├── README.md                # Container
    └── c3-NNN-component.md

Operations

onboard

No .c3/ or re-onboard. Scaffold -> discovery -> inject CLAUDE.md -> show capabilities. references/onboard.md

query

c3x list for topology, c3x lookup <file-or-glob> for code->entity, c3x graph <id> --direction reverse for dependents. Full-text over bodies -> grep over .c3/. references/query.md

audit

c3x check -> c3x list -> semantic phases -> PASS/WARN/FAIL table. references/audit.md

change

ADR first -> c3x list -> affected entities -> c3x lookup files -> fill ADR -> approve -> execute -> c3x check. Provision gate: implement or status: provisioned. references/change.md

ref

Modes: Add / Update / List / Usage. references/ref.md

rule

Modes: Add / Update / List / Usage. references/rule.md

sweep

c3x graph <id> --direction reverse -> transitive deps -> parallel assessment -> synthesize. Advisory only. references/sweep.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.67%
按下载量换算106

Claude

31.92%
按下载量换算88

Cursor

16.71%
按下载量换算46

Gemini CLI

9.51%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills