基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill agent-config命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
guildmaster is the mesh's skills supplier and owns the inventory surfaces: "what kit + config does this agent have?" This skill answers exactly that for a single agent, showing the three artifacts that together define it:
CLAUDE.md / AGENTS.md / GEMINI.md) — the
prompt-side guidance for the agent's backend. The script detects which file
is present from a backend-fingerprint registry.culture.yaml — the runtime-side config (agents: list with suffix,
backend, model, system_prompt, channels, tags, acp_command,
extras). Lives parallel to the prompt file at the project root..claude/skills/*/SKILL.md — the per-project skills the agent can
invoke, one line each (name + truncated description).This is the inventory half of the steward → guildmaster split
(issue #12): it reports
the config, it does not interpret drift or judge alignment. The relationship
graph and the "is this agent aligned?" judgment stay with steward overview /
steward doctor.
guild teach / guild onboard — see an agent's current kit + config.<name>" or "what does <agent> run".One script, two ways to call it (or just run guild show, which wraps it):
# Path mode — point at any directory with a prompt file + culture.yaml
.claude/skills/agent-config/scripts/show.sh ../culture
# Suffix mode — resolve a registered agent suffix via the Culture server's
# manifest (location set by culture_server_yaml in skills.local.yaml)
.claude/skills/agent-config/scripts/show.sh daria
Output is three sections: the detected system-prompt file, culture.yaml (or
(missing)), and a one-line summary per local skill (name + description,
truncated to 120 chars).
culture.yaml| Field | Why it matters |
|---|---|
suffix | Identifies the agent on the mesh. |
backend | One of claude / codex / copilot / acp. The all-backends rule means a feature in one must land in all four. |
model | Drift here changes behavior silently. |
system_prompt | Should not contradict the prompt file. |
channels | Where the agent listens. |
tags, extras, acp_command | Backend-specific. |
data/backend-fingerprints.yaml (the prompt: mapping), falling back to the
built-in (CLAUDE.md AGENTS.md GEMINI.md) list if the registry is absent.culture_server_yaml from
.claude/skills.local.yaml (git-ignored), falling back to
.claude/skills.local.yaml.example.agent-config; origin steward). auntiepypi owns
this copy and may diverge; re-sync from guildmaster's canonical copy when it
changes. Divergences: the SKILL.md keeps guildmaster's inventory-role framing
and the type: command field for the culture backend's skill loader.Source: agentculture/auntiepypi — distributed by TomeVault.