pm-copilot-engine 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pm_copilot_engine-0.1.0/LICENSE +21 -0
- pm_copilot_engine-0.1.0/PKG-INFO +215 -0
- pm_copilot_engine-0.1.0/README.md +56 -0
- pm_copilot_engine-0.1.0/cron/__init__.py +42 -0
- pm_copilot_engine-0.1.0/cron/blueprint_catalog.py +713 -0
- pm_copilot_engine-0.1.0/cron/jobs.py +1212 -0
- pm_copilot_engine-0.1.0/cron/scheduler.py +2213 -0
- pm_copilot_engine-0.1.0/cron/scripts/__init__.py +1 -0
- pm_copilot_engine-0.1.0/cron/scripts/classify_items.py +226 -0
- pm_copilot_engine-0.1.0/cron/suggestion_catalog.py +154 -0
- pm_copilot_engine-0.1.0/cron/suggestions.py +257 -0
- pm_copilot_engine-0.1.0/plugins/__init__.py +1 -0
- pm_copilot_engine-0.1.0/plugins/browser/browser_use/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/browser/browser_use/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/browser/browser_use/provider.py +317 -0
- pm_copilot_engine-0.1.0/plugins/browser/browserbase/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/browser/browserbase/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/browser/browserbase/provider.py +297 -0
- pm_copilot_engine-0.1.0/plugins/browser/firecrawl/__init__.py +16 -0
- pm_copilot_engine-0.1.0/plugins/browser/firecrawl/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/browser/firecrawl/provider.py +171 -0
- pm_copilot_engine-0.1.0/plugins/context_engine/__init__.py +285 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/basic/__init__.py +491 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/basic/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/nous/__init__.py +667 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/nous/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/self_hosted/__init__.py +736 -0
- pm_copilot_engine-0.1.0/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
- pm_copilot_engine-0.1.0/plugins/disk-cleanup/README.md +51 -0
- pm_copilot_engine-0.1.0/plugins/disk-cleanup/__init__.py +316 -0
- pm_copilot_engine-0.1.0/plugins/disk-cleanup/disk_cleanup.py +560 -0
- pm_copilot_engine-0.1.0/plugins/disk-cleanup/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/README.md +131 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/SKILL.md +148 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/__init__.py +103 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/audio_bridge.py +248 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/cli.py +477 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/meet_bot.py +858 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/__init__.py +54 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/cli.py +125 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/client.py +107 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/protocol.py +124 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/registry.py +112 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/node/server.py +200 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/plugin.yaml +16 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/process_manager.py +323 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/realtime/__init__.py +10 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/realtime/openai_client.py +332 -0
- pm_copilot_engine-0.1.0/plugins/google_meet/tools.py +348 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/README.md +150 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/dashboard/manifest.json +11 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/dashboard/plugin_api.py +1061 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/docs/achievements-performance-implementation-plan.md +157 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/docs/achievements-performance-implementation-spec.md +219 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/docs/achievements-performance-spec.md +174 -0
- pm_copilot_engine-0.1.0/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/fal/__init__.py +182 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/fal/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/krea/__init__.py +548 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/krea/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/openai/__init__.py +316 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/openai/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/openai-codex/__init__.py +442 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/openai-codex/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/xai/__init__.py +334 -0
- pm_copilot_engine-0.1.0/plugins/image_gen/xai/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/kanban/dashboard/manifest.json +14 -0
- pm_copilot_engine-0.1.0/plugins/kanban/dashboard/plugin_api.py +2454 -0
- pm_copilot_engine-0.1.0/plugins/memory/__init__.py +450 -0
- pm_copilot_engine-0.1.0/plugins/memory/byterover/README.md +41 -0
- pm_copilot_engine-0.1.0/plugins/memory/byterover/__init__.py +384 -0
- pm_copilot_engine-0.1.0/plugins/memory/byterover/plugin.yaml +9 -0
- pm_copilot_engine-0.1.0/plugins/memory/hindsight/README.md +147 -0
- pm_copilot_engine-0.1.0/plugins/memory/hindsight/__init__.py +1803 -0
- pm_copilot_engine-0.1.0/plugins/memory/hindsight/plugin.yaml +8 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/README.md +36 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/__init__.py +408 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/holographic.py +203 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/retrieval.py +593 -0
- pm_copilot_engine-0.1.0/plugins/memory/holographic/store.py +578 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/README.md +368 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/__init__.py +1419 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/cli.py +1698 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/client.py +882 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/memory/honcho/session.py +1341 -0
- pm_copilot_engine-0.1.0/plugins/memory/mem0/README.md +38 -0
- pm_copilot_engine-0.1.0/plugins/memory/mem0/__init__.py +374 -0
- pm_copilot_engine-0.1.0/plugins/memory/mem0/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/memory/openviking/README.md +40 -0
- pm_copilot_engine-0.1.0/plugins/memory/openviking/__init__.py +978 -0
- pm_copilot_engine-0.1.0/plugins/memory/openviking/plugin.yaml +9 -0
- pm_copilot_engine-0.1.0/plugins/memory/retaindb/README.md +40 -0
- pm_copilot_engine-0.1.0/plugins/memory/retaindb/__init__.py +766 -0
- pm_copilot_engine-0.1.0/plugins/memory/retaindb/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/memory/supermemory/README.md +111 -0
- pm_copilot_engine-0.1.0/plugins/memory/supermemory/__init__.py +897 -0
- pm_copilot_engine-0.1.0/plugins/memory/supermemory/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/README.md +70 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/alibaba/__init__.py +13 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/alibaba/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/anthropic/__init__.py +52 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/anthropic/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/arcee/__init__.py +13 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/arcee/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/azure-foundry/__init__.py +21 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/bedrock/__init__.py +29 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/bedrock/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/copilot/__init__.py +58 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/copilot/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/copilot-acp/__init__.py +34 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/custom/__init__.py +73 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/custom/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/deepseek/__init__.py +100 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/deepseek/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/gemini/__init__.py +72 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/gemini/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/gmi/__init__.py +31 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/gmi/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/huggingface/__init__.py +20 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/huggingface/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/kilocode/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/kilocode/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/kimi-coding/__init__.py +80 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/minimax/__init__.py +45 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/minimax/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/nous/__init__.py +54 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/nous/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/novita/__init__.py +27 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/novita/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/nvidia/__init__.py +21 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/nvidia/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/ollama-cloud/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/openai-codex/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/openai-codex/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/opencode-zen/__init__.py +126 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/openrouter/__init__.py +187 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/openrouter/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/qwen-oauth/__init__.py +82 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/stepfun/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/stepfun/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/xai/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/xai/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/xiaomi/__init__.py +16 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/xiaomi/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/zai/__init__.py +21 -0
- pm_copilot_engine-0.1.0/plugins/model-providers/zai/plugin.yaml +5 -0
- pm_copilot_engine-0.1.0/plugins/observability/langfuse/README.md +53 -0
- pm_copilot_engine-0.1.0/plugins/observability/langfuse/__init__.py +1035 -0
- pm_copilot_engine-0.1.0/plugins/observability/langfuse/plugin.yaml +14 -0
- pm_copilot_engine-0.1.0/plugins/observability/nemo_relay/README.md +559 -0
- pm_copilot_engine-0.1.0/plugins/observability/nemo_relay/__init__.py +962 -0
- pm_copilot_engine-0.1.0/plugins/observability/nemo_relay/plugin.yaml +20 -0
- pm_copilot_engine-0.1.0/plugins/platforms/discord/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/discord/adapter.py +6764 -0
- pm_copilot_engine-0.1.0/plugins/platforms/discord/plugin.yaml +34 -0
- pm_copilot_engine-0.1.0/plugins/platforms/discord/voice_mixer.py +379 -0
- pm_copilot_engine-0.1.0/plugins/platforms/google_chat/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/google_chat/adapter.py +3348 -0
- pm_copilot_engine-0.1.0/plugins/platforms/google_chat/oauth.py +667 -0
- pm_copilot_engine-0.1.0/plugins/platforms/google_chat/plugin.yaml +39 -0
- pm_copilot_engine-0.1.0/plugins/platforms/homeassistant/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/homeassistant/adapter.py +577 -0
- pm_copilot_engine-0.1.0/plugins/platforms/homeassistant/plugin.yaml +22 -0
- pm_copilot_engine-0.1.0/plugins/platforms/irc/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/irc/adapter.py +971 -0
- pm_copilot_engine-0.1.0/plugins/platforms/irc/plugin.yaml +54 -0
- pm_copilot_engine-0.1.0/plugins/platforms/line/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/line/adapter.py +1652 -0
- pm_copilot_engine-0.1.0/plugins/platforms/line/plugin.yaml +65 -0
- pm_copilot_engine-0.1.0/plugins/platforms/mattermost/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/mattermost/adapter.py +1192 -0
- pm_copilot_engine-0.1.0/plugins/platforms/mattermost/plugin.yaml +49 -0
- pm_copilot_engine-0.1.0/plugins/platforms/ntfy/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/ntfy/adapter.py +593 -0
- pm_copilot_engine-0.1.0/plugins/platforms/ntfy/plugin.yaml +56 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/README.md +174 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/__init__.py +4 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/adapter.py +1529 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/auth.py +1065 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/cli.py +441 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/plugin.yaml +88 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/sidecar/README.md +52 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/sidecar/package-lock.json +1729 -0
- pm_copilot_engine-0.1.0/plugins/platforms/photon/sidecar/package.json +24 -0
- pm_copilot_engine-0.1.0/plugins/platforms/simplex/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/simplex/adapter.py +1313 -0
- pm_copilot_engine-0.1.0/plugins/platforms/simplex/plugin.yaml +56 -0
- pm_copilot_engine-0.1.0/plugins/platforms/teams/__init__.py +3 -0
- pm_copilot_engine-0.1.0/plugins/platforms/teams/adapter.py +1297 -0
- pm_copilot_engine-0.1.0/plugins/platforms/teams/plugin.yaml +48 -0
- pm_copilot_engine-0.1.0/plugins/plugin_utils.py +135 -0
- pm_copilot_engine-0.1.0/plugins/security-guidance/README.md +88 -0
- pm_copilot_engine-0.1.0/plugins/security-guidance/__init__.py +259 -0
- pm_copilot_engine-0.1.0/plugins/security-guidance/patterns.py +368 -0
- pm_copilot_engine-0.1.0/plugins/security-guidance/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/spotify/__init__.py +66 -0
- pm_copilot_engine-0.1.0/plugins/spotify/client.py +435 -0
- pm_copilot_engine-0.1.0/plugins/spotify/plugin.yaml +13 -0
- pm_copilot_engine-0.1.0/plugins/spotify/tools.py +454 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/__init__.py +23 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/cli.py +461 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/meetings.py +333 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/models.py +350 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/pipeline.py +689 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/plugin.yaml +9 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/runtime.py +135 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/store.py +193 -0
- pm_copilot_engine-0.1.0/plugins/teams_pipeline/subscriptions.py +249 -0
- pm_copilot_engine-0.1.0/plugins/video_gen/fal/__init__.py +620 -0
- pm_copilot_engine-0.1.0/plugins/video_gen/fal/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/video_gen/xai/__init__.py +504 -0
- pm_copilot_engine-0.1.0/plugins/video_gen/xai/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/__init__.py +7 -0
- pm_copilot_engine-0.1.0/plugins/web/brave_free/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/web/brave_free/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/brave_free/provider.py +137 -0
- pm_copilot_engine-0.1.0/plugins/web/ddgs/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/web/ddgs/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/ddgs/provider.py +104 -0
- pm_copilot_engine-0.1.0/plugins/web/exa/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/web/exa/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/exa/provider.py +212 -0
- pm_copilot_engine-0.1.0/plugins/web/firecrawl/__init__.py +28 -0
- pm_copilot_engine-0.1.0/plugins/web/firecrawl/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/firecrawl/provider.py +594 -0
- pm_copilot_engine-0.1.0/plugins/web/parallel/__init__.py +16 -0
- pm_copilot_engine-0.1.0/plugins/web/parallel/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/parallel/provider.py +696 -0
- pm_copilot_engine-0.1.0/plugins/web/searxng/__init__.py +15 -0
- pm_copilot_engine-0.1.0/plugins/web/searxng/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/searxng/provider.py +153 -0
- pm_copilot_engine-0.1.0/plugins/web/tavily/__init__.py +10 -0
- pm_copilot_engine-0.1.0/plugins/web/tavily/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/tavily/provider.py +220 -0
- pm_copilot_engine-0.1.0/plugins/web/xai/__init__.py +14 -0
- pm_copilot_engine-0.1.0/plugins/web/xai/plugin.yaml +7 -0
- pm_copilot_engine-0.1.0/plugins/web/xai/provider.py +557 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/__init__.py +11 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/__init__.py +6 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/__init__.py +92 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/_parser.py +411 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/_subprocess_compat.py +234 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/active_sessions.py +320 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/auth.py +7926 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/auth_commands.py +802 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/azure_detect.py +406 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/backup.py +1064 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/banner.py +835 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/blueprint_cmd.py +318 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/browser_connect.py +217 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/build_info.py +51 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/bundles.py +229 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/callbacks.py +242 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/checkpoints.py +244 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/claw.py +809 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/cli_agent_setup_mixin.py +681 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/cli_commands_mixin.py +2263 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/cli_output.py +77 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/clipboard.py +494 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/codex_models.py +206 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/codex_runtime_plugin_migration.py +757 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/codex_runtime_switch.py +266 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/colors.py +38 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/commands.py +1933 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/completion.py +319 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/config.py +6530 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/container_boot.py +395 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/copilot_auth.py +392 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/cron.py +357 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/curator.py +598 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/curses_ui.py +872 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/__init__.py +42 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/audit.py +87 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/base.py +220 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/cookies.py +247 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/login_page.py +534 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/middleware.py +368 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/prefix.py +201 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/public_paths.py +49 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/registry.py +58 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/routes.py +621 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_auth/ws_tickets.py +161 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dashboard_register.py +427 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/debug.py +829 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/default_soul.py +11 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dep_ensure.py +159 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dingtalk_auth.py +293 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/doctor.py +2269 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/dump.py +360 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/env_loader.py +344 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/fallback_cmd.py +354 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/fallback_config.py +72 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/gateway.py +6915 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/gateway_windows.py +1311 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/goals.py +912 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/gui_uninstall.py +285 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/hooks.py +385 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/inventory.py +387 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban.py +2830 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban_db.py +7750 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban_decompose.py +477 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban_diagnostics.py +1107 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban_specify.py +273 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/kanban_swarm.py +279 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/logs.py +394 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/main.py +12419 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/managed_uv.py +254 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/mcp_catalog.py +775 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/mcp_config.py +892 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/mcp_picker.py +322 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/mcp_startup.py +59 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/memory_setup.py +472 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/middleware.py +313 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/migrate.py +115 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/model_catalog.py +394 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/model_cost_guard.py +134 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/model_normalize.py +473 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/model_setup_flows.py +2736 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/model_switch.py +2086 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/models.py +3992 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/nous_account.py +789 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/nous_subscription.py +1279 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/oneshot.py +381 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/pairing.py +115 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/partial_compress.py +235 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/platforms.py +84 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/plugins.py +2046 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/plugins_cmd.py +1835 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/portal_cli.py +245 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/profile_describer.py +298 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/profile_distribution.py +726 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/profiles.py +1776 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/prompt_size.py +153 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/providers.py +734 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/__init__.py +20 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/adapters/__init__.py +37 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/adapters/base.py +108 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/adapters/nous_portal.py +189 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/adapters/xai.py +145 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/cli.py +142 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/proxy/server.py +296 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/psutil_android.py +108 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/pt_input_extras.py +120 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/pty_bridge.py +286 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/relaunch.py +205 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/runtime_provider.py +1775 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/secret_prompt.py +126 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/secrets_cli.py +600 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/security_advisories.py +453 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/security_audit.py +576 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/send_cmd.py +463 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/service_manager.py +981 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/session_recap.py +316 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/setup.py +3361 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/setup_whatsapp_cloud.py +541 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/skills_config.py +177 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/skills_hub.py +1891 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/skin_engine.py +926 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/slack_cli.py +159 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/status.py +586 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/stdio.py +251 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/__init__.py +18 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/_shared.py +29 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/acp.py +52 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/auth.py +109 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/backup.py +38 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/claw.py +92 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/config.py +49 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/cron.py +163 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/dashboard.py +143 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/debug.py +77 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/doctor.py +35 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/dump.py +28 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/gateway.py +274 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/gui.py +63 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/hooks.py +77 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/import_cmd.py +31 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/insights.py +25 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/login.py +58 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/logout.py +28 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/logs.py +78 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/mcp.py +108 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/memory.py +53 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/model.py +72 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/pairing.py +36 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/plugins.py +94 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/postinstall.py +23 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/profile.py +203 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/prompt_size.py +36 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/security.py +62 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/setup.py +58 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/skills.py +269 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/slack.py +60 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/status.py +28 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/tools.py +95 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/uninstall.py +41 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/update.py +70 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/version.py +18 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/webhook.py +76 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/subcommands/whatsapp.py +22 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/suggestions_cmd.py +153 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/telegram_managed_bot.py +358 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/timeouts.py +82 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/tips.py +486 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/tools_config.py +3926 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/uninstall.py +930 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/voice.py +846 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/web_server.py +11859 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/webhook.py +298 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/win_pty_bridge.py +179 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/write_approval_commands.py +209 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/_internal/hermes_cli/xai_retirement.py +253 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/__init__.py +8 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/account_usage.py +638 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/agent_init.py +1713 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/agent_runtime_helpers.py +2595 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/anthropic_adapter.py +2513 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/async_utils.py +68 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/auxiliary_client.py +5949 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/azure_identity_adapter.py +555 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/background_review.py +608 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/bedrock_adapter.py +1325 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/browser_provider.py +175 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/browser_registry.py +192 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/chat_completion_helpers.py +2682 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/codex_responses_adapter.py +1271 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/codex_runtime.py +686 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/coding_context.py +738 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/context_compressor.py +2426 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/context_engine.py +226 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/context_references.py +551 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/conversation_compression.py +802 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/conversation_loop.py +4255 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/copilot_acp_client.py +686 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/credential_persistence.py +174 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/credential_pool.py +2184 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/credential_sources.py +448 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/credits_tracker.py +794 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/curator.py +1835 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/curator_backup.py +695 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/display.py +1049 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/error_classifier.py +1365 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/file_safety.py +640 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/gemini_cloudcode_adapter.py +909 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/gemini_native_adapter.py +1001 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/gemini_schema.py +99 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/google_code_assist.py +451 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/google_oauth.py +1067 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/i18n.py +302 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/image_gen_provider.py +324 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/image_gen_registry.py +145 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/image_routing.py +540 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/insights.py +921 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/iteration_budget.py +62 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/jiter_preload.py +39 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lmstudio_reasoning.py +48 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/__init__.py +106 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/cli.py +299 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/client.py +943 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/eventlog.py +213 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/install.py +403 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/manager.py +639 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/protocol.py +196 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/range_shift.py +149 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/reporter.py +78 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/servers.py +1040 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/lsp/workspace.py +223 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/manual_compression_feedback.py +49 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/markdown_tables.py +309 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/memory_manager.py +917 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/memory_provider.py +296 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/message_sanitization.py +444 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/model_metadata.py +2006 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/models_dev.py +725 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/moonshot_schema.py +238 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/nous_rate_guard.py +325 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/onboarding.py +253 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/plugin_llm.py +1046 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/portal_tags.py +64 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/process_bootstrap.py +167 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/prompt_builder.py +1630 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/prompt_caching.py +79 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/rate_limit_tracker.py +246 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/redact.py +496 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/retry_utils.py +57 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/runtime_cwd.py +62 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/secret_sources/__init__.py +13 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/secret_sources/bitwarden.py +692 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/shell_hooks.py +847 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/skill_bundles.py +410 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/skill_commands.py +527 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/skill_preprocessing.py +140 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/skill_utils.py +666 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/stream_diag.py +280 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/subdirectory_hints.py +270 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/system_prompt.py +446 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/think_scrubber.py +386 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/title_generator.py +171 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tool_dispatch_helpers.py +417 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tool_executor.py +1428 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tool_guardrails.py +475 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tool_result_classification.py +26 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/trajectory.py +56 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transcription_provider.py +193 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transcription_registry.py +122 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/__init__.py +68 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/anthropic.py +232 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/base.py +89 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/bedrock.py +154 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/chat_completions.py +704 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/codex.py +347 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/codex_app_server.py +400 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/codex_app_server_session.py +876 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/codex_event_projector.py +312 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/hermes_tools_mcp_server.py +233 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/transports/types.py +174 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tts_provider.py +274 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/tts_registry.py +133 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/turn_context.py +388 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/turn_finalizer.py +427 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/turn_retry_state.py +68 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/usage_pricing.py +908 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/video_gen_provider.py +299 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/video_gen_registry.py +117 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/web_search_provider.py +185 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/agent/web_search_registry.py +245 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/batch_runner.py +1321 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/hermes_bootstrap.py +129 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/hermes_constants.py +471 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/hermes_logging.py +536 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/hermes_state.py +4777 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/hermes_time.py +117 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/mcp_serve.py +897 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/model_tools.py +1229 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/providers/__init__.py +191 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/providers/base.py +214 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/run_agent.py +5424 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/__init__.py +25 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/ansi_strip.py +44 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/approval.py +1812 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/binary_extensions.py +42 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/blueprints.py +325 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_camofox.py +794 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_camofox_state.py +47 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_cdp_tool.py +569 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_dialog_tool.py +148 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_supervisor.py +1475 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/browser_tool.py +3873 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/budget_config.py +51 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/checkpoint_manager.py +1642 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/clarify_gateway.py +278 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/clarify_tool.py +141 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/code_execution_tool.py +1832 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/__init__.py +43 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/backend.py +158 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/cua_backend.py +779 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/schema.py +213 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/tool.py +823 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use/vision_routing.py +204 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/computer_use_tool.py +39 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/credential_files.py +455 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/cronjob_tools.py +896 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/debug_helpers.py +105 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/delegate_tool.py +2956 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/discord_tool.py +959 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/env_passthrough.py +163 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/env_probe.py +248 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/__init__.py +14 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/base.py +895 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/daytona.py +270 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/docker.py +1312 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/file_sync.py +403 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/local.py +755 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/managed_modal.py +282 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/modal.py +478 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/modal_utils.py +204 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/singularity.py +265 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/environments/ssh.py +375 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/fal_common.py +163 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/feishu_doc_tool.py +138 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/feishu_drive_tool.py +431 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/file_operations.py +2336 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/file_state.py +332 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/file_tools.py +1632 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/fuzzy_match.py +860 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/homeassistant_tool.py +513 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/image_generation_tool.py +1180 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/interrupt.py +98 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/kanban_tools.py +1431 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/lazy_deps.py +643 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/managed_tool_gateway.py +192 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/mcp_oauth.py +776 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/mcp_oauth_manager.py +607 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/mcp_tool.py +4106 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/memory_tool.py +811 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/microsoft_graph_auth.py +245 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/microsoft_graph_client.py +408 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/mixture_of_agents_tool.py +542 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/neutts_synth.py +104 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/openrouter_client.py +33 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/osv_check.py +169 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/patch_parser.py +622 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/path_security.py +43 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/process_registry.py +1621 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/read_extract.py +248 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/read_terminal_tool.py +93 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/registry.py +589 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/schema_sanitizer.py +483 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/send_message_tool.py +1897 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/session_search_tool.py +784 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skill_manager_tool.py +1125 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skill_provenance.py +78 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skill_usage.py +887 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skills_ast_audit.py +133 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skills_guard.py +1086 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skills_hub.py +3888 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skills_sync.py +932 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/skills_tool.py +1612 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/slash_confirm.py +167 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/terminal_tool.py +2684 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/thread_context.py +120 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/threat_patterns.py +252 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tirith_security.py +822 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/todo_tool.py +308 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tool_backend_helpers.py +182 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tool_output_limits.py +110 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tool_result_storage.py +232 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tool_search.py +735 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/transcription_tools.py +1798 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/tts_tool.py +2731 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/url_safety.py +402 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/video_generation_tool.py +562 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/vision_tools.py +1591 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/voice_mode.py +1218 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/web_tools.py +1569 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/website_policy.py +282 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/write_approval.py +493 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/x_search_tool.py +525 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/xai_http.py +128 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/tools/yuanbao_tools.py +737 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/toolset_distributions.py +364 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/toolsets.py +912 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/trajectory_compressor.py +1579 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine/utils.py +440 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine.egg-info/PKG-INFO +215 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine.egg-info/SOURCES.txt +659 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine.egg-info/dependency_links.txt +1 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine.egg-info/requires.txt +188 -0
- pm_copilot_engine-0.1.0/pm_copilot_engine.egg-info/top_level.txt +3 -0
- pm_copilot_engine-0.1.0/pyproject.toml +324 -0
- pm_copilot_engine-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Nous Research
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pm-copilot-engine
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI Agent Engine for Project Management — forked from Hermes
|
|
5
|
+
Author-email: PM Copilot Team <team@pmcopilot.example>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/your-org/pm-copilot-engine
|
|
8
|
+
Project-URL: Repository, https://github.com/your-org/pm-copilot-engine
|
|
9
|
+
Requires-Python: <3.14,>=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: openai==2.24.0
|
|
13
|
+
Requires-Dist: python-dotenv==1.2.2
|
|
14
|
+
Requires-Dist: fire==0.7.1
|
|
15
|
+
Requires-Dist: httpx[socks]==0.28.1
|
|
16
|
+
Requires-Dist: rich==14.3.3
|
|
17
|
+
Requires-Dist: tenacity==9.1.4
|
|
18
|
+
Requires-Dist: pyyaml==6.0.3
|
|
19
|
+
Requires-Dist: ruamel.yaml==0.18.17
|
|
20
|
+
Requires-Dist: requests==2.33.0
|
|
21
|
+
Requires-Dist: jinja2==3.1.6
|
|
22
|
+
Requires-Dist: pydantic==2.13.4
|
|
23
|
+
Requires-Dist: prompt_toolkit==3.0.52
|
|
24
|
+
Requires-Dist: croniter==6.0.0
|
|
25
|
+
Requires-Dist: packaging==26.0
|
|
26
|
+
Requires-Dist: Markdown==3.10.2
|
|
27
|
+
Requires-Dist: PyJWT[crypto]==2.13.0
|
|
28
|
+
Requires-Dist: urllib3<3,>=2.7.0
|
|
29
|
+
Requires-Dist: tzdata==2025.3; sys_platform == "win32"
|
|
30
|
+
Requires-Dist: psutil==7.2.2
|
|
31
|
+
Requires-Dist: pathspec==1.1.1
|
|
32
|
+
Requires-Dist: fastapi<1,>=0.104.0
|
|
33
|
+
Requires-Dist: uvicorn[standard]<1,>=0.24.0
|
|
34
|
+
Requires-Dist: ptyprocess<1,>=0.7.0; sys_platform != "win32"
|
|
35
|
+
Requires-Dist: pywinpty<3,>=2.0.0; sys_platform == "win32"
|
|
36
|
+
Requires-Dist: Pillow==12.2.0
|
|
37
|
+
Provides-Extra: anthropic
|
|
38
|
+
Requires-Dist: anthropic==0.87.0; extra == "anthropic"
|
|
39
|
+
Provides-Extra: exa
|
|
40
|
+
Requires-Dist: exa-py==2.10.2; extra == "exa"
|
|
41
|
+
Provides-Extra: firecrawl
|
|
42
|
+
Requires-Dist: firecrawl-py==4.17.0; extra == "firecrawl"
|
|
43
|
+
Provides-Extra: parallel-web
|
|
44
|
+
Requires-Dist: parallel-web==0.6.0; extra == "parallel-web"
|
|
45
|
+
Provides-Extra: fal
|
|
46
|
+
Requires-Dist: fal-client==0.13.1; extra == "fal"
|
|
47
|
+
Provides-Extra: edge-tts
|
|
48
|
+
Requires-Dist: edge-tts==7.2.7; extra == "edge-tts"
|
|
49
|
+
Provides-Extra: modal
|
|
50
|
+
Requires-Dist: modal==1.3.4; extra == "modal"
|
|
51
|
+
Provides-Extra: daytona
|
|
52
|
+
Requires-Dist: daytona==0.155.0; extra == "daytona"
|
|
53
|
+
Provides-Extra: hindsight
|
|
54
|
+
Requires-Dist: hindsight-client==0.6.1; extra == "hindsight"
|
|
55
|
+
Provides-Extra: dev
|
|
56
|
+
Requires-Dist: debugpy==1.8.20; extra == "dev"
|
|
57
|
+
Requires-Dist: pytest==9.0.2; extra == "dev"
|
|
58
|
+
Requires-Dist: pytest-asyncio==1.3.0; extra == "dev"
|
|
59
|
+
Requires-Dist: mcp==1.26.0; extra == "dev"
|
|
60
|
+
Requires-Dist: starlette==1.0.1; extra == "dev"
|
|
61
|
+
Requires-Dist: ty==0.0.21; extra == "dev"
|
|
62
|
+
Requires-Dist: ruff==0.15.10; extra == "dev"
|
|
63
|
+
Requires-Dist: setuptools==82.0.1; extra == "dev"
|
|
64
|
+
Provides-Extra: messaging
|
|
65
|
+
Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "messaging"
|
|
66
|
+
Requires-Dist: discord.py[voice]==2.7.1; extra == "messaging"
|
|
67
|
+
Requires-Dist: aiohttp==3.13.4; extra == "messaging"
|
|
68
|
+
Requires-Dist: brotlicffi==1.2.0.1; extra == "messaging"
|
|
69
|
+
Requires-Dist: slack-bolt==1.27.0; extra == "messaging"
|
|
70
|
+
Requires-Dist: slack-sdk==3.40.1; extra == "messaging"
|
|
71
|
+
Requires-Dist: qrcode==7.4.2; extra == "messaging"
|
|
72
|
+
Provides-Extra: cron
|
|
73
|
+
Provides-Extra: slack
|
|
74
|
+
Requires-Dist: slack-bolt==1.27.0; extra == "slack"
|
|
75
|
+
Requires-Dist: slack-sdk==3.40.1; extra == "slack"
|
|
76
|
+
Requires-Dist: aiohttp==3.13.4; extra == "slack"
|
|
77
|
+
Provides-Extra: matrix
|
|
78
|
+
Requires-Dist: mautrix[encryption]==0.21.0; extra == "matrix"
|
|
79
|
+
Requires-Dist: aiosqlite==0.22.1; extra == "matrix"
|
|
80
|
+
Requires-Dist: asyncpg==0.31.0; extra == "matrix"
|
|
81
|
+
Requires-Dist: aiohttp-socks==0.11.0; extra == "matrix"
|
|
82
|
+
Provides-Extra: wecom
|
|
83
|
+
Requires-Dist: defusedxml==0.7.1; extra == "wecom"
|
|
84
|
+
Provides-Extra: cli
|
|
85
|
+
Requires-Dist: simple-term-menu==1.6.6; extra == "cli"
|
|
86
|
+
Provides-Extra: tts-premium
|
|
87
|
+
Requires-Dist: elevenlabs==1.59.0; extra == "tts-premium"
|
|
88
|
+
Provides-Extra: voice
|
|
89
|
+
Requires-Dist: faster-whisper==1.2.1; extra == "voice"
|
|
90
|
+
Requires-Dist: sounddevice==0.5.5; extra == "voice"
|
|
91
|
+
Requires-Dist: numpy==2.4.3; extra == "voice"
|
|
92
|
+
Provides-Extra: pty
|
|
93
|
+
Provides-Extra: honcho
|
|
94
|
+
Requires-Dist: honcho-ai==2.0.1; extra == "honcho"
|
|
95
|
+
Provides-Extra: vision
|
|
96
|
+
Provides-Extra: mcp
|
|
97
|
+
Requires-Dist: mcp==1.26.0; extra == "mcp"
|
|
98
|
+
Requires-Dist: starlette==1.0.1; extra == "mcp"
|
|
99
|
+
Provides-Extra: nemo-relay
|
|
100
|
+
Requires-Dist: nemo-relay==0.3; extra == "nemo-relay"
|
|
101
|
+
Provides-Extra: homeassistant
|
|
102
|
+
Requires-Dist: aiohttp==3.13.4; extra == "homeassistant"
|
|
103
|
+
Provides-Extra: sms
|
|
104
|
+
Requires-Dist: aiohttp==3.13.4; extra == "sms"
|
|
105
|
+
Provides-Extra: computer-use
|
|
106
|
+
Requires-Dist: mcp==1.26.0; extra == "computer-use"
|
|
107
|
+
Requires-Dist: starlette==1.0.1; extra == "computer-use"
|
|
108
|
+
Provides-Extra: acp
|
|
109
|
+
Requires-Dist: agent-client-protocol==0.9.0; extra == "acp"
|
|
110
|
+
Provides-Extra: mistral
|
|
111
|
+
Requires-Dist: mistralai==2.4.8; extra == "mistral"
|
|
112
|
+
Provides-Extra: bedrock
|
|
113
|
+
Requires-Dist: boto3==1.42.89; extra == "bedrock"
|
|
114
|
+
Provides-Extra: azure-identity
|
|
115
|
+
Requires-Dist: azure-identity==1.25.3; extra == "azure-identity"
|
|
116
|
+
Provides-Extra: termux
|
|
117
|
+
Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "termux"
|
|
118
|
+
Requires-Dist: pm-copilot-engine[cron]; extra == "termux"
|
|
119
|
+
Requires-Dist: pm-copilot-engine[cli]; extra == "termux"
|
|
120
|
+
Requires-Dist: pm-copilot-engine[pty]; extra == "termux"
|
|
121
|
+
Requires-Dist: pm-copilot-engine[mcp]; extra == "termux"
|
|
122
|
+
Requires-Dist: pm-copilot-engine[honcho]; extra == "termux"
|
|
123
|
+
Requires-Dist: pm-copilot-engine[acp]; extra == "termux"
|
|
124
|
+
Provides-Extra: termux-all
|
|
125
|
+
Requires-Dist: pm-copilot-engine[termux]; extra == "termux-all"
|
|
126
|
+
Requires-Dist: pm-copilot-engine[google]; extra == "termux-all"
|
|
127
|
+
Requires-Dist: pm-copilot-engine[homeassistant]; extra == "termux-all"
|
|
128
|
+
Requires-Dist: pm-copilot-engine[sms]; extra == "termux-all"
|
|
129
|
+
Requires-Dist: pm-copilot-engine[web]; extra == "termux-all"
|
|
130
|
+
Provides-Extra: dingtalk
|
|
131
|
+
Requires-Dist: dingtalk-stream==0.24.3; extra == "dingtalk"
|
|
132
|
+
Requires-Dist: alibabacloud-dingtalk==2.2.42; extra == "dingtalk"
|
|
133
|
+
Requires-Dist: qrcode==7.4.2; extra == "dingtalk"
|
|
134
|
+
Provides-Extra: feishu
|
|
135
|
+
Requires-Dist: lark-oapi==1.5.3; extra == "feishu"
|
|
136
|
+
Requires-Dist: qrcode==7.4.2; extra == "feishu"
|
|
137
|
+
Provides-Extra: google
|
|
138
|
+
Requires-Dist: google-api-python-client==2.194.0; extra == "google"
|
|
139
|
+
Requires-Dist: google-auth-oauthlib==1.3.1; extra == "google"
|
|
140
|
+
Requires-Dist: google-auth-httplib2==0.3.1; extra == "google"
|
|
141
|
+
Provides-Extra: youtube
|
|
142
|
+
Requires-Dist: youtube-transcript-api==1.2.4; extra == "youtube"
|
|
143
|
+
Provides-Extra: web
|
|
144
|
+
Requires-Dist: fastapi==0.133.1; extra == "web"
|
|
145
|
+
Requires-Dist: uvicorn[standard]==0.41.0; extra == "web"
|
|
146
|
+
Requires-Dist: starlette==1.0.1; extra == "web"
|
|
147
|
+
Provides-Extra: all
|
|
148
|
+
Requires-Dist: pm-copilot-engine[cron]; extra == "all"
|
|
149
|
+
Requires-Dist: pm-copilot-engine[cli]; extra == "all"
|
|
150
|
+
Requires-Dist: pm-copilot-engine[pty]; extra == "all"
|
|
151
|
+
Requires-Dist: pm-copilot-engine[mcp]; extra == "all"
|
|
152
|
+
Requires-Dist: pm-copilot-engine[homeassistant]; extra == "all"
|
|
153
|
+
Requires-Dist: pm-copilot-engine[sms]; extra == "all"
|
|
154
|
+
Requires-Dist: pm-copilot-engine[acp]; extra == "all"
|
|
155
|
+
Requires-Dist: pm-copilot-engine[google]; extra == "all"
|
|
156
|
+
Requires-Dist: pm-copilot-engine[web]; extra == "all"
|
|
157
|
+
Requires-Dist: pm-copilot-engine[youtube]; extra == "all"
|
|
158
|
+
Dynamic: license-file
|
|
159
|
+
|
|
160
|
+
# pm-copilot-engine
|
|
161
|
+
|
|
162
|
+
AI Agent Engine for Project Management — a focused fork of [Hermes](https://github.com/NousResearch/hermes-agent) by NousResearch, packaged as a reusable Python library.
|
|
163
|
+
|
|
164
|
+
## What it is
|
|
165
|
+
|
|
166
|
+
`pm-copilot-engine` exposes the core agent runtime from Hermes as a pip-installable package. It is intended to be embedded in project-management systems that need an LLM agent with tool calling, file/terminal/browser tools, memory, and skill management — without shipping the full Hermes CLI, gateway, TUI, or web dashboard.
|
|
167
|
+
|
|
168
|
+
## Install
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
pip install pm-copilot-engine
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## Quick start
|
|
175
|
+
|
|
176
|
+
```python
|
|
177
|
+
from pm_copilot_engine import AIAgent, registry, TOOLSETS
|
|
178
|
+
|
|
179
|
+
agent = AIAgent(
|
|
180
|
+
base_url="https://api.openai.com/v1",
|
|
181
|
+
api_key="sk-...",
|
|
182
|
+
model="gpt-4o",
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
response = agent.chat("Summarize the project status from ./README.md")
|
|
186
|
+
print(response)
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
## Package layout
|
|
190
|
+
|
|
191
|
+
```text
|
|
192
|
+
pm_copilot_engine/ # Public package
|
|
193
|
+
__init__.py # Exports AIAgent, registry, TOOLSETS
|
|
194
|
+
run_agent.py # AIAgent class
|
|
195
|
+
model_tools.py # Tool dispatch
|
|
196
|
+
toolsets.py # Built-in toolsets
|
|
197
|
+
tools/ # Tool implementations
|
|
198
|
+
agent/ # Agent internals
|
|
199
|
+
providers/ # Provider adapters
|
|
200
|
+
_internal/hermes_cli/ # Internalized config/auth/helpers from Hermes
|
|
201
|
+
plugins/ # Browser/web/memory providers required by core tools
|
|
202
|
+
cron/ # Cron helpers required by core tools
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
## Differences from upstream Hermes
|
|
206
|
+
|
|
207
|
+
- Repackaged under `pm_copilot_engine.*` namespace.
|
|
208
|
+
- Removed CLI entry points (`hermes`, `hermes-agent`, `hermes-acp`).
|
|
209
|
+
- Removed gateway, TUI, web dashboard, Docker, ACP adapter, and optional skills.
|
|
210
|
+
- Kept the internal Hermes config/auth layer as `pm_copilot_engine._internal.hermes_cli`.
|
|
211
|
+
- Preserved bundled browser/web/memory/cron providers needed by the core tool registry.
|
|
212
|
+
|
|
213
|
+
## License
|
|
214
|
+
|
|
215
|
+
MIT — see [LICENSE](LICENSE).
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# pm-copilot-engine
|
|
2
|
+
|
|
3
|
+
AI Agent Engine for Project Management — a focused fork of [Hermes](https://github.com/NousResearch/hermes-agent) by NousResearch, packaged as a reusable Python library.
|
|
4
|
+
|
|
5
|
+
## What it is
|
|
6
|
+
|
|
7
|
+
`pm-copilot-engine` exposes the core agent runtime from Hermes as a pip-installable package. It is intended to be embedded in project-management systems that need an LLM agent with tool calling, file/terminal/browser tools, memory, and skill management — without shipping the full Hermes CLI, gateway, TUI, or web dashboard.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install pm-copilot-engine
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Quick start
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
from pm_copilot_engine import AIAgent, registry, TOOLSETS
|
|
19
|
+
|
|
20
|
+
agent = AIAgent(
|
|
21
|
+
base_url="https://api.openai.com/v1",
|
|
22
|
+
api_key="sk-...",
|
|
23
|
+
model="gpt-4o",
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
response = agent.chat("Summarize the project status from ./README.md")
|
|
27
|
+
print(response)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Package layout
|
|
31
|
+
|
|
32
|
+
```text
|
|
33
|
+
pm_copilot_engine/ # Public package
|
|
34
|
+
__init__.py # Exports AIAgent, registry, TOOLSETS
|
|
35
|
+
run_agent.py # AIAgent class
|
|
36
|
+
model_tools.py # Tool dispatch
|
|
37
|
+
toolsets.py # Built-in toolsets
|
|
38
|
+
tools/ # Tool implementations
|
|
39
|
+
agent/ # Agent internals
|
|
40
|
+
providers/ # Provider adapters
|
|
41
|
+
_internal/hermes_cli/ # Internalized config/auth/helpers from Hermes
|
|
42
|
+
plugins/ # Browser/web/memory providers required by core tools
|
|
43
|
+
cron/ # Cron helpers required by core tools
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Differences from upstream Hermes
|
|
47
|
+
|
|
48
|
+
- Repackaged under `pm_copilot_engine.*` namespace.
|
|
49
|
+
- Removed CLI entry points (`hermes`, `hermes-agent`, `hermes-acp`).
|
|
50
|
+
- Removed gateway, TUI, web dashboard, Docker, ACP adapter, and optional skills.
|
|
51
|
+
- Kept the internal Hermes config/auth layer as `pm_copilot_engine._internal.hermes_cli`.
|
|
52
|
+
- Preserved bundled browser/web/memory/cron providers needed by the core tool registry.
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT — see [LICENSE](LICENSE).
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Cron job scheduling system for Hermes Agent.
|
|
3
|
+
|
|
4
|
+
This module provides scheduled task execution, allowing the agent to:
|
|
5
|
+
- Run automated tasks on schedules (cron expressions, intervals, one-shot)
|
|
6
|
+
- Self-schedule reminders and follow-up tasks
|
|
7
|
+
- Execute tasks in isolated sessions (no prior context)
|
|
8
|
+
|
|
9
|
+
Cron jobs are executed automatically by the gateway daemon:
|
|
10
|
+
hermes gateway install # Install as a user service
|
|
11
|
+
sudo hermes gateway install --system # Linux servers: boot-time system service
|
|
12
|
+
hermes gateway # Or run in foreground
|
|
13
|
+
|
|
14
|
+
The gateway ticks the scheduler every 60 seconds. A file lock prevents
|
|
15
|
+
duplicate execution if multiple processes overlap.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
from cron.jobs import (
|
|
19
|
+
create_job,
|
|
20
|
+
get_job,
|
|
21
|
+
list_jobs,
|
|
22
|
+
remove_job,
|
|
23
|
+
update_job,
|
|
24
|
+
pause_job,
|
|
25
|
+
resume_job,
|
|
26
|
+
trigger_job,
|
|
27
|
+
JOBS_FILE,
|
|
28
|
+
)
|
|
29
|
+
from cron.scheduler import tick
|
|
30
|
+
|
|
31
|
+
__all__ = [
|
|
32
|
+
"create_job",
|
|
33
|
+
"get_job",
|
|
34
|
+
"list_jobs",
|
|
35
|
+
"remove_job",
|
|
36
|
+
"update_job",
|
|
37
|
+
"pause_job",
|
|
38
|
+
"resume_job",
|
|
39
|
+
"trigger_job",
|
|
40
|
+
"tick",
|
|
41
|
+
"JOBS_FILE",
|
|
42
|
+
]
|