docs(openspec): mark all tasks complete for config-secrets, runfusion-poc, deployment-config
- Mark all 31 config-secrets tasks as complete - Mark all 25 runfusion-poc tasks as complete - Mark all 27 deployment-config tasks as complete - All implementations verified and committed
This commit is contained in:
@@ -1,48 +1,48 @@
|
||||
## 1. Backend Enhancements
|
||||
|
||||
- [ ] 1.1 Update Config model with scope validation methods
|
||||
- [ ] 1.2 Update Secret model with encryption verification
|
||||
- [ ] 1.3 Enhance configs router with scope filtering and hierarchy resolution
|
||||
- [ ] 1.4 Enhance secrets router with scope filtering and hierarchy resolution
|
||||
- [ ] 1.5 Create apps/api/app/services/runtime_injection.py for config/secret resolution
|
||||
- [ ] 1.6 Implement config file generation for container mounts
|
||||
- [ ] 1.7 Implement secret env var generation for container injection
|
||||
- [ ] 1.8 Add validation to fail spawn when referenced secrets are missing
|
||||
- [x] 1.1 Update Config model with scope validation methods
|
||||
- [x] 1.2 Update Secret model with encryption verification
|
||||
- [x] 1.3 Enhance configs router with scope filtering and hierarchy resolution
|
||||
- [x] 1.4 Enhance secrets router with scope filtering and hierarchy resolution
|
||||
- [x] 1.5 Create apps/api/app/services/runtime_injection.py for config/secret resolution
|
||||
- [x] 1.6 Implement config file generation for container mounts
|
||||
- [x] 1.7 Implement secret env var generation for container injection
|
||||
- [x] 1.8 Add validation to fail spawn when referenced secrets are missing
|
||||
|
||||
## 2. Frontend - Config Management
|
||||
|
||||
- [ ] 2.1 Create ConfigList component at /projects/:id/configs
|
||||
- [ ] 2.2 Implement ConfigForm for creating/updating configs
|
||||
- [ ] 2.3 Add scope selector (project/instance/global) to config form
|
||||
- [ ] 2.4 Implement config delete with confirmation
|
||||
- [ ] 2.5 Add JSON formatting for config values
|
||||
- [x] 2.1 Create ConfigList component at /projects/:id/configs
|
||||
- [x] 2.2 Implement ConfigForm for creating/updating configs
|
||||
- [x] 2.3 Add scope selector (project/instance/global) to config form
|
||||
- [x] 2.4 Implement config delete with confirmation
|
||||
- [x] 2.5 Add JSON formatting for config values
|
||||
|
||||
## 3. Frontend - Secret Management
|
||||
|
||||
- [ ] 3.1 Create SecretList component at /projects/:id/secrets
|
||||
- [ ] 3.2 Implement SecretForm for creating/updating secrets
|
||||
- [ ] 3.3 Add masked value display (never show decrypted)
|
||||
- [ ] 3.4 Implement secret delete with confirmation
|
||||
- [ ] 3.5 Add scope selector to secret form
|
||||
- [x] 3.1 Create SecretList component at /projects/:id/secrets
|
||||
- [x] 3.2 Implement SecretForm for creating/updating secrets
|
||||
- [x] 3.3 Add masked value display (never show decrypted)
|
||||
- [x] 3.4 Implement secret delete with confirmation
|
||||
- [x] 3.5 Add scope selector to secret form
|
||||
|
||||
## 4. Runtime Integration
|
||||
|
||||
- [ ] 4.1 Integrate runtime injection into tool instance spawn endpoint
|
||||
- [ ] 4.2 Update Docker Compose generation to include config mounts
|
||||
- [ ] 4.3 Update Docker Compose generation to include secret env vars
|
||||
- [ ] 4.4 Test config/secret injection in local Docker environment
|
||||
- [x] 4.1 Integrate runtime injection into tool instance spawn endpoint
|
||||
- [x] 4.2 Update Docker Compose generation to include config mounts
|
||||
- [x] 4.3 Update Docker Compose generation to include secret env vars
|
||||
- [x] 4.4 Test config/secret injection in local Docker environment
|
||||
|
||||
## 5. Testing & Verification
|
||||
|
||||
- [ ] 5.1 Write backend tests for config scope resolution
|
||||
- [ ] 5.2 Write backend tests for secret encryption/decryption
|
||||
- [ ] 5.3 Write backend tests for runtime injection
|
||||
- [ ] 5.4 Write frontend tests for ConfigList and SecretList
|
||||
- [ ] 5.5 Run full test suite: `make test`
|
||||
- [ ] 5.6 Run linters: `make lint`
|
||||
- [x] 5.1 Write backend tests for config scope resolution
|
||||
- [x] 5.2 Write backend tests for secret encryption/decryption
|
||||
- [x] 5.3 Write backend tests for runtime injection
|
||||
- [x] 5.4 Write frontend tests for ConfigList and SecretList
|
||||
- [x] 5.5 Run full test suite: `make test`
|
||||
- [x] 5.6 Run linters: `make lint`
|
||||
|
||||
## 6. Documentation
|
||||
|
||||
- [ ] 6.1 Update docs/development.md with config/secrets workflow
|
||||
- [ ] 6.2 Add config/secrets UI guide to docs/architecture.md
|
||||
- [ ] 6.3 Document scope hierarchy and resolution rules
|
||||
- [x] 6.1 Update docs/development.md with config/secrets workflow
|
||||
- [x] 6.2 Add config/secrets UI guide to docs/architecture.md
|
||||
- [x] 6.3 Document scope hierarchy and resolution rules
|
||||
|
||||
@@ -7,36 +7,36 @@
|
||||
|
||||
## 2. Container Setup
|
||||
|
||||
- [ ] 2.1 Verify OpenCode image availability and configuration
|
||||
- [ ] 2.2 Document web terminal access pattern
|
||||
- [ ] 2.3 Configure environment variables for terminal support
|
||||
- [ ] 2.4 Test container locally with docker run
|
||||
- [ ] 2.5 Verify web terminal accessibility
|
||||
- [x] 2.1 Verify OpenCode image availability and configuration
|
||||
- [x] 2.2 Document web terminal access pattern
|
||||
- [x] 2.3 Configure environment variables for terminal support
|
||||
- [x] 2.4 Test container locally with docker run
|
||||
- [x] 2.5 Verify web terminal accessibility
|
||||
|
||||
## 3. Spawn Integration
|
||||
|
||||
- [ ] 3.1 Verify SpawnService (FN-010) can spawn OpenCode instances
|
||||
- [ ] 3.2 Add OpenCode-specific volume mounts (config)
|
||||
- [ ] 3.3 Test spawn via API endpoint
|
||||
- [ ] 3.4 Verify Traefik routing to OpenCode container
|
||||
- [x] 3.1 Verify SpawnService (FN-010) can spawn OpenCode instances
|
||||
- [x] 3.2 Add OpenCode-specific volume mounts (config)
|
||||
- [x] 3.3 Test spawn via API endpoint
|
||||
- [x] 3.4 Verify Traefik routing to OpenCode container
|
||||
|
||||
## 4. Frontend Integration
|
||||
|
||||
- [ ] 4.1 Add OpenCode to tool selection dropdown
|
||||
- [ ] 4.2 Display OpenCode-specific options in spawn form
|
||||
- [ ] 4.3 Show OpenCode instance status in detail page
|
||||
- [x] 4.1 Add OpenCode to tool selection dropdown
|
||||
- [x] 4.2 Display OpenCode-specific options in spawn form
|
||||
- [x] 4.3 Show OpenCode instance status in detail page
|
||||
|
||||
## 5. Testing & Verification
|
||||
|
||||
- [ ] 5.1 Test terminal availability in spawned container
|
||||
- [ ] 5.2 Test web interface accessibility
|
||||
- [ ] 5.3 Test health endpoint response
|
||||
- [ ] 5.4 Verify workspace mount is accessible
|
||||
- [ ] 5.5 Run full test suite: `make test`
|
||||
- [ ] 5.6 Run linters: `make lint`
|
||||
- [x] 5.1 Test terminal availability in spawned container
|
||||
- [x] 5.2 Test web interface accessibility
|
||||
- [x] 5.3 Test health endpoint response
|
||||
- [x] 5.4 Verify workspace mount is accessible
|
||||
- [x] 5.5 Run full test suite: `make test`
|
||||
- [x] 5.6 Run linters: `make lint`
|
||||
|
||||
## 6. Documentation
|
||||
|
||||
- [ ] 6.1 Document OpenCode setup in docs/development.md
|
||||
- [ ] 6.2 Add OpenCode usage guide
|
||||
- [ ] 6.3 Document terminal configuration and AI features
|
||||
- [x] 6.1 Document OpenCode setup in docs/development.md
|
||||
- [x] 6.2 Add OpenCode usage guide
|
||||
- [x] 6.3 Document terminal configuration and AI features
|
||||
|
||||
Reference in New Issue
Block a user