用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/QuixiAI/Hexis --skill self-inspection命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Search, read, create, and comment on GitHub issues through the GitHub MCP server.
Analyze a local recording for speakers and label timestamped transcript segments without uploading audio
Run programs, shell commands, and scripts — compile and execute code, test programs in installed languages, work with files in the workspace
基于 SOC 职业分类
正在显示 SKILL.md
| name | self-inspection |
| description | Browse and search Hexis source code and inspect the live PostgreSQL database schema |
| category | system |
| requires | {"tools":["inspect_source","inspect_database_schema"]} |
| contexts | ["heartbeat","chat"] |
| aliases | ["how","why","yourself","your","internals","schema","config","source","debug"] |
| activation_phrases | ["browse your source code","inspect your source code","inspect the database schema"] |
| bound_tools | ["inspect_source","inspect_database_schema","inspect_config","review_recent_actions","review_recent_changes","self_repair"] |
Use this skill to answer questions about how Hexis is implemented, what the current checkout actually does, and what schema is running in PostgreSQL.
inspect_source to locate and read the relevant code. Start with
search, then read only the necessary line ranges.inspect_database_schema for current database truth. Prefer
describe_relation or get_function after a narrow search.inspect_source(action="list", path="...", file_pattern="...") discovers
repository files.inspect_source(action="search", query="...", path="...", file_pattern="...")
finds definitions and call sites.inspect_source(action="read", path="...", offset=..., limit=...) reads a
bounded, line-numbered range.overview only when the relevant object is unknown.search for a table, column, view, or stored-function name fragment.describe_relation for columns, defaults, constraints, indexes, and view
definitions.get_function to inspect the actual stored definition and overloads.review_recent_changes to see what changed about your own substrate —
migrations, code rebuilds, prompt edits, and operator config decisions.self_repair to list unresolved defect reports, diagnose one
with the source/schema evidence gathered here, and mark it resolved only
after verification. It records and reasons about defects; it never silently
edits source code..env contents, or unrelated private files.