feat: Claude Code Monitor — lanes, pipelines and a merged workspace

Internal SmartGift build of a Claude Code monitoring dashboard.

Lanes: a durable unit of parallel agent work, one per working directory,
tracked across session restarts. Managed lanes are git worktrees the
dashboard provisions and can reset or remove behind a three-check destroy
guard and a counted preflight; adopted lanes are directories you already
own and are never destroyable.

Pipelines: a lane moves through pipeline stages. A stage the agent declares
with evidence renders green; a stage inferred from the tool-event stream
renders dashed amber and never counts as done. Detection is forward-only
within a 30-minute window, and never writes the declared stage.

Workspace: one page at /run with a lane grid, the selected lane's pipeline,
and a full Claude console behind a disclosure.
This commit is contained in:
2026-07-29 17:07:45 +07:00
commit 57dc91585d
783 changed files with 221743 additions and 0 deletions
+88
View File
@@ -0,0 +1,88 @@
# Terraform Infrastructure
Cloud-agnostic infrastructure modules for deploying the Claude Code Agent Monitor to AWS, GCP, Azure, or OCI.
## Architecture
```mermaid
graph TD
subgraph Modules["Reusable Modules"]
NET["networking"]
COMP["compute"]
DB["database"]
LB["loadbalancer"]
MON["monitoring"]
SEC["secrets"]
end
subgraph Providers["Provider Implementations"]
AWS["aws/"]
GCP["gcp/"]
AZ["azure/"]
OCI["oci/"]
end
subgraph Envs["Environments"]
DEV["dev/terraform.tfvars"]
STG["staging/terraform.tfvars"]
PRD["production/terraform.tfvars"]
end
AWS --> NET & COMP & DB & LB & MON & SEC
GCP --> NET & COMP & DB & LB & MON & SEC
AZ --> NET & COMP & DB & LB & MON & SEC
OCI --> NET & COMP & DB & LB & MON & SEC
Envs -.->|var-file| Providers
```
## Usage
```bash
# 1. Choose your provider
cd providers/aws # or gcp, azure, oci
# 2. Initialize
terraform init
# 3. Plan with environment
terraform plan -var-file=../../environments/production/terraform.tfvars
# 4. Apply
terraform apply -var-file=../../environments/production/terraform.tfvars
# 5. Get outputs
terraform output
```
## Module Reference
| Module | Purpose | Key Resources |
|---|---|---|
| `networking` | VPC/VNet, subnets, NAT, security groups | VPC, public/private subnets, NAT gateway, firewall rules |
| `compute` | Container orchestration with blue-green slots | ECS tasks / Cloud Run / ACI / OKE deployments |
| `database` | Persistent storage for SQLite | EFS / Filestore / Azure Files / FSS with encryption |
| `loadbalancer` | Application LB with WebSocket + traffic splitting | ALB / GCLB / App Gateway / LBaaS, health checks |
| `monitoring` | Metrics, logs, alerts, dashboards | CloudWatch / Cloud Monitoring / Azure Monitor / OCI Monitoring |
| `secrets` | Secret management | Secrets Manager / Secret Manager / Key Vault / Vault |
## Remote State
Each provider is configured to use cloud-native remote state:
| Provider | Backend | Bucket |
|---|---|---|
| AWS | S3 + DynamoDB locking | `agent-monitor-tfstate-{account_id}` |
| GCP | GCS | `agent-monitor-tfstate-{project_id}` |
| Azure | Azure Blob Storage | `agentmonitortfstate` |
| OCI | OCI Object Storage | `agent-monitor-tfstate` |
## Environment Sizing
| Resource | Dev | Staging | Production |
|---|---|---|---|
| Replicas | 1 | 2 | 3 (auto-scale to 10) |
| CPU | 256 | 512 | 1024 |
| Memory | 512 MB | 1 GB | 2 GB |
| Storage | 5 GB | 10 GB | 50 GB (encrypted) |
| Multi-AZ | No | Yes | Yes |
| Monitoring | Basic | Standard | Full + alerts |