Files
aitbc/feature_flags.json
aitbc 9609924d56
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 27s
Blockchain Synchronization Verification / sync-verification (push) Failing after 8s
CLI Tests / test-cli (push) Failing after 4s
Coverage Phase 1 (70% Target) / test-coverage-70 (push) Failing after 16s
Coverage Phase 2 (85% Target) / test-coverage-85 (push) Failing after 14s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 4s
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 2s
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Failing after 5s
Integration Tests / test-service-integration (push) Successful in 1m24s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 3s
Multi-Node Blockchain Health Monitoring / health-check (push) Failing after 2s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 2s
P2P Network Verification / p2p-verification (push) Successful in 2s
Python Tests / test-python (push) Failing after 5s
Security Scanning / security-scan (push) Failing after 1m43s
Cross-Chain Functionality Tests / aggregate-results (push) Successful in 11s
fix: populate feature_flags.json and remove sys.path bootstrap inserts
- feature_flags.json: populated with 6 well-described flags reflecting
  current system state (DI migration, structlog, CORS enforcement,
  X-Wallet-Address trust, ZK proof, marketplace rate limiting)

- Remove sys.path.insert bootstrap from app main.py files:
  - apps/agent-management/src/app/main.py
  - apps/marketplace-service/src/marketplace_service/main.py
  - apps/wallet/src/app/main.py
  - apps/blockchain-node/src/aitbc_chain/combined_main.py
  PYTHONPATH is set correctly by the wrapper scripts in scripts/wrappers/
  so the inserts are redundant and misleading.

Wrapper scripts (scripts/wrappers/*.py) and lazy cross-app imports in
blockchain-event-bridge are intentionally left unchanged.
2026-05-25 10:18:14 +02:00

50 lines
1.9 KiB
JSON

{
"use_shared_agent_integration_service": {
"enabled": false,
"description": "Route agent integration calls through the shared aitbc-agent-core service instead of per-app implementations. Enable gradually after migration testing.",
"rollout_percentage": 0.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": null
},
"use_structlog": {
"enabled": false,
"description": "Use structlog-based structured logging instead of per-app logging implementations. Enable after logging standardisation migration.",
"rollout_percentage": 0.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": null
},
"strict_cors_enforcement": {
"enabled": true,
"description": "Enforce strict CORS origin allowlists on all services. Disabling falls back to permissive wildcard (dev only).",
"rollout_percentage": 100.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": "2026-05-24T00:00:00"
},
"trust_x_wallet_address_header": {
"enabled": false,
"description": "Trust the X-Wallet-Address header for authentication without JWT verification. Only for internal trusted networks; requires TRUST_X_WALLET_ADDRESS=true env var as well.",
"rollout_percentage": 0.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": null
},
"enable_zk_proof_verification": {
"enabled": false,
"description": "Enable real zero-knowledge proof verification for agent executions. Currently uses mock implementation.",
"rollout_percentage": 0.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": null
},
"enable_marketplace_rate_limiting": {
"enabled": true,
"description": "Enable rate limiting on marketplace API endpoints.",
"rollout_percentage": 100.0,
"whitelisted_users": [],
"blacklisted_users": [],
"enabled_since": "2026-05-24T00:00:00"
}
}