refactor: rename internal packages to follow aitbc- naming convention
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m45s
Documentation Validation / validate-docs (push) Failing after 13s
Documentation Validation / validate-policies-strict (push) Successful in 5s
Integration Tests / test-service-integration (push) Failing after 5s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Python Tests / test-python (push) Failing after 32s
Security Scanning / security-scan (push) Failing after 31s
Build Debian Miner Binary / build-miner (push) Failing after 5m50s

- Renamed ai-service to aitbc-ai-service
- Renamed edge-api to aitbc-edge-api
- Updated pyproject.toml files with new package names
- Renamed directories and package modules
- Updated references in documentation and scripts
- All internal packages now follow aitbc- naming convention
This commit is contained in:
aitbc
2026-05-20 08:07:00 +02:00
parent c3e6f683f1
commit 4a707c2e15
38 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ The following services have <10 files and are considered stubs or placeholders:
- **monitor** (7 files) - Monitoring stub
- **monitoring-service** (4 files) - Monitoring service stub
- **plugin-service** (4 files) - Plugin service stub
- **ai-service** (8 files) - AI service stub
- **aitbc-ai-service** (8 files) - AI service stub
- **compliance-service** (9 files) - Compliance checking stub
- **exchange-integration** (9 files) - Exchange integration stub
- **global-ai-agents** (9 files) - Global AI agents stub

View File

@@ -1,5 +1,5 @@
[tool.poetry]
name = "ai-service"
name = "aitbc-ai-service"
version = "0.1.0"
description = "AITBC AI Service for job operations"
authors = ["AITBC Team"]

View File

@@ -25,7 +25,7 @@ app = FastAPI(
@app.get("/health")
async def health():
"""Health check endpoint."""
return {"status": "healthy", "service": "ai-service"}
return {"status": "healthy", "service": "aitbc-ai-service"}
@app.get("/")