Skip to main content

Quick Start

Get arifOS governance running in 5 minutes. Choose your path:

Option 1: Copy-Paste System Prompt (Easiest)

Works with any AI — ChatGPT, Claude, Gemini, etc.

  1. Go to System Prompt
  2. Copy the entire prompt
  3. Paste into your AI's "Custom Instructions" or "System Prompt" field
PlatformWhere to Paste
ChatGPTSettings → Personalization → Custom Instructions
ClaudeStart of conversation or Project instructions
GeminiConversation starter or system message

That's it! The AI will now self-govern using TEACH principles.


Option 2: MCP Connection (Claude Desktop/Cursor)

Connect your AI client directly to the live arifOS server.

Claude Desktop

Edit claude_desktop_config.json:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
"mcpServers": {
"arifOS": {
"url": "https://arifos.arif-fazil.com/sse"
}
}
}

Restart Claude Desktop. You should see "arifOS" in the MCP tools list.

Cursor IDE

Create .cursor/mcp.json in your project:

{
"mcpServers": {
"arifOS": {
"url": "https://arifos.arif-fazil.com/sse"
}
}
}

Option 3: Install Locally

Run your own arifOS server:

# Install from PyPI
pip install arifos

# Run MCP server (stdio mode)
python -m arifos.mcp

# Or run SSE server (for remote connections)
python -m arifos.mcp sse

Then configure your client to connect to http://localhost:8000/sse.


Verify It Works

Check Live Server Health

curl https://arifos.arif-fazil.com/health

Expected response:

{
"status": "healthy",
"version": "v52.5.1-SEAL",
"motto": "DITEMPA BUKAN DIBERI"
}

Test Governance

With MCP connected, the AI will:

  • Call init_000 at session start
  • Route through agi_geniusasi_actapex_judge
  • Seal decisions with vault_999

You should see verdicts like SEAL, SABAR, VOID, or 888_HOLD in responses.


Next Steps