365Soft Docs

CLI Examples

Create a Run

365soft demo run --repo https://github.com/acme/app --task "Add careers CV validation"

Check Current State

365soft demo status --run-id <RUN_ID>

Approve Each Gate

365soft demo approve --run-id <RUN_ID> --step plan
365soft demo approve --run-id <RUN_ID> --step apply_patch
365soft demo approve --run-id <RUN_ID> --step pr

Follow Timeline Events

365soft demo events --run-id <RUN_ID> --follow

Create a Sprint Plan

365soft sprint plan --sprint-id sprint-2026-03 --goals "Define acceptance criteria;Implement API;Update docs" --owners "orchestrator,backend,docs"

Orchestrator to Agent Handoff

365soft handoff create --run-id <RUN_ID> --role backend --message "Implement POST /api/sprints/plan and add tests"
365soft handoff complete --run-id <RUN_ID> --role backend --summary "API route added and validated"
365soft handoff list --run-id <RUN_ID>

Capability MCP Preflight

365soft capability check --capability "xai docs" --suggest-offline

Offline Reference Fallback

365soft offline-reference plan --target <business-docs-profile>
365soft offline-reference build --target <business-docs-profile> --manual-login

Use Remote API Endpoint

# PowerShell
$env:DEMO_API_BASE_URL="https://api.365softlabs.com"
365soft demo status --run-id <RUN_ID>

Dry Run (No Execution)

365soft demo run --repo https://github.com/acme/app --task "Refactor auth module" --dry-run
For production-oriented scenarios, check Use Cases.