Commit Graph

106 Commits

Author SHA1 Message Date
oib
8ca8fa041d feat: recreate AgentServiceMarketplace.sol based on docs 2026-02-27 22:56:13 +01:00
oib
501676ff93 feat: recreate AgentWallet.sol based on docs 2026-02-27 22:54:37 +01:00
oib
d152044c6f chore: upgrade package.json engines to Node >=22.22.0 across all packages 2026-02-27 22:48:30 +01:00
oib
864ef4343e refactor(contracts): remove deprecated AIPowerRental contract in favor of bounty system
- Delete AIPowerRental.sol (566 lines) - replaced by AgentBounty.sol
- Remove rental agreement system with provider/consumer model
- Remove performance metrics and SLA tracking
- Remove dispute resolution mechanism
- Remove ZK-proof verification for performance
- Remove provider/consumer authorization system
- Bounty system provides superior developer incentive structure
2026-02-27 21:46:54 +01:00
oib
a477681c4b feat(developer-ecosystem): implement bounty and staking system with ZK-proof integration
Phase 1 Implementation Complete:
- AgentBounty.sol: Automated bounty board with ZK-proof verification
- AgentStaking.sol: Reputation-based yield farming with dynamic APY
- BountyIntegration.sol: Cross-contract event handling and auto-verification
- Database models: Complete bounty, staking, and ecosystem metrics schemas
- REST APIs: Full bounty and staking management endpoints
- Services: Business logic for bounty creation, verification, and staking operations
- Ecosystem dashboard: Analytics and metrics tracking system

Key Features:
- Multi-tier bounty system (Bronze, Silver, Gold, Platinum)
- Performance-based APY calculation with reputation multipliers
- ZK-proof integration with PerformanceVerifier.sol
- Automatic bounty completion detection
- Comprehensive analytics dashboard
- Risk assessment and leaderboards
- Real-time metrics and predictions

Security Features:
- Reentrancy protection on all contracts
- Role-based access control
- Dispute resolution mechanism
- Early unbonding penalties
- Platform fee collection

Economic Model:
- Creation fees: 0.5%
- Success fees: 2%
- Platform fees: 1%
- Staking APY: 5-20% based on performance
- Dispute fees: 0.1%
2026-02-27 17:51:23 +01:00
oib
27e836bf3f refactor(coordinator): standardize database path to follow blockchain-node pattern
- Change coordinator database from /opt/data/coordinator.db to ./data/coordinator.db
- Update config.py to use relative path consistent with blockchain-node
- Update deployment scripts to use /opt/coordinator-api/data/coordinator.db
- Add data directory creation in init_db() for consistency
- Update .env.example files to reflect new standard
- Maintain backward compatibility for production deployment
2026-02-27 17:32:00 +01:00
oib
d023654e74 refactor(theme): remove light theme and enforce dark mode across all apps 2026-02-27 14:00:33 +01:00
oib
521f7ec04a fix(website): fix reference error on dark mode toggle button by standardizing classes and removing inline onclick 2026-02-27 13:44:14 +01:00
oib
cb6896823e fix(website): fix javascript syntax error by removing dangling brackets in main.js 2026-02-27 13:32:04 +01:00
oib
c67e2370c9 fix(website): remove invalid escape sequence syntax error in web-vitals.js 2026-02-27 13:18:56 +01:00
oib
01bdbef1e4 fix(website): synchronize theme state across all apps and prevent toggle conflicts 2026-02-27 13:15:01 +01:00
oib
c2e1b1228c fix(website): remove dead telemetry POST request from web-vitals.js to prevent 404 console errors 2026-02-27 13:05:28 +01:00
oib
e5092f2e83 fix(exchange): remove duplicate initializeTheme call and fix broken api route references 2026-02-27 12:55:26 +01:00
oib
e6094c9757 fix(website): inject font-awesome css to sub-apps to render the header cube logo 2026-02-27 12:42:10 +01:00
oib
9e70134494 fix(website): lock max-width to 1160px globally for header and containers 2026-02-27 12:36:51 +01:00
oib
39bc288a4d fix(website): remove duplicate marketplace link from header actions on landing page 2026-02-27 12:29:16 +01:00
oib
37bdc7d034 fix(website): lock global header height to 90px and remove duplicate marketplace nav button 2026-02-27 12:25:21 +01:00
oib
2b6ac4a0bb fix(website): ensure data-theme='dark' is present on html tags across all apps for correct header rendering 2026-02-27 12:14:05 +01:00
oib
8587a9f2b5 fix(explorer): unify header and dark mode theme with global standard 2026-02-27 12:09:11 +01:00
oib
df726f9ccb fix(marketplace): resolve duplicate stats-grid element breaking stats rendering 2026-02-27 12:00:22 +01:00
oib
db63a008f4 fix(marketplace): unify header with global site header 2026-02-27 11:52:04 +01:00
oib
f3ab29a981 fix(exchange): unify header, match global theme, and fix broken API fallback/links 2026-02-27 11:48:41 +01:00
oib
5fd239e283 fix(website): use absolute paths for global header assets 2026-02-27 11:28:42 +01:00
oib
92e9b37f6d fix(website): standardize docs header and update terminology 2026-02-27 11:10:25 +01:00
oib
a12c6b274c fix(website): correct css path for docs index page 2026-02-27 11:01:00 +01:00
oib
b6cccda194 feat: optimize website for OpenClaw Agent focus 2026-02-27 10:57:10 +01:00
oib
c5af4819ff fix: change explorer port to 3001 and add systemd service configuration 2026-02-26 23:42:23 +01:00
oib
dd5c7f0e22 fix: resolve explorer transaction search, timestamp formatting, and optimize RPC total_count queries 2026-02-26 23:26:59 +01:00
oib
7bb2905cca Update database paths and fix foreign key references across coordinator API
- Change SQLite database path from `/home/oib/windsurf/aitbc/data/` to `/opt/data/`
- Fix foreign key references to use correct table names (users, wallets, gpu_registry)
- Replace governance router with new governance and community routers
- Add multi-modal RL router to main application
- Simplify DEPLOYMENT_READINESS_REPORT.md to focus on production deployment status
- Update governance router with decentralized DAO voting
2026-02-26 19:32:06 +01:00
oib
1e2ea0bb9d docs: enhance README with emojis and core features list 2026-02-26 19:25:04 +01:00
oib
efd358dfac docs: next milestone planning for OpenClaw Agent Economics 2026-02-26 19:22:16 +01:00
oib
88971a3216 docs: automated documentation update and phase 8 archiving 2026-02-26 19:17:53 +01:00
oib
825f157749 Update Python version requirements and fix compatibility issues
- Bump minimum Python version from 3.11 to 3.13 across all apps
- Add Python 3.11-3.13 test matrix to CLI workflow
- Document Python 3.11+ requirement in .env.example
- Fix Starlette Broadcast removal with in-process fallback implementation
- Add _InProcessBroadcast class for tests when Starlette Broadcast is unavailable
- Refactor API key validators to read live settings instead of cached values
- Update database models with explicit
2026-02-24 18:41:08 +01:00
oib
24b3a37733 Update documentation for completed enhanced services deployment
- Update 5_done.md with enhanced AI agent services deployment
- Mark Stage 20 as completed in roadmap.md with all achievements
- Update next milestone to reflect current completion status
- Mark advanced AI agents as completed with performance metrics
- Document 0.08s processing time and 94% accuracy achievements
- Update systemd integration and service deployment details
2026-02-24 18:27:27 +01:00
oib
d4001254ec Update .lycheeignore to exclude internal documentation links
- Exclude all internal documentation directories during restructuring
- Prevent link check failures during documentation migration
- Focus on external link validation only
2026-02-24 17:51:30 +01:00
oib
22ef6f56e2 Fix broken markdown links after documentation merge
- Update all docs/agents/ references to docs/11_agents/
- Fix internal links in agent documentation
- Resolve markdown link check failures
2026-02-24 17:49:52 +01:00
oib
c6b9c679b9 Fix UNIX glob pattern error in GitHub Actions
- Remove coordinator-api and blockchain-node publishing jobs
- These apps don't have proper setup.py files yet
- Keep only agent-sdk and explorer-web publishing
- Prevents glob pattern errors during build
2026-02-24 17:48:27 +01:00
oib
938ced2e27 Fix npm CI error in GitHub Actions
- Remove package-lock.json from gitignore to enable npm ci
- Add package-lock.json for explorer-web app
- Update publish-packages.yml workflow
2026-02-24 17:47:45 +01:00
oib
5c119c79ce Add release notes for v0.1.0 2026-02-24 17:45:35 +01:00
oib
1e4db1bada Release v0.1.0 - Early Testing Phase
- Agent-first architecture implementation
- Complete agent documentation and workflows
- GitHub Packages publishing infrastructure
- Debian 13 + Python 3.13 support
- NVIDIA GPU resource sharing capabilities
- Swarm intelligence coordination
- Zero-knowledge proof verification
- Automated onboarding and monitoring
2026-02-24 17:44:51 +01:00
oib
82bbe5cb54 docs: simplify README to focus on core value proposition and remove obsolete trade-exchange HTML
- Rewrite README overview to emphasize decentralized GPU marketplace concept over technical implementation details
- Condense architecture section from detailed component listing to high-level flow diagram
- Remove directory structure table and consolidate documentation links
- Streamline quick start section by removing redundant deployment/test instructions
- Delete unused `apps/trade-exchange/index
2026-02-22 21:55:44 +01:00
oib
6901e0084f docs/config/packages: add v0.1 release prep, security status, and SDK enhancements
- Add Stage 23 roadmap for v0.1 release preparation with PyPI/npm publishing, deployment automation, and security audit milestones
- Document competitive differentiators: zkML/FHE integration, hybrid TEE/ZK verification, on-chain model marketplace, and geo-low-latency matching
- Update security documentation with smart contract audit results (0 vulnerabilities, 35 OpenZeppelin warnings)
- Add security-first setup
2026-02-19 21:47:28 +01:00
oib
1073d7b61a docs: fix blockchain RPC port references and dead links
- Update blockchain RPC port from 8081 to 9080 across infrastructure docs
- Fix confidential transactions documentation cross-references
- Standardize "Blockchain Node RPC" naming in services table
2026-02-19 10:50:51 +01:00
Andreas Michael Fleckl
b735da9e98 Merge pull request #3 from oib/codex/analyze-codebase-and-suggest-improvements-exvc22
cli/docs/tests: harden config edit invocation and add YAML empty-export coverage
2026-02-17 16:25:07 +01:00
Andreas Michael Fleckl
c23c256249 Merge branch 'main' into codex/analyze-codebase-and-suggest-improvements-exvc22 2026-02-17 16:24:35 +01:00
Andreas Michael Fleckl
f1fa7768f3 cli/docs/tests: harden editor launch and refine docs/test coverage 2026-02-17 16:23:45 +01:00
Andreas Michael Fleckl
c41ec60ed7 Merge pull request #2 from oib/codex/analyze-codebase-and-suggest-improvements-6omr61
docs/tests: fix remaining dead links and add empty-config export test
2026-02-17 16:15:25 +01:00
Andreas Michael Fleckl
b28148f5ec Merge branch 'main' into codex/analyze-codebase-and-suggest-improvements-6omr61 2026-02-17 16:15:02 +01:00
Andreas Michael Fleckl
9c8ec21479 docs/tests: fix remaining dead links and add export empty-yaml test 2026-02-17 16:10:02 +01:00
Andreas Michael Fleckl
8748329598 Merge pull request #1 from oib/codex/analyze-codebase-and-suggest-improvements
docs: add codebase review task suggestions
2026-02-17 16:01:19 +01:00