Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PMOVES-A2UI
Submodule PMOVES-A2UI updated 170 files
2 changes: 1 addition & 1 deletion PMOVES-AgentGym
2 changes: 1 addition & 1 deletion PMOVES-BoTZ
Submodule PMOVES-BoTZ updated 62 files
+2 −1 .claude/skills/model-trainer/scripts/train_sft_example.py
+1 −1 .env.example
+4 −4 .github/workflows/ci.yml
+3 −3 .mprocs.yaml
+99 −93 archive/Features_folder/cipher/pmoves_cipher/package-lock.json
+1 −1 archive/Features_folder/cipher/pmoves_cipher/package.json
+61 −67 archive/Features_folder/cipher/pmoves_cipher/pnpm-lock.yaml
+6 −6 core/docker-compose/overlays/docked.yml
+28 −0 core/mcp/catalog.yml
+150 −0 docker-compose.distributed.yml
+1 −1 docker-compose.pmoves.yml
+45 −1 docker-compose.yml
+375 −0 docs/DISTRIBUTED_DEPLOYMENT.md
+140 −0 env.distributed.example
+53 −53 env.shared
+24 −24 env.tier-agent.sh
+1 −1 features/agent_sdk/core/config.py
+2 −2 features/agent_sdk/core/events.py
+2 −2 features/agent_sdk/hooks/nats_publisher.py
+1 −1 features/agent_sdk/pmoves_agent.py
+1 −1 features/agent_sdk/subagents/media_processor.py
+1 −1 features/agent_sdk/subagents/researcher.py
+7 −2 features/cipher/Dockerfile
+1 −1 features/cipher/pmoves_cipher
+99 −93 features/cipher/pmoves_cipher_backup/package-lock.json
+1 −1 features/cipher/pmoves_cipher_backup/package.json
+61 −67 features/cipher/pmoves_cipher_backup/pnpm-lock.yaml
+518 −438 features/docling/docling/uv.lock
+1 −1 features/gateway/PMOVES-BotZ-gateway/mcp-example-server/requirements.txt
+1 −1 features/gateway/PMOVES-BotZ-gateway/mcp-proxy-server/requirements.txt
+1 −1 features/gateway/docker-compose.yml
+173 −12 features/gateway/python-gateway/gateway.py
+114 −0 features/gateway/python-gateway/graphiti.py
+3 −0 features/gateway/python-gateway/requirements.txt
+0 −0 features/github/__init__.py
+86 −0 features/github/mint_and_exec.py
+3 −0 features/github/requirements.txt
+5 −6 features/hostinger/Dockerfile
+1 −1 features/mcp_bridge/Dockerfile
+10 −4 features/mcp_bridge/auth.py
+1 −1 features/mcp_bridge/docker-compose.yml
+5 −27 features/mcp_bridge/server.py
+535 −0 features/mcp_bridge/tools/cast.py
+1 −1 features/mcp_bridge/tools/nats.py
+1 −1 features/mcp_bridge/utils/integration_health.py
+1 −1 features/n8n/monitor_agent.py
+9 −0 features/skills/Dockerfile
+1 −1 features/skills/repos/anthropics-skills
+1 −1 features/skills/repos/aws-skills
+1 −1 features/skills/repos/huggingface-skills
+1 −1 features/skills/repos/obsidian-plugin-skill
+1 −1 features/skills/repos/skillcreator-skills
+1 −1 features/skills/repos/skills-marketplace
+45 −0 features/vpn_mcp/Dockerfile.vpn-mcp
+35 −0 features/vpn_mcp/config/vpn_config.yaml
+18 −0 features/vpn_mcp/vpn_mcp_requirements.txt
+761 −0 features/vpn_mcp/vpn_mcp_server.py
+1 −1 pmoves_announcer/__init__.py
+1 −1 pmoves_health/__init__.py
+1 −1 pmoves_registry/__init__.py
+1 −1 requirements.txt
+5 −5 test_docling_imports_improvements.py
2 changes: 1 addition & 1 deletion PMOVES-ClawZ
Submodule PMOVES-ClawZ updated 5930 files
2 changes: 1 addition & 1 deletion PMOVES-Creator
2 changes: 1 addition & 1 deletion PMOVES-Danger-infra
2 changes: 1 addition & 1 deletion PMOVES-n8n
Submodule PMOVES-n8n updated 37 files
+0 −11 .coderabbit.yaml
+2 −0 .gitignore
+71 −66 PMOVES.AI_INTEGRATION.md
+50 −29 README.md
+0 −79 chit/secrets_manifest_v2.yaml
+4 −0 compose/n8n/Dockerfile
+0 −136 docker-compose.pmoves.yml
+53 −0 docs/RUNTIME.md
+0 −146 env.shared
+0 −52 env.tier-worker
+0 −364 pmoves_announcer/__init__.py
+0 −57 pmoves_common/__init__.py
+0 −328 pmoves_health/__init__.py
+0 −289 pmoves_registry/__init__.py
+265 −0 scripts/bootstrap_n8n_api.py
+86 −0 scripts/export_repo_flows.py
+259 −0 scripts/import_repo_flows.py
+115 −0 scripts/n8n_flow_normalize.py
+236 −0 scripts/sync_supabase_registry.py
+5 −18 workflows/discord_voice_agent.json
+1 −1 workflows/finance_firefly_sync.json
+338 −0 workflows/github_runner_autoscaler.json
+296 −0 workflows/github_webhook_processor.json
+1 −1 workflows/health_wger_sync.json
+260 −0 workflows/langextract_orchestrator.json
+289 −0 workflows/pmoves_audio_analysis.json
+285 −0 workflows/pmoves_channel_monitor.json
+326 −0 workflows/pmoves_comfy_hub.json
+278 −0 workflows/pmoves_deepresearch_orchestrator.json
+269 −0 workflows/pmoves_ingestion_hub.json
+315 −0 workflows/pmoves_jellyfin_watcher.json
+297 −0 workflows/pmoves_notebook_content_feed.json
+336 −0 workflows/pmoves_social_publisher.json
+325 −0 workflows/pmoves_video_analysis.json
+5 −18 workflows/telegram_voice_agent.json
+279 −300 workflows/voice_platform_router.json
+6 −25 workflows/voice_shared_functions.json
Loading