원클릭으로
align
Semantic Rigidity Gate - Ensure each node has a single unambiguous causal role.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Semantic Rigidity Gate - Ensure each node has a single unambiguous causal role.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Schema Composition - Design the graph topology and generate docgraph.toml for deterministic traversal.
Graph Reasoning - Navigate the documentation graph to progressively refine a hypothesis until a stable conclusion is formed.
Graph Integrity Gate - Ensure nodes and relations can exist in the causal graph.
| name | align |
| description | Semantic Rigidity Gate - Ensure each node has a single unambiguous causal role. |
This skill determines whether a node has a uniquely interpretable meaning in the graph.
Alignment does not evaluate completeness or quality. It eliminates semantic ambiguity that would cause reasoning divergence.
[!IMPORTANT] A node is aligned only if its meaning has exactly one causal role. If multiple interpretations are possible, alignment fails.
Validation ensures the graph can exist. Alignment ensures the graph means only one thing.
If alignment fails → different agents may derive different conclusions.
Alignment verifies determinism of interpretation, not properties of the node alone.
Alignment guarantees that traversal meaning is path-independent.
The node MUST pass validate.
If validation fails → STOP
After confirming validate PASS, the agent MUST read docgraph.toml to derive the semantic topology used for
alignment.
docgraph.toml is the sole normative source. If unread, the agent MUST stop.
The agent MUST map schema elements into interpretation constraints:
r.type) → allowed causal questions (Why/What/How/Boundary/Justification)Alignment MUST only judge determinism using this schema-derived topology. If the mapping cannot be established, alignment MUST fail (unknown semantics).
The node must belong to exactly one abstraction level:
If the node can be interpreted as more than one → FAIL
The role must be inferable from relations, not from description wording. If role changes when ignoring prose, alignment fails.
Parent and child relations must not redefine the node's role.
Invalid cases:
Result: FAIL
The graph must not provide multiple answers to the same causal question.
Invalid cases:
Result: FAIL
Alignment MUST use docgraph for observation. Tools materialize evidence; they do not drive exploration.
docgraph describeInspect the target node and its immediate inbound/outbound relations.
docgraph describe <ID>
docgraph query (bounded)Use bounded queries only to detect ambiguity patterns, never to discover new intent.
Typical checks:
docgraph query "MATCH (p)-[r]->(n) WHERE n.id='<ID>' RETURN p.id, p.type, r.type"
docgraph query "MATCH (n)-[r]->(c) WHERE n.id='<ID>' RETURN c.id, c.type, r.type"
docgraph query "MATCH (m:<TYPE>) RETURN m.id, m.title"
[!CAUTION] Queries MUST be bounded (1-hop or limited results). If multi-hop traversal is required, switch to
reasoning.
Alignment does not enforce:
| Check | Result | Notes |
|---|---|---|
| Schema topology | READ | |
| Role determinism | PASS/FAIL | |
| Vertical determinism | PASS/FAIL | |
| Semantic collision | PASS/FAIL |
PASS → Node meaning is uniquely defined FAIL → Node meaning is ambiguous
FINAL DECISION: [PASS/FAIL]