{"id":33281514,"url":"https://github.com/devgrugold/ai-contract-wizard","last_synced_at":"2026-03-02T00:36:00.756Z","repository":{"id":303621987,"uuid":"912402034","full_name":"DevGruGold/ai-contract-wizard","owner":"DevGruGold","description":"Government Procurement Automation System powered by XMRT ecosystem and Eliza AI framework.","archived":false,"fork":false,"pushed_at":"2025-07-08T14:37:31.000Z","size":545,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T15:42:56.508Z","etag":null,"topics":["ai","blockchain","government","machine-learning","procurement","web3"],"latest_commit_sha":null,"homepage":"https://aicontracting.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DevGruGold.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-05T13:32:01.000Z","updated_at":"2025-07-08T15:36:57.000Z","dependencies_parsed_at":"2025-07-08T15:54:15.883Z","dependency_job_id":null,"html_url":"https://github.com/DevGruGold/ai-contract-wizard","commit_stats":null,"previous_names":["devgrugold/ai-contract-wizard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DevGruGold/ai-contract-wizard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevGruGold%2Fai-contract-wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevGruGold%2Fai-contract-wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevGruGold%2Fai-contract-wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevGruGold%2Fai-contract-wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevGruGold","download_url":"https://codeload.github.com/DevGruGold/ai-contract-wizard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevGruGold%2Fai-contract-wizard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284885669,"owners_count":27079125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-17T02:00:06.431Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","blockchain","government","machine-learning","procurement","web3"],"created_at":"2025-11-17T13:02:30.157Z","updated_at":"2025-11-17T13:02:31.933Z","avatar_url":"https://github.com/DevGruGold.png","language":"TypeScript","readme":"# AI Contract Wizard - XMRT-Eliza Enhanced\n\n🚀 **Government Procurement Automation System** powered by XMRT ecosystem and Eliza AI framework.\n\n## 🌟 Features\n\n### 🤖 AI-Powered Automation\n- **Executive Procurement AI**: Strategic oversight and decision-making\n- **Vendor Evaluation AI**: Automated vendor assessment and scoring\n- **Compliance AI**: Real-time regulatory compliance monitoring\n- **Contract Generation AI**: Intelligent contract creation and management\n- **Financial AI**: Treasury management and payment processing\n\n### 🔗 XMRT Ecosystem Integration\n- **XMART Token Payments**: Instant, low-cost vendor payments\n- **DeFi Treasury Management**: Yield optimization and liquidity provision\n- **DAO Governance**: Decentralized decision-making for major procurement decisions\n- **Monero Privacy**: Secure, private communications and sensitive data protection\n- **Blockchain Transparency**: Immutable audit trails and public accountability\n\n### 🛡️ Government-Grade Security\n- Multi-factor authentication and role-based access control\n- End-to-end encryption for sensitive communications\n- Comprehensive audit logging and compliance reporting\n- Federal security standards compliance (FISMA, FedRAMP ready)\n\n### 📊 Advanced Analytics\n- Real-time procurement performance dashboards\n- Predictive analytics for vendor performance and risk assessment\n- Cost optimization recommendations and budget analysis\n- Market intelligence and competitive analysis\n\n## 🏗️ Architecture\n\n```\nai-contract-wizard/\n├── frontend/                 # React TypeScript frontend\n│   ├── src/\n│   │   ├── components/      # UI components\n│   │   ├── pages/           # Application pages\n│   │   └── services/        # API services\n├── backend/                 # Node.js TypeScript backend\n│   ├── src/\n│   │   ├── agents/          # AI agent implementations\n│   │   ├── api/             # REST API routes\n│   │   ├── services/        # Business logic\n│   │   └── config/          # Configuration\n└── docs/                    # Documentation\n    ├── ARCHITECTURE.md      # System architecture\n    └── ANALYSIS.md          # Current state analysis\n```\n\n## 🚀 Quick Start\n\n### Prerequisites\n- Node.js 18+\n- MongoDB\n- Redis\n- Git\n\n### Installation\n\n```bash\n# Clone the repository\ngit clone https://github.com/DevGruGold/ai-contract-wizard.git\ncd ai-contract-wizard\n\n# Install all dependencies\nnpm run install:all\n\n# Copy environment variables\ncp backend/.env.example backend/.env\n\n# Start development servers\nnpm run dev\n```\n\n### Environment Setup\n\n1. **Backend Configuration** (`backend/.env`):\n   ```env\n   # Database\n   MONGODB_URI=mongodb://localhost:27017/ai-contract-wizard\n   REDIS_URL=redis://localhost:6379\n   \n   # JWT\n   JWT_SECRET=your-super-secret-jwt-key\n   \n   # XMRT Ecosystem\n   XMART_TOKEN_ADDRESS=0x...\n   BLOCKCHAIN_RPC_URL=https://mainnet.infura.io/v3/your-project-id\n   \n   # AI Configuration\n   OPENAI_API_KEY=your-openai-api-key\n   ELIZA_API_KEY=your-eliza-api-key\n   ```\n\n2. **Start Services**:\n   ```bash\n   # Frontend (React + Vite)\n   npm run dev:frontend    # http://localhost:5173\n   \n   # Backend (Node.js + Express)\n   npm run dev:backend     # http://localhost:3001\n   \n   # Both simultaneously\n   npm run dev\n   ```\n\n## 📱 Application Features\n\n### 🏛️ Government Dashboard\n- **Contract Management**: Create, manage, and monitor procurement contracts\n- **Vendor Portal**: Vendor registration, qualification, and performance tracking\n- **Compliance Center**: Real-time compliance monitoring and reporting\n- **Analytics Hub**: Procurement insights and performance metrics\n\n### 🤝 Vendor Interface\n- **Bid Submission**: Streamlined proposal submission process\n- **Performance Tracking**: Real-time performance metrics and feedback\n- **Payment Status**: Transparent payment tracking and history\n- **Communication Portal**: Secure messaging with procurement officers\n\n### 🔍 Public Transparency\n- **Public Contracts**: Searchable database of public procurement contracts\n- **Vendor Directory**: Public vendor information and performance ratings\n- **Spending Analytics**: Government spending transparency and analysis\n- **Audit Trails**: Blockchain-verified procurement activity logs\n\n## 🔧 API Endpoints\n\n### Core APIs\n- `GET /api/v1/contracts` - Contract management\n- `GET /api/v1/vendors` - Vendor operations\n- `GET /api/v1/agents` - AI agent interactions\n- `GET /api/v1/xmrt` - XMRT ecosystem integration\n\n### AI Agent APIs\n- `POST /api/v1/agents/executive/evaluate` - Executive procurement evaluation\n- `POST /api/v1/agents/vendor/assess` - Vendor assessment\n- `POST /api/v1/agents/compliance/check` - Compliance verification\n- `POST /api/v1/agents/contract/generate` - Contract generation\n\n### XMRT Integration APIs\n- `POST /api/v1/xmrt/payments` - Token payment processing\n- `GET /api/v1/xmrt/treasury` - Treasury management\n- `POST /api/v1/xmrt/governance` - DAO governance actions\n\n## 🧪 Testing\n\n```bash\n# Run all tests\nnpm test\n\n# Frontend tests\nnpm run test:frontend\n\n# Backend tests\nnpm run test:backend\n\n# E2E tests\nnpm run test:e2e\n```\n\n## 🚀 Deployment\n\n### Production Build\n```bash\n# Build all components\nnpm run build\n\n# Start production server\nnpm start\n```\n\n### Docker Deployment\n```bash\n# Build and run with Docker Compose\ndocker-compose up -d\n```\n\n### Cloud Deployment\n- **Frontend**: Vercel, Netlify, or AWS S3 + CloudFront\n- **Backend**: Railway, Heroku, or AWS ECS\n- **Database**: MongoDB Atlas or AWS DocumentDB\n- **Cache**: Redis Cloud or AWS ElastiCache\n\n## 📚 Documentation\n\n- [System Architecture](docs/ARCHITECTURE.md) - Comprehensive system design\n- [Current State Analysis](docs/ANALYSIS.md) - Analysis of existing system\n- [API Documentation](docs/API.md) - Complete API reference\n- [Deployment Guide](docs/DEPLOYMENT.md) - Production deployment instructions\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🔗 Related Projects\n\n- [XMRT Ecosystem](https://xmrt.io) - Core XMRT platform\n- [Eliza AI Framework](https://github.com/ai16z/eliza) - AI agent framework\n- [XMRT AI Organization](https://github.com/DevGruGold/xmrt-ai-organization) - Autonomous AI organization\n\n## 📞 Support\n\n- **Issues**: [GitHub Issues](https://github.com/DevGruGold/ai-contract-wizard/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/DevGruGold/ai-contract-wizard/discussions)\n- **Email**: support@xmrt.io\n\n---\n\n**Built with ❤️ by DevGruGold | Powered by XMRT Ecosystem \u0026 Eliza AI**\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgrugold%2Fai-contract-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgrugold%2Fai-contract-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgrugold%2Fai-contract-wizard/lists"}