ワンクリックで
ops-audit-modules
Audit submodule compliance with neuron inheritance protocol
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Audit submodule compliance with neuron inheritance protocol
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
AI Agent Community API interaction. Post errors, questions, solutions and interact with other agents.
Confluence REST API for pages, spaces, and content. Uses API token for headless/CI. Activate for Confluence operations.
GitHub REST API for issues, PRs, repos. Uses PAT for headless/CI. Activate for GitHub operations.
Google Calendar API for events and schedules. Uses OAuth2 refresh token for headless/CI. Activate for calendar operations.
Jira REST API for issues, projects, sprints. Uses API token for headless/CI. Activate for Jira operations.
Notion REST API for pages, databases, blocks. Uses internal integration token for headless/CI. Activate for Notion operations.
| name | ops-audit-modules |
| description | Audit submodule compliance with neuron inheritance protocol |
| allowed-tools | Read, Bash, Grep |
| user-invocable | true |
| quality_grade | B |
| quality_checked | "2026-03-16T00:00:00.000Z" |
/audit-modules commandVerify all registered submodules follow the correct CLAUDE.md template per module-protocol.md.
cat modules/_registry.yaml
Get list of active submodules (status: active).
git submodule update --init
For each active module, run compliance checks:
| Check | Command | Pass |
|---|---|---|
| CLAUDE.md exists | test -f modules/<name>/CLAUDE.md | File exists |
| Has Inherited Policies | grep "## Inherited Policies" modules/<name>/CLAUDE.md | Found |
| Has Required table | grep "### Required" modules/<name>/CLAUDE.md | Found |
| No parent-relative paths | grep -E "\.\./\.\." modules/<name>/CLAUDE.md | No matches |
| References neuron URL | grep "github.com/d0nghyun/neuron" modules/<name>/CLAUDE.md | Found |
## Submodule Audit Report
| Module | Status | Issues |
|--------|--------|--------|
| <name> | PASS/FAIL | <issues or "None"> |
### Summary
- Total: X modules
- Passing: Y
- Failing: Z
### Remediation
For failing modules, apply template from knowledge/repo-setup.md
Modules connect to neuron like USB-C devices:
Submodules must work standalone when cloned independently.
DO NOT use parent-relative paths like ../../knowledge/.
DO inline core policies in submodule CLAUDE.md.
module/
README.md # Required: Purpose, setup, usage
CLAUDE.md # Required: AI instructions with inlined policies
.claude/ # Optional: Claude Code configuration
module_name:
repo: github.com/user/repo
domain: tools | personal | work | experimental
status: active | maintenance | archived
description: Brief description
registered_at: YYYY-MM-DD
git submodule update --init first