Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill agent-config명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| 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.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | agent-config |
| description | > Use when this capability is needed. |
This skill answers "what kit + config does this agent have?" for a single agent — the inventory surface guildmaster owns as the mesh's skills supplier. grant vendored it as a downstream consumer; it shows the three artifacts that together define an agent:
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.docs/skill-sources.md). Divergences: the SKILL.md is reframed for grant as a
downstream consumer; keeps type: command.Source: agentculture/grant — distributed by TomeVault.