원클릭으로
self-inspection
Browse and search Hexis source code and inspect the live PostgreSQL database schema
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Browse and search Hexis source code and inspect the live PostgreSQL database schema
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Author or revise reusable Hexis skills from repeated successful workflows
Semantic recall, exact cross-session search, remembering, and normal continuity
Ingest URLs, documents, and text into the memory system as structured knowledge
Inspect, grant, and revoke scoped connector action policies for sends, replies, labels, spam triage, and provider state changes
Digest and ingest emails into memory, surfacing important threads and action items
Send Gmail messages, reply to threads, apply labels, and triage spam with explicit action authorization
| 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"] |
| bound_tools | ["inspect_source","inspect_database_schema","inspect_config","review_recent_actions","review_recent_changes"] |
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..env contents, or unrelated private files.