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.
- Go to System Prompt
- Copy the entire prompt
- Paste into your AI's "Custom Instructions" or "System Prompt" field
| Platform | Where to Paste |
|---|---|
| ChatGPT | Settings → Personalization → Custom Instructions |
| Claude | Start of conversation or Project instructions |
| Gemini | Conversation 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_000at session start - Route through
agi_genius→asi_act→apex_judge - Seal decisions with
vault_999
You should see verdicts like SEAL, SABAR, VOID, or 888_HOLD in responses.
Next Steps
- Installation — Detailed installation options
- First Governance Check — Hands-on tutorial
- TEACH Framework — Understand the 5 principles