一键导入
cli
Guidelines for designing and documenting Command Line Interfaces.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for designing and documenting Command Line Interfaces.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Guidelines for creating, reviewing, and improving agent skills.
Guidelines for validation, staging, amending, and commit messages.
Guidelines for dependency injection patterns.
Guidelines for ensuring architectural changes are validated against core use cases.
Orchestrates efficient read and write interactions with the engram unified memory store via MCP tools. Provides deterministic workflows for decomposing observations into atomic memories, composing four-dimensional queries (context, similarity, relationship, time) for maximum retrieval accuracy, managing agent-managed focus context, and linking memories into associative webs at write time. Ensures memories are discoverable, precisely ranked, and structurally connected across sessions.
Guidelines for dual-use architecture (CLI and Go Library), dependency separation, and extensible registry patterns.
基于 SOC 职业分类
| name | cli |
| description | Guidelines for designing and documenting Command Line Interfaces. |
Design top-level commands that categorize actions, followed by imperative subcommands (similar to kubectl):
./cmd slack post --channel "#foo"
Ensure the CLI is self-documenting:
--help, ideally with examples.man page.Applications should have the following commands by default:
versionShows the version of the built application, based on Go's internal build primitives.
./cmd version
v0.0.0-20260126085723-f3472ac67d26
Applications should have the following flags by default:
Modifies the log/slog behavior for the default logger. Accepts the levels the log/slog accepts.
./cmd --log-level debug