Skip to main content

BlueFly Platform - Project Inventory

BlueFly Platform - Project Inventory

Last Updated: 2025-12-27 Scope: All projects under gitlab.com/blueflyio (excluding collaborative-impact, assets)


GitLab Group Structure

blueflyio/
 agent-platform/     # Main platform - Drupal + TypeScript services
 ossa/               # Open Standard for Scalable AI Agents specification
 gitlab_components   # Reusable CI/CD components
 platform-agents     # OSSA v0.3.0 compliant agent registry
 security-policies   # Security policy management
 devops              # Drupal DevOps template

1. TypeScript Services ([object Object])

Core microservices for the agent platform.

PackageDescriptionPort
agent-brainQdrant vector database service for embeddings, similarity search, RAG pipelines3006
agent-chatMulti-modal AI chat interface with LibreChat integration3003
agent-meshDistributed agent coordination, service discovery, load balancing3005
agent-protocolMCP server for tool registration, context routing, OpenAPI sync3001
agent-routerRESTful API gateway for multi-provider LLM orchestration3007
agent-studioCross-platform IDE suite (macOS, iOS, Electron, VS Code, Web)3008
agent-tracerUnified observability (Phoenix, Qdrant, Prometheus, OpenTelemetry)3002
agent-tailscaleTailscale integration for distributed agent networking-
agentic-flowsOpenAPI-first agentic workflow orchestration engine-
compliance-engineEnterprise compliance validation and enforcement-
foundation-bridgeIntegration bridge for foundation model providers-
kiro-superchargerKiro IDE enhancement with safety rules, steering, MCP configs-
rfp-automationAI-powered RFP document processing and automation8500
studio-uiReact component library for AI platform interfaces-
workflow-engineProduction workflow execution and orchestration3004

2. Drupal Modules ([object Object])

Custom Drupal 11 modules for the LLM Platform.

Core AI Integration

ModuleDescription
ai_agentsCore module enabling AI agent integration with Drupal
ai_agents_clientSDK for building agent communication clients
ai_agents_ossaOSSA 1.0 manifest validation and generation services
ai_agents_ossa_baseBase OSSA integration layer
ai_agentic_workflowsComplex multi-agent workflow automation engine
ai_agents_orchestraMulti-agent orchestration for coordinated AI workflows

Provider Integrations

ModuleDescription
ai_agents_claudeAnthropic Claude AI provider integration
ai_agents_cursorCursor IDE integration for AI-assisted TDD
ai_agents_crewaiCrewAI multi-agent orchestration with gov compliance
ai_agents_huggingfaceHuggingFace model management with ECA workflows
ai_agents_kagentKagent.dev Kubernetes runtime for OSSA agents
ai_provider_appleApple Foundation Models on-device AI provider
ai_provider_langchainLangChain framework integration

Platform Services

ModuleDescription
llmCore LLM configuration, workflow management, admin UI
api_normalizationOpenAPI schema to Drupal entity automatic generation
mcp_registryModel Context Protocol service registry
code_executorSecure sandboxed code execution for agent operations
charts_ai_analyticsAI analytics charting and visualization
alternative_servicesVisual service orchestration UI
ai_agents_marketplaceCentralized platform for discovering/deploying agents
recipe_onboardingAutomated user onboarding with recipe generation

Compliance & Security

ModuleDescription
gov_complianceFedRAMP/NIST government compliance and security hardening
dita_ccmsDarwin Information Typing Architecture content management
drupal_patch_frameworkDrupal patching framework

Migration & Integration

ModuleDescription
external_migrationAI-enhanced multi-CMS migration with field mapping
layout_system_converterLegacy layout migration to Experience Builder
blockchain_managerBlockchain integration with secure, auditable workflows

3. Drupal Recipes ([object Object])

RecipeDescription
llm_platformFull AI platform with multi-provider LLM integration
secure_drupalFedRAMP-aligned security-hardened Drupal
agent_marketplaceOSSA-compliant agent marketplace

4. Drupal Themes ([object Object])

ThemeDescription
llm_platform_managerBootstrap 5 admin theme with 4 configurable sub-themes

5. ML Models ([object Object])

Fine-tuned models for specific domains.

ModelDescription
llm-platform_modelCore model for software development and agent orchestration
agent-studio_modelFine-tuned for test-driven development assistance
civicpolicy_modelCivic policy analysis and regulatory frameworks
gov-rfp_modelGovernment RFP analysis and procurement

6. OSSA (Open Standard for Scalable AI Agents)

Located in OssA/ and gitlab.com/blueflyio/ossa/

ProjectDescription
openstandardagentsOSSA specification - vendor-neutral, portable agent format
openstandardagents.orgWebsite, Discord config, DevOps agents
lab/gitlab-agent_ossaPOC for OSSA schema integration with GitLab Duo

7. Platform Infrastructure

ProjectDescription
llm-platformDrupal 11 AI orchestration platform (main application)
agent-buildkitEnterprise agent orchestration with TDD, GitLab CI/CD, K8s, OSSA
agent-dockerDocker and Kubernetes containerization
api-schema-registryMaster OpenAPI 3.1 specifications and shared schemas
gitlab_components60+ reusable GitLab CI/CD components for OSSA workflows
platform-agentsOSSA v0.3.0 compliant agent framework with registry
technical-docsUnified documentation portal

8. Local Directory Structure

$LLM_ROOT/
 agent-buildkit/           # Main CLI and orchestration tool
 all_drupal_custom/        # Drupal modules, recipes, themes (SOURCE)
‚    modules/              # 24 custom modules
‚    recipes/              # 3 recipes
‚    themes/               # 1 theme
 api-schema-registry/      # OpenAPI schemas
 common_npm/               # 16 TypeScript packages
 gitlab_components/        # CI/CD components
 llm-platform/             # Drupal 11 application (COMPOSER-MANAGED)
 models/                   # 4 ML models
 OssA/                     # OSSA specification
‚    openstandardagents/   # Main spec repo
‚    openstandardagents.org/
 platform-agents/          # Agent registry
 technical-docs/           # Documentation wiki clone
 WIKIs/                    # Local wiki clones

Separation of Duties

LayerTechnologyLocation
SpecificationOSSA v0.3.0OssA/openstandardagents
Runtime ServicesTypeScript/Nodecommon_npm/*
CMS/AdminDrupal 11all_drupal_custom/*llm-platform/
ML ModelsMLflow/HuggingFacemodels/*
CI/CDGitLab Componentsgitlab_components/
InfrastructureK8s/Dockeragent-docker/, agent-buildkit/
DocumentationGitLab Wikitechnical-docs/

Quick Reference

Important URLs

Key Commands

# Sync Drupal modules buildkit drupal sync # Validate OSSA manifests ossa validate .agents/ # Run platform cd llm-platform && ddev start # Build TypeScript services cd common_npm/<service> && npm run build