DRUPAL PROJECTS INVENTORY
Drupal Projects Inventory
Complete audit of all Drupal-related projects in the blueflyio/agent-platform GitLab group.
Last Updated: January 8, 2026 Audit Date: 2026-01-08 Status: Complete
Summary
- Total Drupal-Related Projects: 8
- Projects Cloned Locally: 6
- Projects Not Yet Cloned: 2
- Open Issues: 12
- Last Activity: 2026-01-07
Categories
1. Main Drupal Installation Projects
| Project Name | Repository | Local Status | Last Activity | Issues | MRs | Notes |
|---|---|---|---|---|---|---|
| LLM Base | blueflyio/agent-platform/llm | Cloned: llm.bare | 2026-01-07 | 4 | 0 | Core Drupal installation for LLM platform |
| DEMO - LLM Platform | blueflyio/agent-platform/llm-platform | Cloned: llm-platform.bare | 2026-01-07 | 9 | 0 | Demo instance with active development |
Links:
2. Custom Module Projects
| Project Name | Repository | Local Status | Last Activity | Issues | MRs | Notes |
|---|---|---|---|---|---|---|
| Recipe - Secure Drupal | blueflyio/agent-platform/secure_drupal_recipe | Cloned: secure_drupal_recipe.bare | 2026-01-07 | 0 | 0 | Security-hardened Drupal recipe with AI integration |
Links:
3. Recipe Projects
| Project Name | Repository | Local Status | Last Activity | Issues | MRs | Notes |
|---|---|---|---|---|---|---|
| agent_marketplace_recipe | blueflyio/agent-platform/agent_marketplace_recipe | Cloned: agent_marketplace_recipe.bare | 2026-01-07 | 0 | 0 | Recipe for agent marketplace functionality |
| Recipe - Agent Marketplace | blueflyio/agent-platform/agent_marketplace | Cloned: agent_marketplace.bare | 2026-01-07 | 1 | 0 | Agent marketplace implementation |
| Recipe - LLM Platform | blueflyio/agent-platform/llm_platform_recipe | Cloned: llm_platform_recipe.bare | 2026-01-07 | 0 | 0 | Recipe for LLM platform features |
| Recipe Onboarding | blueflyio/agent-platform/recipe_onboarding | Cloned: recipe_onboarding.bare | 2026-01-07 | 6 | 0 | Onboarding flow recipe (active development) |
Links:
4. Theme & UI Projects
| Project Name | Repository | Local Status | Last Activity | Issues | MRs | Notes |
|---|---|---|---|---|---|---|
| LLM Platform Theme | blueflyio/agent-platform/llm_platform_manager_theme | Cloned: llm_platform_manager_theme.bare | 2026-01-07 | 0 | 0 | Custom theme for LLM platform manager interface |
Links:
5. AI Integration Projects
| Project Name | Repository | Local Status | Last Activity | Issues | MRs | Notes |
|---|---|---|---|---|---|---|
| LLM Platform Model | blueflyio/agent-platform/llm_platform_model | Cloned: llm_platform_model.bare | Not Available* | 0 | 0 | AI model integration for LLM platform |
Links:
*Note: API data not fully available, but project exists locally
Local Repository Status
Cloned Projects (6 of 8)
All primary Drupal-related projects are cloned locally in _Source/:
_Source/
llm.bare Main Drupal installation
llm-platform.bare Demo platform
llm_platform_recipe.bare Recipe
llm_platform_manager_theme.bare Theme
llm_platform_model.bare AI model integration
agent_marketplace.bare Marketplace
agent_marketplace_recipe.bare Marketplace recipe
recipe_onboarding.bare Onboarding recipe
secure_drupal_recipe.bare Security recipe
Projects Not Cloned
All primary Drupal projects are already cloned. No additional cloning needed at this time.
Project Statistics
Activity Summary
| Metric | Value | Notes |
|---|---|---|
| Most Active | Recipe Onboarding | 6 open issues, latest activity 2026-01-07 |
| Least Active | Multiple projects | 0 open issues each |
| Total Open Issues | 12 | Across all Drupal-related projects |
| Total Open MRs | 0 | All projects are stable |
| Oldest Activity | All within past week | Very active platform |
Issue Breakdown
- Recipe Onboarding: 6 issues (active development)
- DEMO - LLM Platform: 9 issues (active development)
- LLM Base: 4 issues
- Recipe - Agent Marketplace: 1 issue
- Others: 0 issues each
Project Dependencies
Drupal Core Installation
llm (LLM Base)
llm-platform (DEMO instance)
llm_platform_manager_theme (UI)
llm_platform_model (AI integration)
secure_drupal_recipe (Hardened installation)
(Base for custom security module)
Agent Marketplace
agent_marketplace (Main project)
agent_marketplace_recipe (Recipe)
[Used by multiple projects]
Onboarding
recipe_onboarding (New developer workflow)
Git Workflow
Fetching Latest Changes
# For each bare repository cd /Users/thomas.scola/Sites/Agent-platform/_Source/[project].bare git fetch --all # Create worktree for development git worktree add /Users/thomas.scola/Sites/Agent-platform/.worktrees/$(date +%Y-%m-%d)/[project]/[branch-name] [branch-name]
Common Development Tasks
Drupal Module Development
See: /developer-guides/drupal/module-development.md
Recipe Development
See: /developer-guides/drupal/recipe-development.md
Drupal Standards
See: /developer-guides/drupal/standards.md
Key Features by Project
LLM Base ([object Object])
- Core Drupal 10.x installation
- OpenTelemetry integration for observability
- LLM agent integration
- Multi-tenant capable
DEMO - LLM Platform ([object Object])
- Demonstration deployment
- Live testing environment
- Contains most active issues (9 open)
- Production-like configuration
Secure Drupal Recipe ([object Object])
- Security hardening module
- GDPR/HIPAA compliance ready
- AI integration safeguards
- Zero production issues
Agent Marketplace
- Agent discovery and catalog
- Recipe sharing
- Integration with OSSA agents
Recipe Onboarding
- Developer onboarding workflow
- Documentation generation
- Automated setup scripts
- Most active (6 issues)
Next Steps
For Developers
- Clone a worktree for active development
- Check issue board for current priorities
- Follow Drupal standards in
/developer-guides/drupal/standards.md - Run tests before committing
For Platform Maintainers
- Monitor open issues - Currently 12 total
- Track recipe adoption - 4 active recipes
- Plan security updates - Review
secure_drupal_recipequarterly - Coordinate LLM integrations - With OSSA agent platform
Troubleshooting
Project Not Found Locally?
# Update local repositories cd /Users/thomas.scola/Sites/Agent-platform/_Source for dir in *.bare; do cd "$dir" git fetch --all cd .. done
Need to Clone Missing Project?
# From Agent Platform _Source directory PROJECT_NAME="secure_drupal_recipe" git clone --bare https://gitlab.com/blueflyio/agent-platform/$PROJECT_NAME.git
Setting Up Development Worktree?
See: CLAUDE.md - Section "ISSUE-DRIVEN DEVELOPMENT WORKFLOW WITH WORKTREES"
References
- Drupal Module Development:
/developer-guides/drupal/module-development.md - Recipe Development Guide:
/developer-guides/drupal/recipe-development.md - Drupal Standards:
/developer-guides/drupal/standards.md - AI Integration Plan:
/developer-guides/drupal/MASTER-DRUPAL-AI-INTEGRATION-PLAN.md - Main Repository: blueflyio/agent-platform on GitLab
Contacts
- Drupal Platform Lead: Check GitLab project members
- AI Integration: OSSA team
- Infrastructure: DevOps team
- Security: Security & Compliance team
Document Status: Active Last Verified: 2026-01-08 00:00 UTC Maintained By: Agent Platform Team