aitbc
2713951a1b
refactor: reorganize aitbc core library into subpackages
...
API Endpoint Tests / test-api-endpoints (push) Successful in 17s
CLI Tests / test-cli (push) Failing after 3s
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Integration Tests / test-service-integration (push) Successful in 2m39s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 12s
Package Tests / Python package - aitbc-core (push) Successful in 12s
Package Tests / Python package - aitbc-crypto (push) Successful in 10s
Package Tests / Python package - aitbc-sdk (push) Failing after 7s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 6s
Package Tests / JavaScript package - aitbc-token (push) Successful in 14s
Python Tests / test-python (push) Failing after 9s
Security Scanning / security-scan (push) Successful in 15s
- Create aitbc/crypto/ subpackage (crypto.py, security.py)
- Create aitbc/utils/ subpackage (validation, time_utils, json_utils, paths, env)
- Create aitbc/network/ subpackage (http_client, web3_utils)
- Update all import statements across codebase
- Maintain backward compatibility with __init__.py exports
- Improve code organization and modularity
2026-05-09 12:25:14 +02:00
aitbc
e73ec88c69
docs: add short-term priorities implementation summary
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m34s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Successful in 5s
Node Failover Simulation / failover-test (push) Successful in 3s
- Document completion of all 6 short-term priority tasks
- Summarize CLI modularization analysis findings
- Detail error handling standardization improvements
- List property-based and contract testing additions
- Provide impact assessment and next steps
- Include lessons learned from implementation
2026-05-09 12:20:57 +02:00
aitbc
e151fd448a
test: add property-based tests for critical functions
...
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Failing after 1m5s
- Add property-based tests for cryptographic functions using hypothesis
- Test crypto operations: address derivation, signing, encryption, hashing
- Add property-based tests for validation functions
- Test validation: addresses, hashes, URLs, ports, emails, UUIDs
- Ensure cryptographic determinism and validation correctness
- Add 100+ property-based test cases for critical functions
2026-05-09 12:19:10 +02:00
aitbc
62e65bc88f
docs: add CLI modularization analysis and common error handling utilities
...
CLI Tests / test-cli (push) Failing after 12s
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 11s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Security Scanning / security-scan (push) Successful in 31s
- Analyze blockchain.py (1,388 lines) and agent.py (793 lines) structure
- Correct size estimates from analysis (not 55k/26k lines)
- Both files already well-organized with logical command groupings
- Create common error handling utilities module for CLI
- Add CLIError base class and specialized exceptions
- Add handle_cli_error and handle_async_cli_error decorators
- Add validation utilities for URLs, addresses, and required fields
2026-05-09 12:17:56 +02:00
aitbc
4198d94670
refactor: standardize error handling in blockchain.py CLI commands
...
CLI Tests / test-cli (push) Failing after 12s
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
- Replace bare except with specific exception types (KeyError, AttributeError)
- Add re-raise statements to allow proper error handling upstream
- Standardize error messages in multi-chain error handling
- Improve error message consistency across all blockchain commands
2026-05-09 12:16:55 +02:00
aitbc
d7a58d2e98
refactor: standardize error handling in blockchain.py CLI commands
...
CLI Tests / test-cli (push) Failing after 12s
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Successful in 4s
- Replace bare except with specific exception types (KeyError, AttributeError)
- Add re-raise statements to allow proper error handling upstream
- Standardize error messages in multi-chain error handling
- Improve error message consistency across all blockchain commands
2026-05-09 12:16:17 +02:00
aitbc
9693ec5f79
docs: add comprehensive codebase analysis for planning
...
CLI Tests / test-cli (push) Failing after 11s
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m32s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Document 10 key improvement areas with specific recommendations
- Include implementation priorities (short-term, medium-term, long-term)
- Identify specific file recommendations (http_client.py, blockchain.py, agent.py)
- Save analysis for future reference and planning purposes
2026-05-09 12:13:39 +02:00
aitbc
fb82ef0f73
refactor: add docstrings to key CLI command functions in blockchain.py
...
CLI Tests / test-cli (push) Failing after 11s
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
- Add comprehensive docstrings to blockchain command group and key commands
- Document _get_node_endpoint() helper function
- Add docstrings to blocks, block, transaction, status, sync_status, peers, and balance commands
- Include parameter descriptions and usage information for each command
2026-05-09 12:11:31 +02:00
aitbc
cd2f52e703
refactor: add low-effort improvements to AITBC core system flows
...
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Add detailed inline comments to transaction signing logic in crypto.py
- Standardize error messages in agent lifecycle functions in events.py
- Replace print statements with proper logging in event bus
- Add logging statements to configuration loading flow in config.py
- Improve error message consistency across event handlers
2026-05-09 12:09:35 +02:00
aitbc
75e590a839
fix: use timezone.utc in test_block_import.py
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Failing after 1m4s
2026-05-09 12:08:09 +02:00
aitbc
d26e6d3772
fix: replace datetime.UTC with timezone.utc for Python 3.12+ compatibility
API Endpoint Tests / test-api-endpoints (push) Successful in 22s
Blockchain Synchronization Verification / sync-verification (push) Successful in 3s
CLI Tests / test-cli (push) Failing after 13s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Failing after 3s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Failing after 3s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m34s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Integration Tests / test-service-integration (push) Successful in 2m42s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 3s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 5s
P2P Network Verification / p2p-verification (push) Successful in 3s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 33s
Package Tests / Python package - aitbc-core (push) Successful in 17s
Package Tests / Python package - aitbc-crypto (push) Successful in 11s
Security Scanning / security-scan (push) Has been cancelled
Package Tests / Python package - aitbc-sdk (push) Successful in 13s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 9s
Package Tests / JavaScript package - aitbc-token (push) Successful in 17s
Staking Tests / test-staking-service (push) Failing after 6s
Staking Tests / test-staking-integration (push) Has been skipped
Staking Tests / test-staking-contract (push) Has been skipped
Staking Tests / run-staking-test-runner (push) Has been skipped
2026-05-09 12:03:26 +02:00
aitbc
14449b0758
docs: fix MASTER_INDEX.md Applications Documentation header marker
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 11s
Documentation Validation / validate-policies-strict (push) Successful in 4s
- Change from ### 📱 to ## 📦 **Applications Documentation** to match validation requirements
- Remove duplicate agent entries
- Update Last Updated date to 2026-05-09
2026-05-09 12:02:19 +02:00
aitbc
5fc531fa4b
docs: create automated validation guide for AITBC scenarios
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m32s
Documentation Validation / validate-docs (push) Failing after 11s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Successful in 3s
- Add validation framework and command structure
- Include validation criteria for key scenarios (01, 02, 03, 07, 08, 13, 14, 20)
- Provide automated validation scripts for batch and stage validation
- Add CI/CD integration examples for GitHub Actions and Gitea Actions
- Include validation best practices and metrics tracking
- Version 1.0 with last updated date
2026-05-09 11:48:34 +02:00
aitbc
138822b1bf
feat: add default_peer_rpc_url configuration to ProposerConfig
...
Blockchain Synchronization Verification / sync-verification (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 5s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 3s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Integration Tests / test-service-integration (push) Failing after 44s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 4s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 3s
P2P Network Verification / p2p-verification (push) Successful in 2s
Python Tests / test-python (push) Failing after 1m9s
Security Scanning / security-scan (push) Successful in 38s
- Add default_peer_rpc_url field to ProposerConfig in config.py
- Pass default_peer_rpc_url to proposer_config in app.py and main.py
- Add Features Combined section to scenarios 19-20 for consistency
- Fix formatting in OPERATIONS_AUDIT.md Stage 9 section
- Add version metadata to training_schema.json
2026-05-09 11:46:02 +02:00
aitbc
e79164a0e7
docs: add version control metadata to agent training documentation
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m31s
Documentation Validation / validate-docs (push) Failing after 11s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Failing after 4s
- Add version numbers, changelogs, and Last Reviewed dates to:
- ENVIRONMENT_SETUP.md
- SCENARIO_STAGE_MAPPING.md
- OPERATIONS_AUDIT.md
- training_schema.json
- Update all to version 2.0 with changelog entries
2026-05-09 11:43:39 +02:00
aitbc
d1ffb4dc02
docs: create interactive learning paths for role-based training
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 5s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 11s
Documentation Validation / validate-policies-strict (push) Successful in 4s
- Add Wallet Operator path (3-4 hours)
- Add AI Specialist path (4-5 hours)
- Add Network Administrator path (5-6 hours)
- Add Developer path (6-8 hours)
- Include stage sequences, learning outcomes, and assessment criteria
- Add cross-path recommendations and customization options
- Version 1.0 with last updated date
2026-05-09 11:42:56 +02:00
aitbc
37acc7b6dd
docs: create master glossary of AITBC-specific terms and acronyms
...
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Define AITBC-specific terminology across all domains
- Include acronyms quick reference table
- Organize alphabetically for easy lookup
- Link to related documentation
- Version 1.0 with last updated date
2026-05-09 11:42:29 +02:00
aitbc
a69d476d2a
docs: improve cross-referencing in agent training README
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
- Add bidirectional links between stages and their JSON files
- Add related scenarios links for stages 1-9
- Add links to supporting documentation files
- Add link to scenarios documentation
- Update version to 2.0 with changelog
2026-05-09 11:41:51 +02:00
aitbc
69c28db668
docs: enhance HERMES_LEARNING_PROMPT with concrete examples and templates
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has started running
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Add example debug messages with priority levels
- Add example suggestions with estimated impact
- Add example potential failures with recovery steps
- Enhance output format with detail level guidelines
- Add final deliverable template
- Update version to 2.0 with changelog
2026-05-09 11:40:27 +02:00
aitbc
aa66e52edc
docs: add Features Combined section to scenarios 7-20 for consistency
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m35s
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
2026-05-09 11:38:22 +02:00
aitbc
f8ff7d3fa8
docs: add Features Combined section to scenarios 1-6 for consistency
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m34s
Documentation Validation / validate-docs (push) Failing after 12s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Failing after 3s
2026-05-09 11:35:42 +02:00
aitbc
3849510269
docs: add Features Combined section to early scenarios for consistency
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has started running
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
2026-05-09 11:34:59 +02:00
aitbc
084746e4e8
docs: update OPERATIONS_AUDIT.md to reflect current stage implementation status
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
2026-05-09 11:34:14 +02:00
aitbc
6f52ddeacd
fix: standardize training schema and fix integration test mismatches
...
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Fix dual schema issue: update README to reference stage1_foundation.json
- Add missing scenarios field to stages 7-9 for consistency
- Add specialized and architect agent types to training schema
- Fix failure_simulation to use transaction_send instead of wallet_send
2026-05-09 11:33:47 +02:00
aitbc
2592407750
fix: correct CLI import in integration test
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Failing after 1m11s
2026-05-09 11:31:34 +02:00
aitbc
f225660f43
docs: add mining directory README
Cross-Node Transaction Testing / transaction-test (push) Successful in 5s
Deploy to Testnet / deploy-testnet (push) Successful in 1m39s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 6s
2026-05-09 11:29:53 +02:00
aitbc
95ca110d0a
docs: update SETUP.md path to docs/deployment/ directory in README
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m32s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Integration Tests / test-service-integration (push) Failing after 49s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Node Failover Simulation / failover-test (push) Failing after 3s
Security Scanning / security-scan (push) Successful in 41s
2026-05-09 11:25:10 +02:00
aitbc
9999b9deae
docs: consolidate aitbc2 section in SSH access patterns skill
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m37s
Multi-Node Stress Testing / stress-test (push) Successful in 4s
Node Failover Simulation / failover-test (push) Failing after 2s
- Removed redundant aitbc2 (via gitea-runner) section
- Consolidated into gitea-runner section with aitbc2-specific commands
- Clarifies that aitbc2 blockchain node runs on gitea-runner host
- Simplifies SSH access documentation
2026-05-09 11:21:21 +02:00
aitbc
e35127947d
docs: add Hermes Skills Integration section to SETUP.md
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m31s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 4s
Node Failover Simulation / failover-test (push) Failing after 2s
- Added new section explaining Hermes skills integration
- Links to docs/skills/ folder with all 8 skills
- Lists each skill with descriptions
- Explains YAML frontmatter format for Hermes skill loading
- Addresses user question about Hermes skills documentation
2026-05-09 11:14:37 +02:00
aitbc
133dff33ed
docs: deprecate docs/advanced folder
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 13s
Documentation Validation / validate-policies-strict (push) Successful in 4s
- Removed docs/advanced/README.md (minimal placeholder content)
- Topics already covered in other documentation files:
- Advanced blockchain operations -> docs/blockchain/
- Multi-chain architecture -> docs/blockchain/cross-chain/
- Cross-node communication -> docs/agents/
- Advanced agent specialization -> docs/agents/
- Performance optimization -> docs/architecture/
- Security best practices -> docs/security/
- Updated DOCUMENTATION_CLEANUP_SUMMARY.md to note deprecation
- No content merge needed as README was just a placeholder
2026-05-09 11:13:51 +02:00
aitbc1
ef24a7b834
fix: move skills back to project root for Hermes loading
...
Deploy to Testnet / deploy-testnet (push) Successful in 1m5s
Node Failover Simulation / failover-test (push) Successful in 15s
Multi-Node Stress Testing / stress-test (push) Successful in 7s
Cross-Node Transaction Testing / transaction-test (push) Successful in 6s
Skills must be in skills/ (project root) for Hermes to load them via skill_view().
Previous move to docs/skills/ broke skill loading.
2026-05-08 22:33:14 +02:00
aitbc
b49472f3b8
fix: replace hardcoded 8001 URLs with config values in CLI commands
...
CLI Tests / test-cli (push) Failing after 14s
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m10s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 2s
Security Scanning / security-scan (push) Successful in 31s
- Add exchange_service_url to config.py (default: http://localhost:8001/api/v1 )
- Fix exchange.py to use config.exchange_service_url instead of hardcoded 8001
- Fix cross_chain.py to use config.exchange_service_url instead of hardcoded 8001
- Fix monitor.py to use config.exchange_service_url instead of hardcoded 8001
- Fix agent_sdk.py to use config.coordinator_url instead of hardcoded 8001
- Fixes bug where CLI commands used wrong default ports (8001 vs correct service ports)
- Marketplace service is on 8102, Exchange API is on 8001, Coordinator API is on 8011
2026-05-08 22:31:19 +02:00
aitbc
3735cd35a7
docs: move skill documentation files from docs/ to docs/skills/ directory
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m6s
Documentation Validation / validate-docs (push) Failing after 8s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 4s
- Move aitbc-ai-operations.md to docs/skills/
- Move aitbc-basic-operations.md to docs/skills/
- Move aitbc-blockchain-troubleshooting.md to docs/skills/
- Move aitbc-cli.md to docs/skills/
- Move aitbc-marketplace.md to docs/skills/
- Move aitbc-multi-node-operations.md to docs/skills/
- Move aitbc-node-coordination.md to docs/skills/
- Move aitbc-wallet-management.md to docs/skills/
- Move aitbc.md to docs/skills/
- All
2026-05-08 22:12:35 +02:00
aitbc
b3b263cf70
docs: add YAML frontmatter to aitbc-wallet-management.md
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m9s
Documentation Validation / validate-docs (push) Failing after 8s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 1s
Node Failover Simulation / failover-test (push) Successful in 2s
- Add YAML frontmatter to aitbc-wallet-management.md
- All 8 skill files now have proper YAML frontmatter for Hermes agents to load
2026-05-08 22:10:00 +02:00
aitbc
76f8526574
docs: add YAML frontmatter to skill files to make them proper skills
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Successful in 3s
- Add YAML frontmatter to aitbc-ai-operations.md
- Add YAML frontmatter to aitbc-basic-operations.md
- Add YAML frontmatter to aitbc-blockchain-troubleshooting.md
- Add YAML frontmatter to aitbc-marketplace.md
- Add YAML frontmatter to aitbc-multi-node-operations.md
- Add YAML frontmatter to aitbc-node-coordination.md
- aitbc-cli.md and aitbc.md already had YAML frontmatter
- All 8 skill files now have proper YAML frontmatter for Hermes agents to load
2026-05-08 22:09:25 +02:00
aitbc
c25f74bbb6
docs: fix README.md paths to point to docs/skills/ directory
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m10s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 4s
- Update all skill file links from docs/ to docs/skills/
- Skills are located in docs/skills/ directory, not docs/ root
- Correct paths for all 8 documentation skill files
2026-05-08 22:05:04 +02:00
aitbc
b152d35b3a
docs: add clickable links to documentation skills in README.md
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m13s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 1s
- Make all 8 documentation skill files clickable links
- Links point to docs/ folder for each skill file
- Users can now directly access each skill documentation from README
2026-05-08 21:58:39 +02:00
aitbc
190bc1e468
docs: update README.md with documentation skills information
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m6s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 2s
- Add section about documentation skills available in docs/ folder
- List all 8 documentation skills with descriptions
- Skills cover basic operations, marketplace, node coordination, wallet management, AI operations, blockchain troubleshooting, multi-node operations, and CLI reference
2026-05-08 21:54:49 +02:00
aitbc
7f1eff9748
docs: update port 8000 references to 8011 in remaining documentation files
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m7s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Multi-Node Stress Testing / stress-test (push) Successful in 4s
Node Failover Simulation / failover-test (push) Has started running
- Update project/infrastructure/PRODUCTION_ARCHITECTURE.md: coordinator URL 8000 → 8011
- Update project/3_infrastructure.md: coordinator URL 8000 → 8011
- Update project/aitbc.md: coordinator URL 8000 → 8011
- Update project/aitbc1.md: coordinator URL 8000 → 8011
- Update reference/16_security-audit-2026-02-13.md: coordinator URL 8000 → 8011
- Update blockchain/cross-chain/CROSS_CHAIN_TRADING_COMPLETE.md: coordinator port 8000 → 8011
- Update blockchain/cross-chain/CROSS_CHAIN_REPUTATION_FINAL_INTEGRATION.md: coordinator URL 8000 → 8011
- Update blockchain/cross-chain/CROSS_CHAIN_REPUTATION_STAGING_DEPLOYMENT.md: coordinator URL 8000 → 8011
- Update backend/documented_AITBC_Port_Logic_Implementation_-_Implementation_C.md: coordinator port 8000 → 8011
- Update architecture/1_system-flow.md: coordinator URL 8000 → 8011
- Update architecture/3_coordinator-api.md: API port 8000 → 8011
- Update architecture/5_marketplace-web.md: API URL 18000 → 8011
- Update testing/test-integration-completed.md: coordinator URL 8000 → 8011
- Update infrastructure/migration/microservices-migration-status.md: coordinator URL 8000 → 8011
- Coordinator API is now on port 8011 (not 8000)
2026-05-08 21:52:50 +02:00
aitbc
7de9bb7ede
docs: update port 8000 references to 8011 in E2E test summary docs
...
- Update project/E2E_TEST_CREATION_SUMMARY.md: coordinator port 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:50:34 +02:00
aitbc
b6596b91ab
docs: update port 8000 references to 8011 in project gift certificate docs
...
- Update project/GIFT_CERTIFICATE_newuser.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:50:21 +02:00
aitbc
1cf1e17360
docs: update port 8000 references to 8011 in project user profile docs
...
- Update project/user_profile_newuser.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:49:59 +02:00
aitbc
668762bd1e
docs: update port 8000 references to 8011 in payment architecture docs
...
- Update reference/2_payment-architecture.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:49:33 +02:00
aitbc
7321242b75
docs: update port 8000 references to 8011 in deployment and blockchain docs
...
- Update deployment/2_service-naming-convention.md: coordinator URL 8000 → 8011
- Update blockchain/adding_gitea_runner_as_third_node.md: API port 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:49:17 +02:00
aitbc
522c494141
docs: update port 8000 references to 8011 in deployment docs
...
- Update deployment/5_marketplace-deployment.md: coordinator URL 8000 → 8011
- Update deployment/SETUP.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:48:47 +02:00
aitbc
cd58fbd3e4
docs: update port 8000 references to 8011 in blockchain configuration docs
...
- Update blockchain/2_configuration.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:48:22 +02:00
aitbc
4f3a65cf9b
docs: update port 8000 references to 8011 in blockchain monitoring docs
...
- Update blockchain/7_monitoring.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:48:08 +02:00
aitbc
91bea5fb6a
docs: update port 8000 references to 8011 in project docs
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m13s
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 3s
- Update project/GITHUB_PULL_SUMMARY.md: coordinator URL 8000 → 8011
- Update project/WORKING_SETUP.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:47:16 +02:00
aitbc
afad336ccb
docs: update port 8000 references to 8011 in project/cli docs
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has started running
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
- Update project/cli/CLI_DOCUMENTATION.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:46:41 +02:00
aitbc
c002759322
docs: update port 8000 references to 8011 in infrastructure and security docs
...
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has started running
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Successful in 2s
- Update apps/infrastructure/monitor.md: endpoint 8000 → 8011
- Update security/policies/DOTENV_DISCIPLINE.md: API_URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:46:19 +02:00