v1.22.68 — 16 MCPs servers · 44 skills · 60 codex terms · 2,2199 tests
0xRay extends OpenCode, Hermes Agent, OpenClaw, and Grok Build with multi-agent orchestration and Codex compliance validation via 16 MCPs servers. Tasks route to specialized agents based on complexity with governance enforcement.
npm install strray-ai
npx strray-ai --help
npx strray-ai opencode install # Install OpenCode plugin (agents, hooks, config)
npx strray-ai grok install # Install Grok CLI plugin
npx strray-ai hermes install # Install Hermes Agent plugin
npx strray-ai openclaw install # Configure OpenClaw integrationFor use with Hermes Agent, Grok Build, or any MCP-compatible runtime without OpenCode:
npx strray-ai install --standaloneThis installs only the MCP servers.
- 41 Specialized MCP Servers — Autonomous agents that read/write code, run commands, and enforce compliance
- Codex Enforcement — Universal Development Codex (60 terms) across core, architecture, testing, performance, security, operations, governance
- 44 Framework Skills + 10 curated community sources (170+ additional skills available)
- Complexity-Based Routing — Intelligent task delegation based on complexity scoring
- Skills Registry — Browse and install community skills from GitHub repos
- Webhook Integration — GitHub, GitLab, Bitbucket, Stripe
- Standalone MCP Servers — Works with Hermes Agent, Grok Build, or any MCP-compatible runtime
- OpenClaw Integration — WebSocket bridge to OpenClaw gateway for chat orchestration
- Developers using OpenCode, Hermes, Grok Build, or any MCP-compatible runtime
- Teams needing consistent code quality and error prevention
- Enterprises requiring security, compliance, and audit capabilities
# System design
@architect design database schema for e-commerce
# Code review
@code-reviewer review authentication module
# Security audit
@security-auditor scan for vulnerabilities
# Testing
@testing-lead create tests for payment system| Agent | Purpose | Status |
|---|---|---|
| architect | System design & technical decisions | Active |
| security-auditor | Vulnerability detection | Active |
| code-reviewer | Quality assessment | Active |
| refactorer | Technical debt elimination | Active |
| testing-lead | Testing strategy & coverage | Active |
| bug-triage-specialist | Error investigation | Active |
| researcher | Codebase exploration | Active |
0xRay exposes 16 MCPs servers that work across runtimes. Key servers include:
| MCP Server | Tools | Purpose |
|---|---|---|
strray-researcher |
search_codebase, find_implementation, get_documentation | Codebase search & documentation |
strray-orchestrator |
orchestrate_task, analyze_complexity, get_orchestration_status | Multi-agent task planning |
strray-enforcer |
rule_validation, codex_enforcement, quality_gate_check | Codex compliance & quality gates |
strray-governance |
evaluate_proposal, get_governance_status | Dynamo Solar SSOT governance |
strray-security-scan |
security_scan, dependency_audit | Vulnerability scanning |
strray-architect-tools |
codebase_structure, dependency_analysis, architecture_assessment | Architecture analysis |
strray-lint |
lint, lint_check | ESLint validation |
strray-auto-format |
auto_format, format_check | Code formatting |
strray-state-manager |
get_state, set_state, delete_state, list_state | Persistent state |
0xRay ships a governance engine operating at two levels:
Framework-level (inference cycle, MCP):
- Dynamo Solar SSOT: Multi-factor decision matrix (resonance, isotopic ratio, vortex volume, historical coherence, solar activity)
- Trinitarium Moral Overlay: Moral-numerological tension check —
Criticaltension rejects proposals,Significantdowngrades PASS to NEEDS_REVISION,Alignedboosts confidence - Pure MCP transport — real proposal voting with researcher deliberation
- CodexPolicyService — single source of truth for Codex loading
- PreToolUse hooks enforce Codex before code changes
Project-level (pre-commit, PreToolUse hooks):
- Quality gates
- Pre-commit validation
- Custom policy integration
| Parameter | Default | Effect |
|---|---|---|
| PHI weight | 1.666 | Proposal resonance sensitivity |
| TAU weight | 0.865 | Temporal coherence threshold |
| Min resonance | 0.70 | Minimum vote to proceed |
| Moral tension threshold | disabled |
disabled / Aligned / Mild / Significant / Critical |
| Codex strictness | standard | standard / strict / lenient |
0xRay integrates with OpenClaw — a self-hosted AI gateway connecting messaging platforms (WhatsApp, Telegram, Discord, Slack) to AI coding agents.
- WebSocket Connection: Connect to OpenClaw Gateway at
ws://127.0.0.1:18789 - Skill Invocation: OpenClaw skills invoke 0xRay agents via HTTP API (port 18431)
- Tool Events: Forward tool events to OpenClaw for real-time tracking
- Offline Buffering: Events queued when disconnected, sent on reconnect
0xRay ships with 44 framework skills and provides a registry of 10 curated community sources with 170+ additional skills.
# Show starter packs and available sources
npx strray-ai skill:install
# Install a specific source
npx strray-ai skill:install agency-agents
npx strray-ai skill:install superpowers
npx strray-ai skill:install anthropic-skills| Source | Skills | License | Description |
|---|---|---|---|
| agency-agents | 170+ | MIT | AI agency agent definitions |
| superpowers | 14 | MIT | TDD, debugging, code review workflows |
| anthropic-skills | 10+ | MIT | Official Anthropic Claude Code skills |
| antigravity | 1300+ | MIT | Curated community skills |
| impeccable | 1 | Apache 2.0 | AI frontend design language |
| minimax | 20+ | MIT | Frontend, mobile, shader skills |
| gemini-skills | 10+ | Apache 2.0 | Official Google Gemini skills |
| ai-web3-security | 10+ | MIT | Web3 security auditing |
| vuejs-nuxt | 5+ | MIT | Vue.js 3, Nuxt 4+ skills |
| ui-ux-pro-max | 1 | MIT | Professional UI/UX design |
stringray/
├── src/
│ ├── __tests__/ # Test suites
│ ├── agents/ # Agent implementations
│ ├── analytics/ # Pattern analysis & learning
│ ├── cli/ # CLI commands
│ ├── core/ # Core framework
│ ├── enforcement/ # Codex enforcement
│ ├── integrations/ # External integrations
│ │ ├── base/ # BaseIntegration framework
│ │ └── openclaw/ # OpenClaw integration
│ ├── mcps/ # MCP server implementations
│ ├── orchestrator/ # Multi-agent orchestration
│ ├── governance/ # Governance engine
│ ├── plugins/ # Plugin system
│ ├── reporting/ # Report generation
│ └── security/ # Security systems
├── docs/
│ ├── reflections/ # Deep technical reflections
│ └── research/ # Research documents
├── .strray/config/ # Framework configuration
│ └── features.json # Feature flags
├── .opencode/ # OpenCode configuration
│ ├── agents/ # Agent configs
│ └── strray/ # Codex & config
└── scripts/ # Build & utility scripts
Configuration lives in .strray/config/:
{
"token_optimization": {
"enabled": true,
"max_context_tokens": 16000,
"compression_enabled": true
},
"model_routing": { "enabled": true },
"multi_agent_orchestration": { "enabled": true },
"security": {
"codex_enforcement": true,
"codex_strictness": "standard"
}
}Edit .strray/config/features.json to toggle features:
| Feature | Default | Description |
|---|---|---|
| token_optimization | enabled | Context token management |
| model_routing | enabled | AI model routing |
| batch_operations | enabled | File batch processing |
| multi_agent_orchestration | enabled | Agent coordination |
| autonomous_reporting | disabled | Automatic reporting |
| activity_logging | enabled | Activity logging |
| security.codex_enforcement | true | Codex compliance |
| performance_monitoring | enabled | Performance tracking |
{
"token_optimization": {
"max_context_tokens": 20000,
"warning_threshold": 15000,
"compression_enabled": true
}
}{
"version_pinning": {
"strray_ai": "^1.22.0",
"opencode": "^2.14.0",
"skills": { "antigravity": "latest", "impeccable": "latest" }
}
}# Core commands
npx strray-ai status # Check configuration
npx strray-ai validate # Validate installation
npx strray-ai capabilities # Show all features
npx strray-ai health # Health check
npx strray-ai report # Generate reports
# Skills management
npx strray-ai skill:install # Show starter packs
npx strray-ai skill:registry list # Show all registry sources
npx strray-ai antigravity status # Show installed skills
# Agent management
npx strray-ai publish-agent --agent orchestrator
# Integration installs
npx strray-ai opencode install # Install OpenCode plugin
npx strray-ai grok install # Install Grok CLI plugin
npx strray-ai hermes install # Install Hermes Agent plugin
npx strray-ai openclaw install # Configure OpenClaw integration
# Configuration
npx strray-ai config get --feature <name>
npx strray-ai config set --feature <name> --value <val>npm test # Run all tests
npm run test:unit # Unit tests
npm run test:comprehensive # Full suite
npm run test:pipelines # Pipeline integration tests
npm run typecheck # TypeScript checksimport { StringRayIntegration } from 'strray-ai/integration';
const integration = new StringRayIntegration(postProcessor);
// Express
app.use('/webhooks', integration.getWebhookApp());
app.use('/api/post-process', integration.getAPIApp());Supported Webhooks: GitHub, GitLab, Bitbucket, Stripe
| Guide | Description |
|---|---|
| Agent Configuration | Agent setup |
| Configuration Reference | Complete settings |
| Agent Documentation | Agent specifications |
| Universal Codex | 60-term codex |
0xRay extends OpenCode with agents, Codex enforcement, skills, and governance hooks:
npx strray-ai opencode install- 42 agent configurations for autonomous task handling
- Codex enforcement with 60 error-prevention terms
- 44 framework skills + 10 community sources
- Pre/post processing hooks for quality gates
- MCP server discovery from
.opencode/config
0xRay is a first-class plugin in Grok CLI:
npx strray-ai grok install- Full plugin with PreToolUse governance hooks
.mcp.jsonregistration forstrray-governance+strray-skills- Real Dynamo Solar SSOT governance inside Grok sessions
0xRay installs as a native Hermes Agent plugin with validation tools and quality gates:
npx strray-ai hermes installstrray_validate— Pre-commit validation with quality gatesstrray_codex_check— Code review against 60 codex rulesstrray_health— Framework health checkstrray_hooks— Git hooks managementpre_tool_call/post_tool_callhooks for tool awareness
0xRay's MCP servers also work as native tools. Add entries to ~/.hermes/config.yaml to connect all 10+ MCP servers.
0xRay connects to OpenClaw Gateway for chat platform orchestration:
npx strray-ai openclaw installCreates .strray/config/openclaw.json with WebSocket gateway, API server, and tool hooks configuration.
If 0xRay helps you build better software:
- ⭐ Star the repo on GitHub
- 🐛 Report issues at github.com/htafolla/stringray/issues
MIT License — see LICENSE for details.