ArcoreArsenal
The 'Kinetic Arm' of the Arcore suite. ArcoreArsenal is a secure platform for managing and executing operational scripts (payloads) with strict access controls, semantic search, and comprehensive audit trails. It serves as a centralized mission control for automated operations, treating scripts as first-class, versioned assets.
Key Features
- Secure Code/Script Vault with Versioning
- Multi-Strategy Execution (Container, SSH, WinRM)
- Semantic Search (pgvector infrastructure ready)
- Real-time Output Capture & Performance Metrics
- Safety Clearance Levels (Green/Amber/Red)
API Endpoints
| Method | Path | Description |
|---|---|---|
| POST | `/api/scripts/` | Create or upload a new script |
| POST | `/api/jobs/execute` | Trigger a script execution job |
| GET | `/api/scripts/{id}/versions` | Retrieve script version history |
| GET | `/api/jobs/{id}/logs` | Stream execution logs |
Usage Example
import requests
# Example interaction: Execute a script
response = requests.post(
url="https://api.arcore.internal/api/jobs/execute",
headers={"Authorization": "Bearer <token>"},
json={
"script_id": "uuid-123",
"params": {"target": "prod-db-01"}
}
)
print(response.json())Tech Stack
Authentication
- •**Header:** `Authorization: Bearer <token>`
- •**Scopes:** RBAC is enforced at the object level via `ArcoreCodex` policies.
Compliance & Security
Compliance
- ✓Execution: Sandboxed containers (Drop Pods) for isolation
- ✓Audit: Full recording of stdout/stderr and file operations
- ✓Access: Granular permission per script with safety clearance levels
Security
- ✓Access: Granular permission per script with safety clearance levels
Coming Soon
3 plannedLive AI Semantic Search
Target: Q1 2025
HashiCorp Vault Integration
Target: Q2 2025
Automated AI Parameter Inference
Target: Q2 2025
Related Products
Arcor Parkour
CI/CD Orchestration Platform. ArcorParkour provides a universal runner architecture to execute YAML-defined pipelines, providing real-time log streaming, encrypted secret management, and multi-cloud CLI integration for automated delivery. It serves as the primary engine for automating the software delivery lifecycle across the Arcore ecosystem.
Arcore Phantom
Platform engineering tool for creating backend-free, believable demos. ArcorePhantom captures live API traffic, infers entities and routes, and compiles a browser-only runtime so teams can ship portable demos without exposing production systems.
Arcore Foundry
Deterministic, safe, and observable executor runtime for scaffolding and maintenance. ArcoreFoundry separates the Brain (knowledge graph + contracts) from the Hands (DAG executor + transactional VFS) so every change is ordered, diffable, and secure before touching disk.