بنقرة واحدة
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.