ワンクリックで
arifos-mcp-call
Invoke arifOS constitutional MCP tools (000-999 pipeline, F1-F13 enforced)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Invoke arifOS constitutional MCP tools (000-999 pipeline, F1-F13 enforced)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
The mandatory operational guide and metabolic flow for agents interacting with arifOS. Ditempa Bukan Diberi.
Governed intelligence skill for AAA as the abstraction, attestation, and abduction control plane across arifOS, APEX, A-FORGE, GEOX, WEALTH, WELL, and the ariffazil profile repository. Use when the user asks to explain or design AAA, route agentic work, reduce chaos/entropy in an arifOS federation task, create AREP/task declarations, classify risk, plan multi-repo changes, review governance boundaries, or translate human intent into evidence-backed, authority-safe, recursively agentic workflows. Provides deterministic F1-F13 floor checking, bounded abduction, and FederationReceipt composition.
Instrument arifOS constitutional AI kernel with Langfuse LLM tracing. Use when (1) adding Langfuse tracing to arifOS tool calls, (2) wiring arifOS telemetry to Langfuse cloud or self-hosted, (3) querying arifOS trace data from Langfuse, (4) migrating arifOS mind_reason/heart_critique calls to Langfuse spans. DITEMPA BUKAN DIBERI — Forged, Not Given.
GitHub operations — issues, PRs, commits, code search, CI/CD via gh CLI
AGI-level autonomous controller — self-healing, self-optimizing, constitutionally governed by arifOS F1-F13
A2A v1.0.0 client + 888 JUDGMENT integration for OPENCLAW. Use when candidate actions require ASI deliberation or A2A federation with APEX (formerly Hermes).
| name | arifos-mcp-call |
| description | Invoke arifOS constitutional MCP tools (000-999 pipeline, F1-F13 enforced) |
| user-invocable | true |
Runtime: 42-tool constitutional kernel (not 13)
Requirement: init_anchor MUST be called before arifOS_kernel
Floors: F1-F13 enforced via sBERT ML layer
| Stage | Tool | Purpose |
|---|---|---|
| 000_INIT | init_anchor | REQUIRED FIRST — Bootstrap session, bind actor_id, risk tier |
| 333→888 | arifOS_kernel | Full pipeline: reason → memory/heart → critique → forge → judge |
| 888_JUDGE | apex_judge | Cross-check decisions |
| 999_VAULT | vault_seal | Persist to VAULT999 |
# 1. Bootstrap anchor (REQUIRED before kernel)
arifos anchor
# 2. Call kernel with dry-run first
arifos kernel '{"query":"Analyze this","dry_run":true,"actor_id":"arif"}'
# 3. Full execution (after verification)
arifos kernel '{"query":"Execute task","actor_id":"arif","risk_tier":"medium"}'
# Evidence & Memory
arifos search '{"query":"AI governance Malaysia"}'
arifos ingest '{"url":"https://example.com/doc"}'
arifos memory '{"operation":"search","content":"What is Floor F2?"}'
# System & Audit
arifos health
arifos vital
arifos audit
# AgentZero
arifos engineer
arifos validate
arifos holdcheck
If the kernel returns requires_human: true or verdict: "HOLD_888":
Exit code 88 = HOLD_888 (sovereign approval required).
# Health & discovery
curl -s http://arifosmcp:8080/health | jq
# List all 42 tools
curl -s -X POST http://arifosmcp:8080/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# Anchor session (000_INIT)
curl -s -X POST http://arifosmcp:8080/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "init_anchor",
"arguments": {
"actor_id": "arif",
"risk_tier": "low",
"session_id": "test-001"
}
}
}'
# Kernel call (after anchor)
curl -s -X POST http://arifosmcp:8080/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "arifOS_kernel",
"arguments": {
"query": "Explain F1-F13 in 3 bullets",
"actor_id": "arif",
"risk_tier": "low",
"dry_run": true
}
}
}'
Run these to verify OpenClaw ↔ arifOS wiring:
Test A — Bootstrap:
arifos anchor
# Expect: {"ok": true, "status": "anchored"}
Test B — Kernel Dry-Run:
arifos kernel '{"query":"Test","dry_run":true}'
# Expect: 000→999 pipeline simulated, no external execution
Test C — F13 Hold:
arifos kernel '{"query":"Drop production database"}'
# Expect: {"verdict": "HOLD_888", "status": "AWAITING_SOVEREIGN_APPROVAL"}
arifOS.kernel → arifOS_kernel (underscore)/mnt/arifos/AGENTS.md (v2 reality-sealed)arifos-aaa-mcp v2026.03.14-VALIDATEDWhen arifOS_kernel returns requires_human: true or verdict: "HOLD_888":
{
"requires_human": true,
"verdict": "HOLD_888",
"status": "SABAR",
"machine_status": "BLOCKED",
"authority": {
"human_required": true,
"approval_scope": ["arifOS_kernel:execute"]
},
"errors": [{
"code": "L13_SOVEREIGNTY_HOLD",
"message": "High-risk execution requires sovereign approval.",
"remediation": {
"action": "REQUEST_HUMAN_APPROVAL",
"ui_prompt": "This action requires your explicit approval.",
"risk_summary": "..."
}
}],
"payload": {
"hold_reason": "...",
"proceed_conditions": ["human_verbal_confirmation", "explicit_allow_execution"]
}
}
requires_human: truepayload.hold_reason + errors[0].remediation.risk_summaryallow_execution: true + human_confirmed: true88 = HOLD_888 (human approval required)1 = Error0 = Success# 1. Dry-run first (safe)
arifos kernel '{"query":"Delete database","dry_run":true}'
# Returns: HOLD_888 with requires_human: true
# 2. User reviews risk, replies "do it"
# 3. Execute with approval
arifos kernel '{"query":"Delete database","allow_execution":true,"human_confirmed":true}'