calvyn-code 0.14.0
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.
- package/LICENSE +21 -0
- package/README.md +217 -0
- package/README.zh-CN.md +180 -0
- package/acp_adapter/__init__.py +1 -0
- package/acp_adapter/__main__.py +5 -0
- package/acp_adapter/auth.py +68 -0
- package/acp_adapter/bootstrap/__init__.py +0 -0
- package/acp_adapter/bootstrap/bootstrap_browser_tools.ps1 +288 -0
- package/acp_adapter/bootstrap/bootstrap_browser_tools.sh +399 -0
- package/acp_adapter/entry.py +292 -0
- package/acp_adapter/events.py +265 -0
- package/acp_adapter/permissions.py +148 -0
- package/acp_adapter/server.py +1713 -0
- package/acp_adapter/session.py +629 -0
- package/acp_adapter/tools.py +1180 -0
- package/agent/__init__.py +6 -0
- package/agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/__pycache__/account_usage.cpython-312.pyc +0 -0
- package/agent/__pycache__/anthropic_adapter.cpython-312.pyc +0 -0
- package/agent/__pycache__/async_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/auxiliary_client.cpython-312.pyc +0 -0
- package/agent/__pycache__/codex_responses_adapter.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_compressor.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_engine.cpython-312.pyc +0 -0
- package/agent/__pycache__/context_references.cpython-312.pyc +0 -0
- package/agent/__pycache__/credential_pool.cpython-312.pyc +0 -0
- package/agent/__pycache__/curator.cpython-312.pyc +0 -0
- package/agent/__pycache__/display.cpython-312.pyc +0 -0
- package/agent/__pycache__/error_classifier.cpython-312.pyc +0 -0
- package/agent/__pycache__/file_safety.cpython-312.pyc +0 -0
- package/agent/__pycache__/google_code_assist.cpython-312.pyc +0 -0
- package/agent/__pycache__/google_oauth.cpython-312.pyc +0 -0
- package/agent/__pycache__/i18n.cpython-312.pyc +0 -0
- package/agent/__pycache__/image_gen_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/image_gen_registry.cpython-312.pyc +0 -0
- package/agent/__pycache__/insights.cpython-312.pyc +0 -0
- package/agent/__pycache__/lmstudio_reasoning.cpython-312.pyc +0 -0
- package/agent/__pycache__/manual_compression_feedback.cpython-312.pyc +0 -0
- package/agent/__pycache__/markdown_tables.cpython-312.pyc +0 -0
- package/agent/__pycache__/memory_manager.cpython-312.pyc +0 -0
- package/agent/__pycache__/memory_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/model_metadata.cpython-312.pyc +0 -0
- package/agent/__pycache__/models_dev.cpython-312.pyc +0 -0
- package/agent/__pycache__/moonshot_schema.cpython-312.pyc +0 -0
- package/agent/__pycache__/onboarding.cpython-312.pyc +0 -0
- package/agent/__pycache__/portal_tags.cpython-312.pyc +0 -0
- package/agent/__pycache__/prompt_builder.cpython-312.pyc +0 -0
- package/agent/__pycache__/prompt_caching.cpython-312.pyc +0 -0
- package/agent/__pycache__/redact.cpython-312.pyc +0 -0
- package/agent/__pycache__/retry_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/shell_hooks.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_commands.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_preprocessing.cpython-312.pyc +0 -0
- package/agent/__pycache__/skill_utils.cpython-312.pyc +0 -0
- package/agent/__pycache__/subdirectory_hints.cpython-312.pyc +0 -0
- package/agent/__pycache__/think_scrubber.cpython-312.pyc +0 -0
- package/agent/__pycache__/title_generator.cpython-312.pyc +0 -0
- package/agent/__pycache__/tool_guardrails.cpython-312.pyc +0 -0
- package/agent/__pycache__/tool_result_classification.cpython-312.pyc +0 -0
- package/agent/__pycache__/trajectory.cpython-312.pyc +0 -0
- package/agent/__pycache__/usage_pricing.cpython-312.pyc +0 -0
- package/agent/__pycache__/video_gen_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/video_gen_registry.cpython-312.pyc +0 -0
- package/agent/__pycache__/web_search_provider.cpython-312.pyc +0 -0
- package/agent/__pycache__/web_search_registry.cpython-312.pyc +0 -0
- package/agent/account_usage.py +326 -0
- package/agent/anthropic_adapter.py +2087 -0
- package/agent/async_utils.py +68 -0
- package/agent/auxiliary_client.py +4893 -0
- package/agent/bedrock_adapter.py +1276 -0
- package/agent/codex_responses_adapter.py +1084 -0
- package/agent/context_compressor.py +1583 -0
- package/agent/context_engine.py +211 -0
- package/agent/context_references.py +519 -0
- package/agent/copilot_acp_client.py +684 -0
- package/agent/credential_pool.py +1780 -0
- package/agent/credential_sources.py +449 -0
- package/agent/curator.py +1782 -0
- package/agent/curator_backup.py +694 -0
- package/agent/display.py +987 -0
- package/agent/error_classifier.py +1058 -0
- package/agent/file_safety.py +112 -0
- package/agent/gemini_cloudcode_adapter.py +909 -0
- package/agent/gemini_native_adapter.py +971 -0
- package/agent/gemini_schema.py +99 -0
- package/agent/google_code_assist.py +452 -0
- package/agent/google_oauth.py +1062 -0
- package/agent/i18n.py +258 -0
- package/agent/image_gen_provider.py +243 -0
- package/agent/image_gen_registry.py +145 -0
- package/agent/image_routing.py +301 -0
- package/agent/insights.py +931 -0
- package/agent/lmstudio_reasoning.py +48 -0
- package/agent/lsp/__init__.py +106 -0
- package/agent/lsp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/cli.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/client.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/eventlog.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/manager.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/protocol.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/servers.cpython-312.pyc +0 -0
- package/agent/lsp/__pycache__/workspace.cpython-312.pyc +0 -0
- package/agent/lsp/cli.py +308 -0
- package/agent/lsp/client.py +930 -0
- package/agent/lsp/eventlog.py +213 -0
- package/agent/lsp/install.py +376 -0
- package/agent/lsp/manager.py +644 -0
- package/agent/lsp/protocol.py +196 -0
- package/agent/lsp/range_shift.py +149 -0
- package/agent/lsp/reporter.py +78 -0
- package/agent/lsp/servers.py +1040 -0
- package/agent/lsp/workspace.py +223 -0
- package/agent/manual_compression_feedback.py +49 -0
- package/agent/markdown_tables.py +309 -0
- package/agent/memory_manager.py +556 -0
- package/agent/memory_provider.py +279 -0
- package/agent/model_metadata.py +1827 -0
- package/agent/models_dev.py +724 -0
- package/agent/moonshot_schema.py +231 -0
- package/agent/nous_rate_guard.py +326 -0
- package/agent/onboarding.py +193 -0
- package/agent/plugin_llm.py +1046 -0
- package/agent/portal_tags.py +64 -0
- package/agent/prompt_builder.py +1457 -0
- package/agent/prompt_caching.py +79 -0
- package/agent/rate_limit_tracker.py +246 -0
- package/agent/redact.py +403 -0
- package/agent/retry_utils.py +57 -0
- package/agent/shell_hooks.py +837 -0
- package/agent/skill_commands.py +502 -0
- package/agent/skill_preprocessing.py +131 -0
- package/agent/skill_utils.py +512 -0
- package/agent/subdirectory_hints.py +224 -0
- package/agent/think_scrubber.py +386 -0
- package/agent/title_generator.py +171 -0
- package/agent/tool_guardrails.py +458 -0
- package/agent/tool_result_classification.py +26 -0
- package/agent/trajectory.py +56 -0
- package/agent/transports/__init__.py +68 -0
- package/agent/transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/anthropic.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/base.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/bedrock.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/chat_completions.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/codex.cpython-312.pyc +0 -0
- package/agent/transports/__pycache__/types.cpython-312.pyc +0 -0
- package/agent/transports/anthropic.py +179 -0
- package/agent/transports/base.py +89 -0
- package/agent/transports/bedrock.py +154 -0
- package/agent/transports/chat_completions.py +614 -0
- package/agent/transports/codex.py +283 -0
- package/agent/transports/codex_app_server.py +368 -0
- package/agent/transports/codex_app_server_session.py +810 -0
- package/agent/transports/codex_event_projector.py +312 -0
- package/agent/transports/hermes_tools_mcp_server.py +233 -0
- package/agent/transports/types.py +162 -0
- package/agent/usage_pricing.py +877 -0
- package/agent/video_gen_provider.py +300 -0
- package/agent/video_gen_registry.py +117 -0
- package/agent/web_search_provider.py +221 -0
- package/agent/web_search_registry.py +262 -0
- package/assets/banner.png +0 -0
- package/batch_runner.py +1303 -0
- package/bin/calvyn.js +67 -0
- package/calvyn_bootstrap.py +130 -0
- package/calvyn_constants.py +346 -0
- package/calvyn_logging.py +390 -0
- package/calvyn_state.py +2967 -0
- package/calvyn_time.py +105 -0
- package/cli.py +14160 -0
- package/cron/__init__.py +42 -0
- package/cron/__pycache__/__init__.cpython-312.pyc +0 -0
- package/cron/__pycache__/jobs.cpython-312.pyc +0 -0
- package/cron/__pycache__/scheduler.cpython-312.pyc +0 -0
- package/cron/jobs.py +1160 -0
- package/cron/scheduler.py +1832 -0
- package/gateway/__init__.py +35 -0
- package/gateway/__pycache__/__init__.cpython-312.pyc +0 -0
- package/gateway/__pycache__/channel_directory.cpython-312.pyc +0 -0
- package/gateway/__pycache__/config.cpython-312.pyc +0 -0
- package/gateway/__pycache__/delivery.cpython-312.pyc +0 -0
- package/gateway/__pycache__/display_config.cpython-312.pyc +0 -0
- package/gateway/__pycache__/hooks.cpython-312.pyc +0 -0
- package/gateway/__pycache__/pairing.cpython-312.pyc +0 -0
- package/gateway/__pycache__/platform_registry.cpython-312.pyc +0 -0
- package/gateway/__pycache__/restart.cpython-312.pyc +0 -0
- package/gateway/__pycache__/run.cpython-312.pyc +0 -0
- package/gateway/__pycache__/runtime_footer.cpython-312.pyc +0 -0
- package/gateway/__pycache__/session.cpython-312.pyc +0 -0
- package/gateway/__pycache__/session_context.cpython-312.pyc +0 -0
- package/gateway/__pycache__/shutdown_forensics.cpython-312.pyc +0 -0
- package/gateway/__pycache__/slash_access.cpython-312.pyc +0 -0
- package/gateway/__pycache__/status.cpython-312.pyc +0 -0
- package/gateway/__pycache__/stream_consumer.cpython-312.pyc +0 -0
- package/gateway/__pycache__/whatsapp_identity.cpython-312.pyc +0 -0
- package/gateway/assets/telegram-botfather-threads-settings.jpg +0 -0
- package/gateway/builtin_hooks/__init__.py +1 -0
- package/gateway/channel_directory.py +357 -0
- package/gateway/config.py +1873 -0
- package/gateway/delivery.py +258 -0
- package/gateway/display_config.py +206 -0
- package/gateway/hooks.py +210 -0
- package/gateway/mirror.py +179 -0
- package/gateway/pairing.py +322 -0
- package/gateway/platform_registry.py +260 -0
- package/gateway/platforms/ADDING_A_PLATFORM.md +374 -0
- package/gateway/platforms/__init__.py +45 -0
- package/gateway/platforms/__pycache__/__init__.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/base.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/helpers.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/telegram.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/telegram_network.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao_media.cpython-312.pyc +0 -0
- package/gateway/platforms/__pycache__/yuanbao_proto.cpython-312.pyc +0 -0
- package/gateway/platforms/_http_client_limits.py +84 -0
- package/gateway/platforms/api_server.py +3488 -0
- package/gateway/platforms/base.py +3747 -0
- package/gateway/platforms/bluebubbles.py +937 -0
- package/gateway/platforms/dingtalk.py +1473 -0
- package/gateway/platforms/discord.py +5584 -0
- package/gateway/platforms/email.py +773 -0
- package/gateway/platforms/feishu.py +5059 -0
- package/gateway/platforms/feishu_comment.py +1382 -0
- package/gateway/platforms/feishu_comment_rules.py +430 -0
- package/gateway/platforms/helpers.py +279 -0
- package/gateway/platforms/homeassistant.py +449 -0
- package/gateway/platforms/matrix.py +2777 -0
- package/gateway/platforms/mattermost.py +852 -0
- package/gateway/platforms/msgraph_webhook.py +397 -0
- package/gateway/platforms/qqbot/__init__.py +91 -0
- package/gateway/platforms/qqbot/adapter.py +3072 -0
- package/gateway/platforms/qqbot/chunked_upload.py +602 -0
- package/gateway/platforms/qqbot/constants.py +74 -0
- package/gateway/platforms/qqbot/crypto.py +45 -0
- package/gateway/platforms/qqbot/keyboards.py +473 -0
- package/gateway/platforms/qqbot/onboard.py +220 -0
- package/gateway/platforms/qqbot/utils.py +71 -0
- package/gateway/platforms/signal.py +1518 -0
- package/gateway/platforms/signal_rate_limit.py +369 -0
- package/gateway/platforms/slack.py +3028 -0
- package/gateway/platforms/sms.py +377 -0
- package/gateway/platforms/telegram.py +4836 -0
- package/gateway/platforms/telegram_network.py +249 -0
- package/gateway/platforms/webhook.py +806 -0
- package/gateway/platforms/wecom.py +1610 -0
- package/gateway/platforms/wecom_callback.py +403 -0
- package/gateway/platforms/wecom_crypto.py +142 -0
- package/gateway/platforms/weixin.py +2170 -0
- package/gateway/platforms/whatsapp.py +1283 -0
- package/gateway/platforms/yuanbao.py +4873 -0
- package/gateway/platforms/yuanbao_media.py +645 -0
- package/gateway/platforms/yuanbao_proto.py +1209 -0
- package/gateway/platforms/yuanbao_sticker.py +558 -0
- package/gateway/restart.py +20 -0
- package/gateway/run.py +17074 -0
- package/gateway/runtime_footer.py +150 -0
- package/gateway/session.py +1399 -0
- package/gateway/session_context.py +156 -0
- package/gateway/shutdown_forensics.py +462 -0
- package/gateway/slash_access.py +229 -0
- package/gateway/status.py +972 -0
- package/gateway/sticker_cache.py +111 -0
- package/gateway/stream_consumer.py +1286 -0
- package/gateway/whatsapp_identity.py +156 -0
- package/hermes_cli/__init__.py +47 -0
- package/hermes_cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/auth.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/banner.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/browser_connect.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/callbacks.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/checkpoints.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/cli_output.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/codex_models.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/codex_runtime_switch.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/colors.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/commands.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/config.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/copilot_auth.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/curator.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/curses_ui.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/debug.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/default_soul.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/env_loader.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/fallback_cmd.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/gateway.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/gateway_windows.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/goals.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/inventory.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/kanban.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/kanban_db.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/main.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_catalog.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_normalize.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/model_switch.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/models.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/nous_subscription.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/pairing.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/platforms.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/plugins.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/profiles.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/providers.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/pt_input_extras.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/runtime_provider.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/security_advisories.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/setup.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/skills_hub.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/skin_engine.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/stdio.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/timeouts.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/tips.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/tools_config.cpython-312.pyc +0 -0
- package/hermes_cli/__pycache__/voice.cpython-312.pyc +0 -0
- package/hermes_cli/_parser.py +365 -0
- package/hermes_cli/_subprocess_compat.py +175 -0
- package/hermes_cli/auth.py +6299 -0
- package/hermes_cli/auth_commands.py +749 -0
- package/hermes_cli/azure_detect.py +300 -0
- package/hermes_cli/backup.py +938 -0
- package/hermes_cli/banner.py +703 -0
- package/hermes_cli/browser_connect.py +139 -0
- package/hermes_cli/callbacks.py +243 -0
- package/hermes_cli/checkpoints.py +244 -0
- package/hermes_cli/claw.py +810 -0
- package/hermes_cli/cli_output.py +78 -0
- package/hermes_cli/clipboard.py +495 -0
- package/hermes_cli/codex_models.py +198 -0
- package/hermes_cli/codex_runtime_plugin_migration.py +757 -0
- package/hermes_cli/codex_runtime_switch.py +266 -0
- package/hermes_cli/colors.py +38 -0
- package/hermes_cli/commands.py +1728 -0
- package/hermes_cli/completion.py +315 -0
- package/hermes_cli/config.py +5382 -0
- package/hermes_cli/copilot_auth.py +392 -0
- package/hermes_cli/cron.py +313 -0
- package/hermes_cli/curator.py +598 -0
- package/hermes_cli/curses_ui.py +472 -0
- package/hermes_cli/debug.py +747 -0
- package/hermes_cli/default_soul.py +11 -0
- package/hermes_cli/dep_ensure.py +107 -0
- package/hermes_cli/dingtalk_auth.py +293 -0
- package/hermes_cli/doctor.py +1863 -0
- package/hermes_cli/dump.py +326 -0
- package/hermes_cli/env_loader.py +175 -0
- package/hermes_cli/fallback_cmd.py +361 -0
- package/hermes_cli/gateway.py +5422 -0
- package/hermes_cli/gateway_windows.py +692 -0
- package/hermes_cli/goals.py +757 -0
- package/hermes_cli/hooks.py +385 -0
- package/hermes_cli/inventory.py +240 -0
- package/hermes_cli/kanban.py +2252 -0
- package/hermes_cli/kanban_db.py +4840 -0
- package/hermes_cli/kanban_diagnostics.py +776 -0
- package/hermes_cli/kanban_specify.py +266 -0
- package/hermes_cli/logs.py +391 -0
- package/hermes_cli/main.py +12396 -0
- package/hermes_cli/mcp_config.py +781 -0
- package/hermes_cli/memory_setup.py +465 -0
- package/hermes_cli/model_catalog.py +330 -0
- package/hermes_cli/model_normalize.py +473 -0
- package/hermes_cli/model_switch.py +1777 -0
- package/hermes_cli/models.py +3789 -0
- package/hermes_cli/nous_subscription.py +799 -0
- package/hermes_cli/oneshot.py +351 -0
- package/hermes_cli/pairing.py +115 -0
- package/hermes_cli/platforms.py +83 -0
- package/hermes_cli/plugins.py +1562 -0
- package/hermes_cli/plugins_cmd.py +1587 -0
- package/hermes_cli/profile_distribution.py +703 -0
- package/hermes_cli/profiles.py +1319 -0
- package/hermes_cli/providers.py +720 -0
- package/hermes_cli/proxy/__init__.py +20 -0
- package/hermes_cli/proxy/adapters/__init__.py +35 -0
- package/hermes_cli/proxy/adapters/base.py +94 -0
- package/hermes_cli/proxy/adapters/nous_portal.py +137 -0
- package/hermes_cli/proxy/cli.py +141 -0
- package/hermes_cli/proxy/server.py +265 -0
- package/hermes_cli/pt_input_extras.py +83 -0
- package/hermes_cli/pty_bridge.py +237 -0
- package/hermes_cli/relaunch.py +205 -0
- package/hermes_cli/runtime_provider.py +1428 -0
- package/hermes_cli/security_advisories.py +452 -0
- package/hermes_cli/setup.py +3559 -0
- package/hermes_cli/skills_config.py +177 -0
- package/hermes_cli/skills_hub.py +1595 -0
- package/hermes_cli/skin_engine.py +929 -0
- package/hermes_cli/slack_cli.py +160 -0
- package/hermes_cli/status.py +550 -0
- package/hermes_cli/stdio.py +252 -0
- package/hermes_cli/timeouts.py +82 -0
- package/hermes_cli/tips.py +487 -0
- package/hermes_cli/tools_config.py +3151 -0
- package/hermes_cli/uninstall.py +681 -0
- package/hermes_cli/vercel_auth.py +70 -0
- package/hermes_cli/voice.py +846 -0
- package/hermes_cli/web_server.py +4438 -0
- package/hermes_cli/webhook.py +275 -0
- package/locales/af.yaml +350 -0
- package/locales/de.yaml +350 -0
- package/locales/en.yaml +365 -0
- package/locales/es.yaml +350 -0
- package/locales/fr.yaml +350 -0
- package/locales/ga.yaml +354 -0
- package/locales/hu.yaml +350 -0
- package/locales/it.yaml +350 -0
- package/locales/ja.yaml +350 -0
- package/locales/ko.yaml +350 -0
- package/locales/pt.yaml +350 -0
- package/locales/ru.yaml +350 -0
- package/locales/tr.yaml +350 -0
- package/locales/uk.yaml +350 -0
- package/locales/zh-hant.yaml +350 -0
- package/locales/zh.yaml +350 -0
- package/mcp_serve.py +898 -0
- package/model_tools.py +899 -0
- package/optional-skills/DESCRIPTION.md +24 -0
- package/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
- package/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +144 -0
- package/optional-skills/autonomous-ai-agents/honcho/SKILL.md +431 -0
- package/optional-skills/blockchain/evm/SKILL.md +211 -0
- package/optional-skills/blockchain/evm/scripts/evm_client.py +1508 -0
- package/optional-skills/blockchain/hyperliquid/SKILL.md +211 -0
- package/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1660 -0
- package/optional-skills/blockchain/solana/SKILL.md +208 -0
- package/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
- package/optional-skills/communication/DESCRIPTION.md +1 -0
- package/optional-skills/communication/one-three-one-rule/SKILL.md +104 -0
- package/optional-skills/creative/blender-mcp/SKILL.md +117 -0
- package/optional-skills/creative/concept-diagrams/SKILL.md +362 -0
- package/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
- package/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
- package/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
- package/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
- package/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
- package/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
- package/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
- package/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
- package/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
- package/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
- package/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
- package/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
- package/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
- package/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
- package/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
- package/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
- package/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
- package/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
- package/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
- package/optional-skills/creative/hyperframes/SKILL.md +191 -0
- package/optional-skills/creative/hyperframes/references/cli.md +185 -0
- package/optional-skills/creative/hyperframes/references/composition.md +129 -0
- package/optional-skills/creative/hyperframes/references/features.md +289 -0
- package/optional-skills/creative/hyperframes/references/gsap.md +136 -0
- package/optional-skills/creative/hyperframes/references/troubleshooting.md +137 -0
- package/optional-skills/creative/hyperframes/references/website-to-video.md +145 -0
- package/optional-skills/creative/hyperframes/scripts/setup.sh +135 -0
- package/optional-skills/creative/kanban-video-orchestrator/SKILL.md +207 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/brief.md.tmpl +79 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +185 -0
- package/optional-skills/creative/kanban-video-orchestrator/assets/soul.md.tmpl +38 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/examples.md +227 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/intake.md +166 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +276 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/monitoring.md +180 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/role-archetypes.md +298 -0
- package/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +317 -0
- package/optional-skills/creative/kanban-video-orchestrator/scripts/bootstrap_pipeline.py +501 -0
- package/optional-skills/creative/kanban-video-orchestrator/scripts/monitor.py +195 -0
- package/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
- package/optional-skills/creative/meme-generation/SKILL.md +130 -0
- package/optional-skills/creative/meme-generation/scripts/generate_meme.py +471 -0
- package/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
- package/optional-skills/devops/cli/SKILL.md +156 -0
- package/optional-skills/devops/cli/references/app-discovery.md +112 -0
- package/optional-skills/devops/cli/references/authentication.md +59 -0
- package/optional-skills/devops/cli/references/cli-reference.md +104 -0
- package/optional-skills/devops/cli/references/running-apps.md +171 -0
- package/optional-skills/devops/docker-management/SKILL.md +281 -0
- package/optional-skills/devops/pinggy-tunnel/SKILL.md +309 -0
- package/optional-skills/devops/watchers/SKILL.md +112 -0
- package/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
- package/optional-skills/devops/watchers/scripts/watch_github.py +168 -0
- package/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
- package/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
- package/optional-skills/dogfood/DESCRIPTION.md +3 -0
- package/optional-skills/dogfood/adversarial-ux-test/SKILL.md +191 -0
- package/optional-skills/email/agentmail/SKILL.md +126 -0
- package/optional-skills/finance/3-statement-model/SKILL.md +433 -0
- package/optional-skills/finance/3-statement-model/references/formatting.md +118 -0
- package/optional-skills/finance/3-statement-model/references/formulas.md +292 -0
- package/optional-skills/finance/3-statement-model/references/sec-filings.md +125 -0
- package/optional-skills/finance/comps-analysis/SKILL.md +662 -0
- package/optional-skills/finance/dcf-model/SKILL.md +1270 -0
- package/optional-skills/finance/dcf-model/TROUBLESHOOTING.md +40 -0
- package/optional-skills/finance/dcf-model/requirements.txt +7 -0
- package/optional-skills/finance/dcf-model/scripts/validate_dcf.py +292 -0
- package/optional-skills/finance/excel-author/SKILL.md +244 -0
- package/optional-skills/finance/excel-author/scripts/recalc.py +88 -0
- package/optional-skills/finance/lbo-model/SKILL.md +291 -0
- package/optional-skills/finance/merger-model/SKILL.md +144 -0
- package/optional-skills/finance/pptx-author/SKILL.md +173 -0
- package/optional-skills/finance/stocks/SKILL.md +95 -0
- package/optional-skills/finance/stocks/scripts/stocks_client.py +755 -0
- package/optional-skills/health/DESCRIPTION.md +1 -0
- package/optional-skills/health/fitness-nutrition/SKILL.md +256 -0
- package/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
- package/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
- package/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +86 -0
- package/optional-skills/health/neuroskill-bci/SKILL.md +459 -0
- package/optional-skills/health/neuroskill-bci/references/api.md +286 -0
- package/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
- package/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
- package/optional-skills/mcp/DESCRIPTION.md +3 -0
- package/optional-skills/mcp/fastmcp/SKILL.md +300 -0
- package/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
- package/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
- package/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
- package/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
- package/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
- package/optional-skills/mcp/mcporter/SKILL.md +123 -0
- package/optional-skills/migration/DESCRIPTION.md +2 -0
- package/optional-skills/migration/openclaw-migration/SKILL.md +298 -0
- package/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
- package/optional-skills/mlops/accelerate/SKILL.md +336 -0
- package/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
- package/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
- package/optional-skills/mlops/accelerate/references/performance.md +525 -0
- package/optional-skills/mlops/chroma/SKILL.md +410 -0
- package/optional-skills/mlops/chroma/references/integration.md +38 -0
- package/optional-skills/mlops/clip/SKILL.md +257 -0
- package/optional-skills/mlops/clip/references/applications.md +207 -0
- package/optional-skills/mlops/faiss/SKILL.md +225 -0
- package/optional-skills/mlops/faiss/references/index_types.md +280 -0
- package/optional-skills/mlops/flash-attention/SKILL.md +367 -0
- package/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
- package/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
- package/optional-skills/mlops/guidance/SKILL.md +576 -0
- package/optional-skills/mlops/guidance/references/backends.md +554 -0
- package/optional-skills/mlops/guidance/references/constraints.md +674 -0
- package/optional-skills/mlops/guidance/references/examples.md +767 -0
- package/optional-skills/mlops/huggingface-tokenizers/SKILL.md +520 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
- package/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
- package/optional-skills/mlops/inference/outlines/SKILL.md +656 -0
- package/optional-skills/mlops/inference/outlines/references/backends.md +615 -0
- package/optional-skills/mlops/inference/outlines/references/examples.md +773 -0
- package/optional-skills/mlops/inference/outlines/references/json_generation.md +652 -0
- package/optional-skills/mlops/instructor/SKILL.md +744 -0
- package/optional-skills/mlops/instructor/references/examples.md +107 -0
- package/optional-skills/mlops/instructor/references/providers.md +70 -0
- package/optional-skills/mlops/instructor/references/validation.md +606 -0
- package/optional-skills/mlops/lambda-labs/SKILL.md +549 -0
- package/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
- package/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
- package/optional-skills/mlops/llava/SKILL.md +308 -0
- package/optional-skills/mlops/llava/references/training.md +197 -0
- package/optional-skills/mlops/modal/SKILL.md +345 -0
- package/optional-skills/mlops/modal/references/advanced-usage.md +503 -0
- package/optional-skills/mlops/modal/references/troubleshooting.md +494 -0
- package/optional-skills/mlops/nemo-curator/SKILL.md +387 -0
- package/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
- package/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
- package/optional-skills/mlops/peft/SKILL.md +435 -0
- package/optional-skills/mlops/peft/references/advanced-usage.md +514 -0
- package/optional-skills/mlops/peft/references/troubleshooting.md +480 -0
- package/optional-skills/mlops/pinecone/SKILL.md +362 -0
- package/optional-skills/mlops/pinecone/references/deployment.md +181 -0
- package/optional-skills/mlops/pytorch-fsdp/SKILL.md +130 -0
- package/optional-skills/mlops/pytorch-fsdp/references/index.md +7 -0
- package/optional-skills/mlops/pytorch-fsdp/references/other.md +4261 -0
- package/optional-skills/mlops/pytorch-lightning/SKILL.md +350 -0
- package/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
- package/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
- package/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
- package/optional-skills/mlops/qdrant/SKILL.md +497 -0
- package/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
- package/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
- package/optional-skills/mlops/saelens/SKILL.md +390 -0
- package/optional-skills/mlops/saelens/references/README.md +69 -0
- package/optional-skills/mlops/saelens/references/api.md +333 -0
- package/optional-skills/mlops/saelens/references/tutorials.md +318 -0
- package/optional-skills/mlops/simpo/SKILL.md +223 -0
- package/optional-skills/mlops/simpo/references/datasets.md +478 -0
- package/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
- package/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
- package/optional-skills/mlops/slime/SKILL.md +468 -0
- package/optional-skills/mlops/slime/references/api-reference.md +392 -0
- package/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
- package/optional-skills/mlops/stable-diffusion/SKILL.md +523 -0
- package/optional-skills/mlops/stable-diffusion/references/advanced-usage.md +716 -0
- package/optional-skills/mlops/stable-diffusion/references/troubleshooting.md +555 -0
- package/optional-skills/mlops/tensorrt-llm/SKILL.md +191 -0
- package/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
- package/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
- package/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
- package/optional-skills/mlops/torchtitan/SKILL.md +362 -0
- package/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
- package/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
- package/optional-skills/mlops/torchtitan/references/float8.md +133 -0
- package/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
- package/optional-skills/mlops/training/axolotl/SKILL.md +166 -0
- package/optional-skills/mlops/training/axolotl/references/api.md +5548 -0
- package/optional-skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
- package/optional-skills/mlops/training/axolotl/references/index.md +15 -0
- package/optional-skills/mlops/training/axolotl/references/other.md +3563 -0
- package/optional-skills/mlops/training/trl-fine-tuning/SKILL.md +463 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/grpo-training.md +504 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
- package/optional-skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
- package/optional-skills/mlops/training/trl-fine-tuning/templates/basic_grpo_training.py +228 -0
- package/optional-skills/mlops/training/unsloth/SKILL.md +84 -0
- package/optional-skills/mlops/training/unsloth/references/index.md +7 -0
- package/optional-skills/mlops/training/unsloth/references/llms-full.md +16799 -0
- package/optional-skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
- package/optional-skills/mlops/training/unsloth/references/llms.md +82 -0
- package/optional-skills/mlops/whisper/SKILL.md +321 -0
- package/optional-skills/mlops/whisper/references/languages.md +189 -0
- package/optional-skills/productivity/canvas/SKILL.md +98 -0
- package/optional-skills/productivity/canvas/scripts/canvas_api.py +157 -0
- package/optional-skills/productivity/here-now/SKILL.md +217 -0
- package/optional-skills/productivity/here-now/scripts/drive.sh +406 -0
- package/optional-skills/productivity/here-now/scripts/publish.sh +445 -0
- package/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
- package/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
- package/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
- package/optional-skills/productivity/shop-app/SKILL.md +340 -0
- package/optional-skills/productivity/shopify/SKILL.md +373 -0
- package/optional-skills/productivity/siyuan/SKILL.md +298 -0
- package/optional-skills/productivity/telephony/SKILL.md +418 -0
- package/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
- package/optional-skills/research/bioinformatics/SKILL.md +235 -0
- package/optional-skills/research/darwinian-evolver/SKILL.md +199 -0
- package/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
- package/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +69 -0
- package/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
- package/optional-skills/research/domain-intel/SKILL.md +97 -0
- package/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
- package/optional-skills/research/drug-discovery/SKILL.md +227 -0
- package/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
- package/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
- package/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
- package/optional-skills/research/duckduckgo-search/SKILL.md +238 -0
- package/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
- package/optional-skills/research/gitnexus-explorer/SKILL.md +214 -0
- package/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
- package/optional-skills/research/osint-investigation/SKILL.md +277 -0
- package/optional-skills/research/osint-investigation/references/sources/courtlistener.md +98 -0
- package/optional-skills/research/osint-investigation/references/sources/gdelt.md +104 -0
- package/optional-skills/research/osint-investigation/references/sources/icij-offshore.md +104 -0
- package/optional-skills/research/osint-investigation/references/sources/nyc-acris.md +90 -0
- package/optional-skills/research/osint-investigation/references/sources/ofac-sdn.md +92 -0
- package/optional-skills/research/osint-investigation/references/sources/opencorporates.md +103 -0
- package/optional-skills/research/osint-investigation/references/sources/sec-edgar.md +83 -0
- package/optional-skills/research/osint-investigation/references/sources/senate-ld.md +89 -0
- package/optional-skills/research/osint-investigation/references/sources/usaspending.md +97 -0
- package/optional-skills/research/osint-investigation/references/sources/wayback.md +93 -0
- package/optional-skills/research/osint-investigation/references/sources/wikipedia.md +107 -0
- package/optional-skills/research/osint-investigation/scripts/_http.py +82 -0
- package/optional-skills/research/osint-investigation/scripts/_normalize.py +67 -0
- package/optional-skills/research/osint-investigation/scripts/build_findings.py +221 -0
- package/optional-skills/research/osint-investigation/scripts/entity_resolution.py +228 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_courtlistener.py +149 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_gdelt.py +162 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_icij_offshore.py +234 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_nyc_acris.py +203 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_ofac_sdn.py +175 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_opencorporates.py +192 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_sec_edgar.py +184 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_senate_ld.py +146 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_usaspending.py +170 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_wayback.py +142 -0
- package/optional-skills/research/osint-investigation/scripts/fetch_wikipedia.py +267 -0
- package/optional-skills/research/osint-investigation/scripts/timing_analysis.py +253 -0
- package/optional-skills/research/osint-investigation/templates/source-template.md +59 -0
- package/optional-skills/research/parallel-cli/SKILL.md +391 -0
- package/optional-skills/research/qmd/SKILL.md +441 -0
- package/optional-skills/research/scrapling/SKILL.md +336 -0
- package/optional-skills/research/searxng-search/SKILL.md +212 -0
- package/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
- package/optional-skills/security/1password/SKILL.md +163 -0
- package/optional-skills/security/1password/references/cli-examples.md +31 -0
- package/optional-skills/security/1password/references/get-started.md +21 -0
- package/optional-skills/security/DESCRIPTION.md +3 -0
- package/optional-skills/security/oss-forensics/SKILL.md +423 -0
- package/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
- package/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
- package/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
- package/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
- package/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
- package/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
- package/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
- package/optional-skills/security/sherlock/SKILL.md +193 -0
- package/optional-skills/software-development/rest-graphql-debug/SKILL.md +514 -0
- package/optional-skills/web-development/DESCRIPTION.md +5 -0
- package/optional-skills/web-development/page-agent/SKILL.md +190 -0
- package/package.json +78 -0
- package/plugins/__init__.py +1 -0
- package/plugins/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/context_engine/__init__.py +219 -0
- package/plugins/disk-cleanup/README.md +51 -0
- package/plugins/disk-cleanup/__init__.py +316 -0
- package/plugins/disk-cleanup/disk_cleanup.py +497 -0
- package/plugins/disk-cleanup/plugin.yaml +7 -0
- package/plugins/example-dashboard/dashboard/manifest.json +14 -0
- package/plugins/example-dashboard/dashboard/plugin_api.py +17 -0
- package/plugins/google_meet/README.md +131 -0
- package/plugins/google_meet/SKILL.md +148 -0
- package/plugins/google_meet/__init__.py +103 -0
- package/plugins/google_meet/audio_bridge.py +244 -0
- package/plugins/google_meet/cli.py +479 -0
- package/plugins/google_meet/meet_bot.py +852 -0
- package/plugins/google_meet/node/__init__.py +54 -0
- package/plugins/google_meet/node/cli.py +125 -0
- package/plugins/google_meet/node/client.py +107 -0
- package/plugins/google_meet/node/protocol.py +124 -0
- package/plugins/google_meet/node/registry.py +113 -0
- package/plugins/google_meet/node/server.py +201 -0
- package/plugins/google_meet/plugin.yaml +16 -0
- package/plugins/google_meet/process_manager.py +324 -0
- package/plugins/google_meet/realtime/__init__.py +10 -0
- package/plugins/google_meet/realtime/openai_client.py +332 -0
- package/plugins/google_meet/tools.py +348 -0
- package/plugins/hermes-achievements/LICENSE +21 -0
- package/plugins/hermes-achievements/README.md +150 -0
- package/plugins/hermes-achievements/dashboard/dist/index.js +732 -0
- package/plugins/hermes-achievements/dashboard/dist/style.css +146 -0
- package/plugins/hermes-achievements/dashboard/manifest.json +11 -0
- package/plugins/hermes-achievements/dashboard/plugin_api.py +1062 -0
- package/plugins/hermes-achievements/docs/achievements-performance-implementation-plan.md +157 -0
- package/plugins/hermes-achievements/docs/achievements-performance-implementation-spec.md +219 -0
- package/plugins/hermes-achievements/docs/achievements-performance-spec.md +174 -0
- package/plugins/hermes-achievements/docs/assets/achievements-dashboard-hd.png +0 -0
- package/plugins/hermes-achievements/docs/assets/achievements-tier-showcase-hd.png +0 -0
- package/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
- package/plugins/image_gen/openai/__init__.py +303 -0
- package/plugins/image_gen/openai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/openai/plugin.yaml +7 -0
- package/plugins/image_gen/openai-codex/__init__.py +378 -0
- package/plugins/image_gen/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/openai-codex/plugin.yaml +5 -0
- package/plugins/image_gen/xai/__init__.py +316 -0
- package/plugins/image_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/image_gen/xai/plugin.yaml +7 -0
- package/plugins/kanban/dashboard/dist/index.js +3143 -0
- package/plugins/kanban/dashboard/dist/style.css +1500 -0
- package/plugins/kanban/dashboard/manifest.json +14 -0
- package/plugins/kanban/dashboard/plugin_api.py +1612 -0
- package/plugins/kanban/systemd/hermes-kanban-dispatcher.service +32 -0
- package/plugins/memory/__init__.py +408 -0
- package/plugins/memory/byterover/README.md +41 -0
- package/plugins/memory/byterover/__init__.py +384 -0
- package/plugins/memory/byterover/plugin.yaml +9 -0
- package/plugins/memory/hindsight/README.md +138 -0
- package/plugins/memory/hindsight/__init__.py +1758 -0
- package/plugins/memory/hindsight/plugin.yaml +8 -0
- package/plugins/memory/holographic/README.md +36 -0
- package/plugins/memory/holographic/__init__.py +409 -0
- package/plugins/memory/holographic/holographic.py +203 -0
- package/plugins/memory/holographic/plugin.yaml +5 -0
- package/plugins/memory/holographic/retrieval.py +593 -0
- package/plugins/memory/holographic/store.py +579 -0
- package/plugins/memory/honcho/README.md +328 -0
- package/plugins/memory/honcho/__init__.py +1329 -0
- package/plugins/memory/honcho/cli.py +1452 -0
- package/plugins/memory/honcho/client.py +784 -0
- package/plugins/memory/honcho/plugin.yaml +7 -0
- package/plugins/memory/honcho/session.py +1255 -0
- package/plugins/memory/mem0/README.md +38 -0
- package/plugins/memory/mem0/__init__.py +374 -0
- package/plugins/memory/mem0/plugin.yaml +5 -0
- package/plugins/memory/openviking/README.md +40 -0
- package/plugins/memory/openviking/__init__.py +945 -0
- package/plugins/memory/openviking/plugin.yaml +9 -0
- package/plugins/memory/retaindb/README.md +40 -0
- package/plugins/memory/retaindb/__init__.py +767 -0
- package/plugins/memory/retaindb/plugin.yaml +7 -0
- package/plugins/memory/supermemory/README.md +99 -0
- package/plugins/memory/supermemory/__init__.py +792 -0
- package/plugins/memory/supermemory/plugin.yaml +5 -0
- package/plugins/model-providers/README.md +70 -0
- package/plugins/model-providers/ai-gateway/__init__.py +43 -0
- package/plugins/model-providers/ai-gateway/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/ai-gateway/plugin.yaml +5 -0
- package/plugins/model-providers/alibaba/__init__.py +13 -0
- package/plugins/model-providers/alibaba/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/alibaba/plugin.yaml +5 -0
- package/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
- package/plugins/model-providers/alibaba-coding-plan/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
- package/plugins/model-providers/anthropic/__init__.py +52 -0
- package/plugins/model-providers/anthropic/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/anthropic/plugin.yaml +5 -0
- package/plugins/model-providers/arcee/__init__.py +13 -0
- package/plugins/model-providers/arcee/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/arcee/plugin.yaml +5 -0
- package/plugins/model-providers/azure-foundry/__init__.py +21 -0
- package/plugins/model-providers/azure-foundry/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
- package/plugins/model-providers/bedrock/__init__.py +29 -0
- package/plugins/model-providers/bedrock/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/bedrock/plugin.yaml +5 -0
- package/plugins/model-providers/copilot/__init__.py +58 -0
- package/plugins/model-providers/copilot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/copilot/plugin.yaml +5 -0
- package/plugins/model-providers/copilot-acp/__init__.py +34 -0
- package/plugins/model-providers/copilot-acp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
- package/plugins/model-providers/custom/__init__.py +68 -0
- package/plugins/model-providers/custom/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/custom/plugin.yaml +5 -0
- package/plugins/model-providers/deepseek/__init__.py +99 -0
- package/plugins/model-providers/deepseek/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/deepseek/plugin.yaml +5 -0
- package/plugins/model-providers/gemini/__init__.py +72 -0
- package/plugins/model-providers/gemini/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/gemini/plugin.yaml +5 -0
- package/plugins/model-providers/gmi/__init__.py +31 -0
- package/plugins/model-providers/gmi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/gmi/plugin.yaml +5 -0
- package/plugins/model-providers/huggingface/__init__.py +20 -0
- package/plugins/model-providers/huggingface/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/huggingface/plugin.yaml +5 -0
- package/plugins/model-providers/kilocode/__init__.py +14 -0
- package/plugins/model-providers/kilocode/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/kilocode/plugin.yaml +5 -0
- package/plugins/model-providers/kimi-coding/__init__.py +71 -0
- package/plugins/model-providers/kimi-coding/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
- package/plugins/model-providers/minimax/__init__.py +45 -0
- package/plugins/model-providers/minimax/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/minimax/plugin.yaml +5 -0
- package/plugins/model-providers/nous/__init__.py +54 -0
- package/plugins/model-providers/nous/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/nous/plugin.yaml +5 -0
- package/plugins/model-providers/novita/__init__.py +27 -0
- package/plugins/model-providers/novita/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/novita/plugin.yaml +5 -0
- package/plugins/model-providers/nvidia/__init__.py +21 -0
- package/plugins/model-providers/nvidia/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/nvidia/plugin.yaml +5 -0
- package/plugins/model-providers/ollama-cloud/__init__.py +14 -0
- package/plugins/model-providers/ollama-cloud/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
- package/plugins/model-providers/openai-codex/__init__.py +15 -0
- package/plugins/model-providers/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/openai-codex/plugin.yaml +5 -0
- package/plugins/model-providers/opencode-zen/__init__.py +30 -0
- package/plugins/model-providers/opencode-zen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
- package/plugins/model-providers/openrouter/__init__.py +115 -0
- package/plugins/model-providers/openrouter/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/openrouter/plugin.yaml +5 -0
- package/plugins/model-providers/qwen-oauth/__init__.py +82 -0
- package/plugins/model-providers/qwen-oauth/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
- package/plugins/model-providers/stepfun/__init__.py +14 -0
- package/plugins/model-providers/stepfun/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/stepfun/plugin.yaml +5 -0
- package/plugins/model-providers/xai/__init__.py +15 -0
- package/plugins/model-providers/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/xai/plugin.yaml +5 -0
- package/plugins/model-providers/xiaomi/__init__.py +14 -0
- package/plugins/model-providers/xiaomi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/xiaomi/plugin.yaml +5 -0
- package/plugins/model-providers/zai/__init__.py +21 -0
- package/plugins/model-providers/zai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/model-providers/zai/plugin.yaml +5 -0
- package/plugins/observability/langfuse/README.md +53 -0
- package/plugins/observability/langfuse/__init__.py +1004 -0
- package/plugins/observability/langfuse/plugin.yaml +14 -0
- package/plugins/platforms/google_chat/__init__.py +3 -0
- package/plugins/platforms/google_chat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/google_chat/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/google_chat/adapter.py +3343 -0
- package/plugins/platforms/google_chat/oauth.py +639 -0
- package/plugins/platforms/google_chat/plugin.yaml +39 -0
- package/plugins/platforms/irc/__init__.py +3 -0
- package/plugins/platforms/irc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/irc/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/irc/adapter.py +969 -0
- package/plugins/platforms/irc/plugin.yaml +54 -0
- package/plugins/platforms/line/__init__.py +3 -0
- package/plugins/platforms/line/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/line/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/line/adapter.py +1639 -0
- package/plugins/platforms/line/plugin.yaml +65 -0
- package/plugins/platforms/simplex/__init__.py +3 -0
- package/plugins/platforms/simplex/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/simplex/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/simplex/adapter.py +746 -0
- package/plugins/platforms/simplex/plugin.yaml +37 -0
- package/plugins/platforms/teams/__init__.py +3 -0
- package/plugins/platforms/teams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/platforms/teams/__pycache__/adapter.cpython-312.pyc +0 -0
- package/plugins/platforms/teams/adapter.py +1188 -0
- package/plugins/platforms/teams/plugin.yaml +48 -0
- package/plugins/spotify/__init__.py +66 -0
- package/plugins/spotify/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/spotify/__pycache__/client.cpython-312.pyc +0 -0
- package/plugins/spotify/__pycache__/tools.cpython-312.pyc +0 -0
- package/plugins/spotify/client.py +435 -0
- package/plugins/spotify/plugin.yaml +13 -0
- package/plugins/spotify/tools.py +454 -0
- package/plugins/teams_pipeline/__init__.py +23 -0
- package/plugins/teams_pipeline/cli.py +463 -0
- package/plugins/teams_pipeline/meetings.py +333 -0
- package/plugins/teams_pipeline/models.py +350 -0
- package/plugins/teams_pipeline/pipeline.py +692 -0
- package/plugins/teams_pipeline/plugin.yaml +9 -0
- package/plugins/teams_pipeline/runtime.py +135 -0
- package/plugins/teams_pipeline/store.py +194 -0
- package/plugins/teams_pipeline/subscriptions.py +249 -0
- package/plugins/video_gen/fal/__init__.py +523 -0
- package/plugins/video_gen/fal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/video_gen/fal/plugin.yaml +7 -0
- package/plugins/video_gen/xai/__init__.py +441 -0
- package/plugins/video_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/video_gen/xai/plugin.yaml +7 -0
- package/plugins/web/__init__.py +7 -0
- package/plugins/web/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/__init__.py +14 -0
- package/plugins/web/brave_free/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/brave_free/plugin.yaml +7 -0
- package/plugins/web/brave_free/provider.py +137 -0
- package/plugins/web/ddgs/__init__.py +15 -0
- package/plugins/web/ddgs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/ddgs/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/ddgs/plugin.yaml +7 -0
- package/plugins/web/ddgs/provider.py +104 -0
- package/plugins/web/exa/__init__.py +15 -0
- package/plugins/web/exa/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/exa/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/exa/plugin.yaml +7 -0
- package/plugins/web/exa/provider.py +212 -0
- package/plugins/web/firecrawl/__init__.py +28 -0
- package/plugins/web/firecrawl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/firecrawl/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/firecrawl/plugin.yaml +7 -0
- package/plugins/web/firecrawl/provider.py +773 -0
- package/plugins/web/parallel/__init__.py +16 -0
- package/plugins/web/parallel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/parallel/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/parallel/plugin.yaml +7 -0
- package/plugins/web/parallel/provider.py +291 -0
- package/plugins/web/searxng/__init__.py +15 -0
- package/plugins/web/searxng/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/searxng/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/searxng/plugin.yaml +7 -0
- package/plugins/web/searxng/provider.py +140 -0
- package/plugins/web/tavily/__init__.py +15 -0
- package/plugins/web/tavily/__pycache__/__init__.cpython-312.pyc +0 -0
- package/plugins/web/tavily/__pycache__/provider.cpython-312.pyc +0 -0
- package/plugins/web/tavily/plugin.yaml +7 -0
- package/plugins/web/tavily/provider.py +285 -0
- package/providers/README.md +78 -0
- package/providers/__init__.py +192 -0
- package/providers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/providers/__pycache__/base.cpython-312.pyc +0 -0
- package/providers/base.py +184 -0
- package/pyproject.toml +255 -0
- package/run_agent.py +16409 -0
- package/scripts/benchmark_browser_eval.py +138 -0
- package/scripts/build_model_catalog.py +95 -0
- package/scripts/build_skills_index.py +325 -0
- package/scripts/check-windows-footguns.py +624 -0
- package/scripts/contributor_audit.py +473 -0
- package/scripts/discord-voice-doctor.py +396 -0
- package/scripts/hermes-gateway +416 -0
- package/scripts/install.cmd +28 -0
- package/scripts/install.ps1 +1611 -0
- package/scripts/install.sh +2007 -0
- package/scripts/install_psutil_android.py +117 -0
- package/scripts/keystroke_diagnostic.py +81 -0
- package/scripts/kill_modal.sh +34 -0
- package/scripts/lib/node-bootstrap.sh +238 -0
- package/scripts/lint_diff.py +207 -0
- package/scripts/postinstall.js +150 -0
- package/scripts/profile-tui.py +626 -0
- package/scripts/release.py +1680 -0
- package/scripts/run_tests.sh +129 -0
- package/scripts/sample_and_compress.py +409 -0
- package/scripts/setup_open_webui.sh +349 -0
- package/scripts/whatsapp-bridge/allowlist.js +88 -0
- package/scripts/whatsapp-bridge/allowlist.test.mjs +80 -0
- package/scripts/whatsapp-bridge/bridge.js +729 -0
- package/scripts/whatsapp-bridge/package-lock.json +2141 -0
- package/scripts/whatsapp-bridge/package.json +19 -0
- package/skills/apple/DESCRIPTION.md +2 -0
- package/skills/apple/apple-notes/SKILL.md +90 -0
- package/skills/apple/apple-reminders/SKILL.md +98 -0
- package/skills/apple/findmy/SKILL.md +131 -0
- package/skills/apple/imessage/SKILL.md +102 -0
- package/skills/apple/macos-computer-use/SKILL.md +201 -0
- package/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
- package/skills/autonomous-ai-agents/claude-code/SKILL.md +745 -0
- package/skills/autonomous-ai-agents/codex/SKILL.md +130 -0
- package/skills/autonomous-ai-agents/hermes-agent/SKILL.md +1014 -0
- package/skills/autonomous-ai-agents/opencode/SKILL.md +219 -0
- package/skills/creative/DESCRIPTION.md +3 -0
- package/skills/creative/architecture-diagram/SKILL.md +148 -0
- package/skills/creative/architecture-diagram/templates/template.html +319 -0
- package/skills/creative/ascii-art/SKILL.md +322 -0
- package/skills/creative/ascii-video/README.md +290 -0
- package/skills/creative/ascii-video/SKILL.md +241 -0
- package/skills/creative/ascii-video/references/architecture.md +802 -0
- package/skills/creative/ascii-video/references/composition.md +892 -0
- package/skills/creative/ascii-video/references/effects.md +1865 -0
- package/skills/creative/ascii-video/references/inputs.md +685 -0
- package/skills/creative/ascii-video/references/optimization.md +688 -0
- package/skills/creative/ascii-video/references/scenes.md +1011 -0
- package/skills/creative/ascii-video/references/shaders.md +1385 -0
- package/skills/creative/ascii-video/references/troubleshooting.md +367 -0
- package/skills/creative/baoyu-comic/PORT_NOTES.md +77 -0
- package/skills/creative/baoyu-comic/SKILL.md +247 -0
- package/skills/creative/baoyu-comic/references/analysis-framework.md +176 -0
- package/skills/creative/baoyu-comic/references/art-styles/chalk.md +101 -0
- package/skills/creative/baoyu-comic/references/art-styles/ink-brush.md +97 -0
- package/skills/creative/baoyu-comic/references/art-styles/ligne-claire.md +75 -0
- package/skills/creative/baoyu-comic/references/art-styles/manga.md +93 -0
- package/skills/creative/baoyu-comic/references/art-styles/minimalist.md +84 -0
- package/skills/creative/baoyu-comic/references/art-styles/realistic.md +89 -0
- package/skills/creative/baoyu-comic/references/auto-selection.md +71 -0
- package/skills/creative/baoyu-comic/references/base-prompt.md +98 -0
- package/skills/creative/baoyu-comic/references/character-template.md +180 -0
- package/skills/creative/baoyu-comic/references/layouts/cinematic.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/dense.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/four-panel.md +40 -0
- package/skills/creative/baoyu-comic/references/layouts/mixed.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/splash.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/standard.md +23 -0
- package/skills/creative/baoyu-comic/references/layouts/webtoon.md +30 -0
- package/skills/creative/baoyu-comic/references/ohmsha-guide.md +85 -0
- package/skills/creative/baoyu-comic/references/partial-workflows.md +106 -0
- package/skills/creative/baoyu-comic/references/presets/concept-story.md +121 -0
- package/skills/creative/baoyu-comic/references/presets/four-panel.md +107 -0
- package/skills/creative/baoyu-comic/references/presets/ohmsha.md +114 -0
- package/skills/creative/baoyu-comic/references/presets/shoujo.md +116 -0
- package/skills/creative/baoyu-comic/references/presets/wuxia.md +110 -0
- package/skills/creative/baoyu-comic/references/storyboard-template.md +143 -0
- package/skills/creative/baoyu-comic/references/tones/action.md +110 -0
- package/skills/creative/baoyu-comic/references/tones/dramatic.md +95 -0
- package/skills/creative/baoyu-comic/references/tones/energetic.md +105 -0
- package/skills/creative/baoyu-comic/references/tones/neutral.md +63 -0
- package/skills/creative/baoyu-comic/references/tones/romantic.md +100 -0
- package/skills/creative/baoyu-comic/references/tones/vintage.md +104 -0
- package/skills/creative/baoyu-comic/references/tones/warm.md +94 -0
- package/skills/creative/baoyu-comic/references/workflow.md +401 -0
- package/skills/creative/baoyu-infographic/PORT_NOTES.md +43 -0
- package/skills/creative/baoyu-infographic/SKILL.md +237 -0
- package/skills/creative/baoyu-infographic/references/analysis-framework.md +182 -0
- package/skills/creative/baoyu-infographic/references/base-prompt.md +43 -0
- package/skills/creative/baoyu-infographic/references/layouts/bento-grid.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/binary-comparison.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/bridge.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/circular-flow.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/comic-strip.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/comparison-matrix.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/dashboard.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/dense-modules.md +72 -0
- package/skills/creative/baoyu-infographic/references/layouts/funnel.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/hierarchical-layers.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/hub-spoke.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/iceberg.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/isometric-map.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/jigsaw.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/linear-progression.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/periodic-table.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/story-mountain.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/structural-breakdown.md +48 -0
- package/skills/creative/baoyu-infographic/references/layouts/tree-branching.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/venn-diagram.md +41 -0
- package/skills/creative/baoyu-infographic/references/layouts/winding-roadmap.md +41 -0
- package/skills/creative/baoyu-infographic/references/structured-content-template.md +244 -0
- package/skills/creative/baoyu-infographic/references/styles/aged-academia.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/bold-graphic.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/chalkboard.md +61 -0
- package/skills/creative/baoyu-infographic/references/styles/claymation.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/corporate-memphis.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/craft-handmade.md +44 -0
- package/skills/creative/baoyu-infographic/references/styles/cyberpunk-neon.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/hand-drawn-edu.md +63 -0
- package/skills/creative/baoyu-infographic/references/styles/ikea-manual.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/kawaii.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/knolling.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/lego-brick.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/morandi-journal.md +60 -0
- package/skills/creative/baoyu-infographic/references/styles/origami.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/pixel-art.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/pop-laboratory.md +48 -0
- package/skills/creative/baoyu-infographic/references/styles/retro-pop-grid.md +47 -0
- package/skills/creative/baoyu-infographic/references/styles/storybook-watercolor.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/subway-map.md +29 -0
- package/skills/creative/baoyu-infographic/references/styles/technical-schematic.md +36 -0
- package/skills/creative/baoyu-infographic/references/styles/ui-wireframe.md +29 -0
- package/skills/creative/claude-design/SKILL.md +591 -0
- package/skills/creative/comfyui/SKILL.md +612 -0
- package/skills/creative/comfyui/references/official-cli.md +255 -0
- package/skills/creative/comfyui/references/rest-api.md +312 -0
- package/skills/creative/comfyui/references/template-integrity.md +243 -0
- package/skills/creative/comfyui/references/workflow-format.md +226 -0
- package/skills/creative/comfyui/scripts/_common.py +835 -0
- package/skills/creative/comfyui/scripts/auto_fix_deps.py +225 -0
- package/skills/creative/comfyui/scripts/check_deps.py +437 -0
- package/skills/creative/comfyui/scripts/comfyui_setup.sh +286 -0
- package/skills/creative/comfyui/scripts/extract_schema.py +315 -0
- package/skills/creative/comfyui/scripts/fetch_logs.py +158 -0
- package/skills/creative/comfyui/scripts/hardware_check.py +497 -0
- package/skills/creative/comfyui/scripts/health_check.py +223 -0
- package/skills/creative/comfyui/scripts/run_batch.py +243 -0
- package/skills/creative/comfyui/scripts/run_workflow.py +796 -0
- package/skills/creative/comfyui/scripts/ws_monitor.py +267 -0
- package/skills/creative/comfyui/tests/README.md +50 -0
- package/skills/creative/comfyui/tests/conftest.py +64 -0
- package/skills/creative/comfyui/tests/pytest.ini +5 -0
- package/skills/creative/comfyui/tests/test_check_deps.py +68 -0
- package/skills/creative/comfyui/tests/test_cloud_integration.py +95 -0
- package/skills/creative/comfyui/tests/test_common.py +447 -0
- package/skills/creative/comfyui/tests/test_extract_schema.py +185 -0
- package/skills/creative/comfyui/tests/test_run_workflow.py +213 -0
- package/skills/creative/comfyui/workflows/README.md +86 -0
- package/skills/creative/comfyui/workflows/animatediff_video.json +64 -0
- package/skills/creative/comfyui/workflows/flux_dev_txt2img.json +78 -0
- package/skills/creative/comfyui/workflows/sd15_txt2img.json +49 -0
- package/skills/creative/comfyui/workflows/sdxl_img2img.json +54 -0
- package/skills/creative/comfyui/workflows/sdxl_inpaint.json +59 -0
- package/skills/creative/comfyui/workflows/sdxl_txt2img.json +49 -0
- package/skills/creative/comfyui/workflows/upscale_4x.json +27 -0
- package/skills/creative/comfyui/workflows/wan_video_t2v.json +69 -0
- package/skills/creative/creative-ideation/SKILL.md +152 -0
- package/skills/creative/creative-ideation/references/full-prompt-library.md +110 -0
- package/skills/creative/design-md/SKILL.md +199 -0
- package/skills/creative/design-md/templates/starter.md +99 -0
- package/skills/creative/excalidraw/SKILL.md +199 -0
- package/skills/creative/excalidraw/references/colors.md +44 -0
- package/skills/creative/excalidraw/references/dark-mode.md +68 -0
- package/skills/creative/excalidraw/references/examples.md +141 -0
- package/skills/creative/excalidraw/scripts/upload.py +133 -0
- package/skills/creative/humanizer/LICENSE +21 -0
- package/skills/creative/humanizer/SKILL.md +578 -0
- package/skills/creative/manim-video/README.md +23 -0
- package/skills/creative/manim-video/SKILL.md +269 -0
- package/skills/creative/manim-video/references/animation-design-thinking.md +161 -0
- package/skills/creative/manim-video/references/animations.md +282 -0
- package/skills/creative/manim-video/references/camera-and-3d.md +135 -0
- package/skills/creative/manim-video/references/decorations.md +202 -0
- package/skills/creative/manim-video/references/equations.md +216 -0
- package/skills/creative/manim-video/references/graphs-and-data.md +163 -0
- package/skills/creative/manim-video/references/mobjects.md +333 -0
- package/skills/creative/manim-video/references/paper-explainer.md +255 -0
- package/skills/creative/manim-video/references/production-quality.md +190 -0
- package/skills/creative/manim-video/references/rendering.md +185 -0
- package/skills/creative/manim-video/references/scene-planning.md +118 -0
- package/skills/creative/manim-video/references/troubleshooting.md +135 -0
- package/skills/creative/manim-video/references/updaters-and-trackers.md +260 -0
- package/skills/creative/manim-video/references/visual-design.md +124 -0
- package/skills/creative/manim-video/scripts/setup.sh +14 -0
- package/skills/creative/p5js/README.md +64 -0
- package/skills/creative/p5js/SKILL.md +556 -0
- package/skills/creative/p5js/references/animation.md +439 -0
- package/skills/creative/p5js/references/color-systems.md +352 -0
- package/skills/creative/p5js/references/core-api.md +410 -0
- package/skills/creative/p5js/references/export-pipeline.md +566 -0
- package/skills/creative/p5js/references/interaction.md +398 -0
- package/skills/creative/p5js/references/shapes-and-geometry.md +300 -0
- package/skills/creative/p5js/references/troubleshooting.md +532 -0
- package/skills/creative/p5js/references/typography.md +302 -0
- package/skills/creative/p5js/references/visual-effects.md +895 -0
- package/skills/creative/p5js/references/webgl-and-3d.md +423 -0
- package/skills/creative/p5js/scripts/export-frames.js +179 -0
- package/skills/creative/p5js/scripts/render.sh +108 -0
- package/skills/creative/p5js/scripts/serve.sh +28 -0
- package/skills/creative/p5js/scripts/setup.sh +87 -0
- package/skills/creative/p5js/templates/viewer.html +395 -0
- package/skills/creative/pixel-art/ATTRIBUTION.md +54 -0
- package/skills/creative/pixel-art/SKILL.md +218 -0
- package/skills/creative/pixel-art/references/palettes.md +49 -0
- package/skills/creative/pixel-art/scripts/__init__.py +0 -0
- package/skills/creative/pixel-art/scripts/palettes.py +167 -0
- package/skills/creative/pixel-art/scripts/pixel_art.py +162 -0
- package/skills/creative/pixel-art/scripts/pixel_art_video.py +345 -0
- package/skills/creative/popular-web-designs/SKILL.md +214 -0
- package/skills/creative/popular-web-designs/templates/airbnb.md +259 -0
- package/skills/creative/popular-web-designs/templates/airtable.md +102 -0
- package/skills/creative/popular-web-designs/templates/apple.md +326 -0
- package/skills/creative/popular-web-designs/templates/bmw.md +193 -0
- package/skills/creative/popular-web-designs/templates/cal.md +272 -0
- package/skills/creative/popular-web-designs/templates/claude.md +325 -0
- package/skills/creative/popular-web-designs/templates/clay.md +317 -0
- package/skills/creative/popular-web-designs/templates/clickhouse.md +294 -0
- package/skills/creative/popular-web-designs/templates/cohere.md +279 -0
- package/skills/creative/popular-web-designs/templates/coinbase.md +142 -0
- package/skills/creative/popular-web-designs/templates/composio.md +320 -0
- package/skills/creative/popular-web-designs/templates/cursor.md +322 -0
- package/skills/creative/popular-web-designs/templates/elevenlabs.md +278 -0
- package/skills/creative/popular-web-designs/templates/expo.md +294 -0
- package/skills/creative/popular-web-designs/templates/figma.md +233 -0
- package/skills/creative/popular-web-designs/templates/framer.md +259 -0
- package/skills/creative/popular-web-designs/templates/hashicorp.md +291 -0
- package/skills/creative/popular-web-designs/templates/ibm.md +345 -0
- package/skills/creative/popular-web-designs/templates/intercom.md +159 -0
- package/skills/creative/popular-web-designs/templates/kraken.md +138 -0
- package/skills/creative/popular-web-designs/templates/linear.app.md +380 -0
- package/skills/creative/popular-web-designs/templates/lovable.md +311 -0
- package/skills/creative/popular-web-designs/templates/minimax.md +270 -0
- package/skills/creative/popular-web-designs/templates/mintlify.md +339 -0
- package/skills/creative/popular-web-designs/templates/miro.md +121 -0
- package/skills/creative/popular-web-designs/templates/mistral.ai.md +274 -0
- package/skills/creative/popular-web-designs/templates/mongodb.md +279 -0
- package/skills/creative/popular-web-designs/templates/notion.md +322 -0
- package/skills/creative/popular-web-designs/templates/nvidia.md +306 -0
- package/skills/creative/popular-web-designs/templates/ollama.md +280 -0
- package/skills/creative/popular-web-designs/templates/opencode.ai.md +294 -0
- package/skills/creative/popular-web-designs/templates/pinterest.md +243 -0
- package/skills/creative/popular-web-designs/templates/posthog.md +269 -0
- package/skills/creative/popular-web-designs/templates/raycast.md +281 -0
- package/skills/creative/popular-web-designs/templates/replicate.md +274 -0
- package/skills/creative/popular-web-designs/templates/resend.md +316 -0
- package/skills/creative/popular-web-designs/templates/revolut.md +198 -0
- package/skills/creative/popular-web-designs/templates/runwayml.md +257 -0
- package/skills/creative/popular-web-designs/templates/sanity.md +370 -0
- package/skills/creative/popular-web-designs/templates/sentry.md +275 -0
- package/skills/creative/popular-web-designs/templates/spacex.md +207 -0
- package/skills/creative/popular-web-designs/templates/spotify.md +259 -0
- package/skills/creative/popular-web-designs/templates/stripe.md +335 -0
- package/skills/creative/popular-web-designs/templates/supabase.md +268 -0
- package/skills/creative/popular-web-designs/templates/superhuman.md +265 -0
- package/skills/creative/popular-web-designs/templates/together.ai.md +276 -0
- package/skills/creative/popular-web-designs/templates/uber.md +308 -0
- package/skills/creative/popular-web-designs/templates/vercel.md +323 -0
- package/skills/creative/popular-web-designs/templates/voltagent.md +336 -0
- package/skills/creative/popular-web-designs/templates/warp.md +266 -0
- package/skills/creative/popular-web-designs/templates/webflow.md +105 -0
- package/skills/creative/popular-web-designs/templates/wise.md +186 -0
- package/skills/creative/popular-web-designs/templates/x.ai.md +270 -0
- package/skills/creative/popular-web-designs/templates/zapier.md +341 -0
- package/skills/creative/pretext/SKILL.md +220 -0
- package/skills/creative/pretext/references/patterns.md +258 -0
- package/skills/creative/pretext/templates/donut-orbit.html +1468 -0
- package/skills/creative/pretext/templates/hello-orb-flow.html +95 -0
- package/skills/creative/sketch/SKILL.md +218 -0
- package/skills/creative/songwriting-and-ai-music/SKILL.md +287 -0
- package/skills/creative/touchdesigner-mcp/SKILL.md +356 -0
- package/skills/creative/touchdesigner-mcp/references/3d-scene.md +275 -0
- package/skills/creative/touchdesigner-mcp/references/animation.md +221 -0
- package/skills/creative/touchdesigner-mcp/references/audio-reactive.md +175 -0
- package/skills/creative/touchdesigner-mcp/references/dat-scripting.md +352 -0
- package/skills/creative/touchdesigner-mcp/references/external-data.md +322 -0
- package/skills/creative/touchdesigner-mcp/references/geometry-comp.md +121 -0
- package/skills/creative/touchdesigner-mcp/references/glsl.md +151 -0
- package/skills/creative/touchdesigner-mcp/references/layout-compositor.md +131 -0
- package/skills/creative/touchdesigner-mcp/references/mcp-tools.md +382 -0
- package/skills/creative/touchdesigner-mcp/references/midi-osc.md +211 -0
- package/skills/creative/touchdesigner-mcp/references/network-patterns.md +966 -0
- package/skills/creative/touchdesigner-mcp/references/operator-tips.md +106 -0
- package/skills/creative/touchdesigner-mcp/references/operators.md +239 -0
- package/skills/creative/touchdesigner-mcp/references/panel-ui.md +281 -0
- package/skills/creative/touchdesigner-mcp/references/particles.md +245 -0
- package/skills/creative/touchdesigner-mcp/references/pitfalls.md +704 -0
- package/skills/creative/touchdesigner-mcp/references/postfx.md +183 -0
- package/skills/creative/touchdesigner-mcp/references/projection-mapping.md +211 -0
- package/skills/creative/touchdesigner-mcp/references/python-api.md +463 -0
- package/skills/creative/touchdesigner-mcp/references/replicator.md +198 -0
- package/skills/creative/touchdesigner-mcp/references/troubleshooting.md +244 -0
- package/skills/creative/touchdesigner-mcp/scripts/setup.sh +115 -0
- package/skills/data-science/DESCRIPTION.md +3 -0
- package/skills/data-science/jupyter-live-kernel/SKILL.md +167 -0
- package/skills/devops/kanban-orchestrator/SKILL.md +189 -0
- package/skills/devops/kanban-worker/SKILL.md +184 -0
- package/skills/devops/webhook-subscriptions/SKILL.md +204 -0
- package/skills/diagramming/DESCRIPTION.md +3 -0
- package/skills/dogfood/SKILL.md +162 -0
- package/skills/dogfood/references/issue-taxonomy.md +109 -0
- package/skills/dogfood/templates/dogfood-report-template.md +86 -0
- package/skills/domain/DESCRIPTION.md +24 -0
- package/skills/email/DESCRIPTION.md +3 -0
- package/skills/email/himalaya/SKILL.md +299 -0
- package/skills/email/himalaya/references/configuration.md +227 -0
- package/skills/email/himalaya/references/message-composition.md +199 -0
- package/skills/gaming/DESCRIPTION.md +3 -0
- package/skills/gaming/minecraft-modpack-server/SKILL.md +187 -0
- package/skills/gaming/pokemon-player/SKILL.md +216 -0
- package/skills/gifs/DESCRIPTION.md +3 -0
- package/skills/github/DESCRIPTION.md +3 -0
- package/skills/github/codebase-inspection/SKILL.md +116 -0
- package/skills/github/github-auth/SKILL.md +247 -0
- package/skills/github/github-auth/scripts/gh-env.sh +66 -0
- package/skills/github/github-code-review/SKILL.md +481 -0
- package/skills/github/github-code-review/references/review-output-template.md +74 -0
- package/skills/github/github-issues/SKILL.md +370 -0
- package/skills/github/github-issues/templates/bug-report.md +35 -0
- package/skills/github/github-issues/templates/feature-request.md +31 -0
- package/skills/github/github-pr-workflow/SKILL.md +367 -0
- package/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
- package/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
- package/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
- package/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
- package/skills/github/github-repo-management/SKILL.md +516 -0
- package/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
- package/skills/index-cache/anthropics_skills_skills_.json +1 -0
- package/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
- package/skills/index-cache/lobehub_index.json +1 -0
- package/skills/index-cache/openai_skills_skills_.json +1 -0
- package/skills/inference-sh/DESCRIPTION.md +19 -0
- package/skills/mcp/DESCRIPTION.md +3 -0
- package/skills/mcp/native-mcp/SKILL.md +357 -0
- package/skills/media/DESCRIPTION.md +3 -0
- package/skills/media/gif-search/SKILL.md +91 -0
- package/skills/media/heartmula/SKILL.md +171 -0
- package/skills/media/songsee/SKILL.md +83 -0
- package/skills/media/spotify/SKILL.md +135 -0
- package/skills/media/youtube-content/SKILL.md +73 -0
- package/skills/media/youtube-content/references/output-formats.md +56 -0
- package/skills/media/youtube-content/scripts/fetch_transcript.py +124 -0
- package/skills/mlops/DESCRIPTION.md +3 -0
- package/skills/mlops/evaluation/DESCRIPTION.md +3 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/SKILL.md +498 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
- package/skills/mlops/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
- package/skills/mlops/evaluation/weights-and-biases/SKILL.md +594 -0
- package/skills/mlops/evaluation/weights-and-biases/references/artifacts.md +584 -0
- package/skills/mlops/evaluation/weights-and-biases/references/integrations.md +700 -0
- package/skills/mlops/evaluation/weights-and-biases/references/sweeps.md +847 -0
- package/skills/mlops/huggingface-hub/SKILL.md +81 -0
- package/skills/mlops/inference/DESCRIPTION.md +3 -0
- package/skills/mlops/inference/llama-cpp/SKILL.md +249 -0
- package/skills/mlops/inference/llama-cpp/references/advanced-usage.md +504 -0
- package/skills/mlops/inference/llama-cpp/references/hub-discovery.md +168 -0
- package/skills/mlops/inference/llama-cpp/references/optimization.md +89 -0
- package/skills/mlops/inference/llama-cpp/references/quantization.md +243 -0
- package/skills/mlops/inference/llama-cpp/references/server.md +150 -0
- package/skills/mlops/inference/llama-cpp/references/troubleshooting.md +442 -0
- package/skills/mlops/inference/obliteratus/SKILL.md +342 -0
- package/skills/mlops/inference/obliteratus/references/analysis-modules.md +166 -0
- package/skills/mlops/inference/obliteratus/references/methods-guide.md +141 -0
- package/skills/mlops/inference/obliteratus/templates/abliteration-config.yaml +33 -0
- package/skills/mlops/inference/obliteratus/templates/analysis-study.yaml +40 -0
- package/skills/mlops/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
- package/skills/mlops/inference/vllm/SKILL.md +372 -0
- package/skills/mlops/inference/vllm/references/optimization.md +226 -0
- package/skills/mlops/inference/vllm/references/quantization.md +284 -0
- package/skills/mlops/inference/vllm/references/server-deployment.md +255 -0
- package/skills/mlops/inference/vllm/references/troubleshooting.md +447 -0
- package/skills/mlops/models/DESCRIPTION.md +3 -0
- package/skills/mlops/models/audiocraft/SKILL.md +568 -0
- package/skills/mlops/models/audiocraft/references/advanced-usage.md +666 -0
- package/skills/mlops/models/audiocraft/references/troubleshooting.md +504 -0
- package/skills/mlops/models/segment-anything/SKILL.md +506 -0
- package/skills/mlops/models/segment-anything/references/advanced-usage.md +589 -0
- package/skills/mlops/models/segment-anything/references/troubleshooting.md +484 -0
- package/skills/mlops/research/DESCRIPTION.md +3 -0
- package/skills/mlops/research/dspy/SKILL.md +594 -0
- package/skills/mlops/research/dspy/references/examples.md +663 -0
- package/skills/mlops/research/dspy/references/modules.md +475 -0
- package/skills/mlops/research/dspy/references/optimizers.md +566 -0
- package/skills/mlops/training/DESCRIPTION.md +3 -0
- package/skills/mlops/vector-databases/DESCRIPTION.md +3 -0
- package/skills/note-taking/DESCRIPTION.md +3 -0
- package/skills/note-taking/obsidian/SKILL.md +61 -0
- package/skills/productivity/DESCRIPTION.md +3 -0
- package/skills/productivity/airtable/SKILL.md +229 -0
- package/skills/productivity/google-workspace/SKILL.md +335 -0
- package/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
- package/skills/productivity/google-workspace/scripts/_hermes_home.py +43 -0
- package/skills/productivity/google-workspace/scripts/google_api.py +1221 -0
- package/skills/productivity/google-workspace/scripts/gws_bridge.py +108 -0
- package/skills/productivity/google-workspace/scripts/setup.py +454 -0
- package/skills/productivity/linear/SKILL.md +380 -0
- package/skills/productivity/linear/scripts/linear_api.py +445 -0
- package/skills/productivity/maps/SKILL.md +195 -0
- package/skills/productivity/maps/scripts/maps_client.py +1298 -0
- package/skills/productivity/nano-pdf/SKILL.md +52 -0
- package/skills/productivity/notion/SKILL.md +448 -0
- package/skills/productivity/notion/references/block-types.md +112 -0
- package/skills/productivity/ocr-and-documents/DESCRIPTION.md +3 -0
- package/skills/productivity/ocr-and-documents/SKILL.md +172 -0
- package/skills/productivity/ocr-and-documents/scripts/extract_marker.py +87 -0
- package/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +98 -0
- package/skills/productivity/powerpoint/LICENSE.txt +30 -0
- package/skills/productivity/powerpoint/SKILL.md +237 -0
- package/skills/productivity/powerpoint/editing.md +205 -0
- package/skills/productivity/powerpoint/pptxgenjs.md +420 -0
- package/skills/productivity/powerpoint/scripts/__init__.py +0 -0
- package/skills/productivity/powerpoint/scripts/add_slide.py +195 -0
- package/skills/productivity/powerpoint/scripts/clean.py +286 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +0 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +199 -0
- package/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +197 -0
- package/skills/productivity/powerpoint/scripts/office/pack.py +159 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/productivity/teams-meeting-pipeline/SKILL.md +116 -0
- package/skills/red-teaming/godmode/SKILL.md +404 -0
- package/skills/red-teaming/godmode/references/jailbreak-templates.md +128 -0
- package/skills/red-teaming/godmode/references/refusal-detection.md +142 -0
- package/skills/red-teaming/godmode/scripts/auto_jailbreak.py +769 -0
- package/skills/red-teaming/godmode/scripts/godmode_race.py +530 -0
- package/skills/red-teaming/godmode/scripts/load_godmode.py +45 -0
- package/skills/red-teaming/godmode/scripts/parseltongue.py +550 -0
- package/skills/red-teaming/godmode/templates/prefill-subtle.json +10 -0
- package/skills/red-teaming/godmode/templates/prefill.json +18 -0
- package/skills/research/DESCRIPTION.md +3 -0
- package/skills/research/arxiv/SKILL.md +282 -0
- package/skills/research/arxiv/scripts/search_arxiv.py +114 -0
- package/skills/research/blogwatcher/SKILL.md +137 -0
- package/skills/research/llm-wiki/SKILL.md +507 -0
- package/skills/research/polymarket/SKILL.md +77 -0
- package/skills/research/polymarket/references/api-endpoints.md +220 -0
- package/skills/research/polymarket/scripts/polymarket.py +284 -0
- package/skills/research/research-paper-writing/SKILL.md +2377 -0
- package/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
- package/skills/research/research-paper-writing/references/checklists.md +434 -0
- package/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
- package/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
- package/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
- package/skills/research/research-paper-writing/references/paper-types.md +481 -0
- package/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
- package/skills/research/research-paper-writing/references/sources.md +191 -0
- package/skills/research/research-paper-writing/references/writing-guide.md +474 -0
- package/skills/research/research-paper-writing/templates/README.md +251 -0
- package/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- package/skills/research/research-paper-writing/templates/acl/README.md +50 -0
- package/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
- package/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
- package/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- package/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- package/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
- package/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
- package/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
- package/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- package/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- package/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
- package/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
- package/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- package/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- package/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- package/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
- package/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- package/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
- package/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
- package/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- package/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
- package/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- package/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
- package/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
- package/skills/smart-home/DESCRIPTION.md +3 -0
- package/skills/smart-home/openhue/SKILL.md +109 -0
- package/skills/social-media/DESCRIPTION.md +3 -0
- package/skills/social-media/xurl/SKILL.md +414 -0
- package/skills/software-development/debugging-hermes-tui-commands/SKILL.md +152 -0
- package/skills/software-development/hermes-agent-skill-authoring/SKILL.md +165 -0
- package/skills/software-development/node-inspect-debugger/SKILL.md +319 -0
- package/skills/software-development/plan/SKILL.md +58 -0
- package/skills/software-development/python-debugpy/SKILL.md +375 -0
- package/skills/software-development/requesting-code-review/SKILL.md +280 -0
- package/skills/software-development/spike/SKILL.md +197 -0
- package/skills/software-development/subagent-driven-development/SKILL.md +352 -0
- package/skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
- package/skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
- package/skills/software-development/systematic-debugging/SKILL.md +367 -0
- package/skills/software-development/test-driven-development/SKILL.md +343 -0
- package/skills/software-development/writing-plans/SKILL.md +297 -0
- package/skills/yuanbao/SKILL.md +108 -0
- package/tools/__init__.py +25 -0
- package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/__pycache__/approval.cpython-312.pyc +0 -0
- package/tools/__pycache__/binary_extensions.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_camofox.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_camofox_state.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_cdp_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_dialog_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_supervisor.cpython-312.pyc +0 -0
- package/tools/__pycache__/browser_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/budget_config.cpython-312.pyc +0 -0
- package/tools/__pycache__/checkpoint_manager.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_gateway.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/code_execution_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/computer_use_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/cronjob_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/debug_helpers.cpython-312.pyc +0 -0
- package/tools/__pycache__/delegate_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/discord_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/feishu_doc_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/feishu_drive_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_operations.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_state.cpython-312.pyc +0 -0
- package/tools/__pycache__/file_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/homeassistant_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/image_generation_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/interrupt.cpython-312.pyc +0 -0
- package/tools/__pycache__/kanban_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/lazy_deps.cpython-312.pyc +0 -0
- package/tools/__pycache__/managed_tool_gateway.cpython-312.pyc +0 -0
- package/tools/__pycache__/mcp_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/memory_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/mixture_of_agents_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/openrouter_client.cpython-312.pyc +0 -0
- package/tools/__pycache__/process_registry.cpython-312.pyc +0 -0
- package/tools/__pycache__/registry.cpython-312.pyc +0 -0
- package/tools/__pycache__/schema_sanitizer.cpython-312.pyc +0 -0
- package/tools/__pycache__/send_message_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/session_search_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_manager_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_provenance.cpython-312.pyc +0 -0
- package/tools/__pycache__/skill_usage.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_guard.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_sync.cpython-312.pyc +0 -0
- package/tools/__pycache__/skills_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/slash_confirm.cpython-312.pyc +0 -0
- package/tools/__pycache__/terminal_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/tirith_security.cpython-312.pyc +0 -0
- package/tools/__pycache__/todo_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/tool_backend_helpers.cpython-312.pyc +0 -0
- package/tools/__pycache__/tool_result_storage.cpython-312.pyc +0 -0
- package/tools/__pycache__/tts_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/url_safety.cpython-312.pyc +0 -0
- package/tools/__pycache__/video_generation_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/vision_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/voice_mode.cpython-312.pyc +0 -0
- package/tools/__pycache__/web_tools.cpython-312.pyc +0 -0
- package/tools/__pycache__/website_policy.cpython-312.pyc +0 -0
- package/tools/__pycache__/x_search_tool.cpython-312.pyc +0 -0
- package/tools/__pycache__/xai_http.cpython-312.pyc +0 -0
- package/tools/__pycache__/yuanbao_tools.cpython-312.pyc +0 -0
- package/tools/ansi_strip.py +44 -0
- package/tools/approval.py +1392 -0
- package/tools/binary_extensions.py +42 -0
- package/tools/browser_camofox.py +700 -0
- package/tools/browser_camofox_state.py +48 -0
- package/tools/browser_cdp_tool.py +569 -0
- package/tools/browser_dialog_tool.py +148 -0
- package/tools/browser_providers/__init__.py +10 -0
- package/tools/browser_providers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/base.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/browser_use.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/browserbase.cpython-312.pyc +0 -0
- package/tools/browser_providers/__pycache__/firecrawl.cpython-312.pyc +0 -0
- package/tools/browser_providers/base.py +59 -0
- package/tools/browser_providers/browser_use.py +225 -0
- package/tools/browser_providers/browserbase.py +222 -0
- package/tools/browser_providers/firecrawl.py +112 -0
- package/tools/browser_supervisor.py +1457 -0
- package/tools/browser_tool.py +3676 -0
- package/tools/budget_config.py +51 -0
- package/tools/checkpoint_manager.py +1639 -0
- package/tools/clarify_gateway.py +278 -0
- package/tools/clarify_tool.py +141 -0
- package/tools/code_execution_tool.py +1782 -0
- package/tools/computer_use/__init__.py +43 -0
- package/tools/computer_use/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/backend.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/schema.cpython-312.pyc +0 -0
- package/tools/computer_use/__pycache__/tool.cpython-312.pyc +0 -0
- package/tools/computer_use/backend.py +150 -0
- package/tools/computer_use/cua_backend.py +682 -0
- package/tools/computer_use/schema.py +191 -0
- package/tools/computer_use/tool.py +521 -0
- package/tools/computer_use_tool.py +39 -0
- package/tools/credential_files.py +437 -0
- package/tools/cronjob_tools.py +719 -0
- package/tools/debug_helpers.py +106 -0
- package/tools/delegate_tool.py +2797 -0
- package/tools/discord_tool.py +959 -0
- package/tools/env_passthrough.py +145 -0
- package/tools/environments/__init__.py +14 -0
- package/tools/environments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/base.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/docker.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/file_sync.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/local.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/managed_modal.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/modal.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/modal_utils.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/singularity.cpython-312.pyc +0 -0
- package/tools/environments/__pycache__/ssh.cpython-312.pyc +0 -0
- package/tools/environments/base.py +844 -0
- package/tools/environments/daytona.py +270 -0
- package/tools/environments/docker.py +656 -0
- package/tools/environments/file_sync.py +400 -0
- package/tools/environments/local.py +658 -0
- package/tools/environments/managed_modal.py +282 -0
- package/tools/environments/modal.py +479 -0
- package/tools/environments/modal_utils.py +199 -0
- package/tools/environments/singularity.py +263 -0
- package/tools/environments/ssh.py +295 -0
- package/tools/environments/vercel_sandbox.py +655 -0
- package/tools/feishu_doc_tool.py +138 -0
- package/tools/feishu_drive_tool.py +431 -0
- package/tools/file_operations.py +1825 -0
- package/tools/file_state.py +332 -0
- package/tools/file_tools.py +1172 -0
- package/tools/fuzzy_match.py +703 -0
- package/tools/homeassistant_tool.py +513 -0
- package/tools/image_generation_tool.py +1098 -0
- package/tools/interrupt.py +98 -0
- package/tools/kanban_tools.py +1139 -0
- package/tools/lazy_deps.py +608 -0
- package/tools/managed_tool_gateway.py +168 -0
- package/tools/mcp_oauth.py +633 -0
- package/tools/mcp_oauth_manager.py +607 -0
- package/tools/mcp_tool.py +3483 -0
- package/tools/memory_tool.py +584 -0
- package/tools/microsoft_graph_auth.py +245 -0
- package/tools/microsoft_graph_client.py +408 -0
- package/tools/mixture_of_agents_tool.py +542 -0
- package/tools/neutts_samples/jo.txt +1 -0
- package/tools/neutts_samples/jo.wav +0 -0
- package/tools/neutts_synth.py +104 -0
- package/tools/openrouter_client.py +33 -0
- package/tools/osv_check.py +155 -0
- package/tools/patch_parser.py +592 -0
- package/tools/path_security.py +43 -0
- package/tools/process_registry.py +1534 -0
- package/tools/registry.py +589 -0
- package/tools/schema_sanitizer.py +370 -0
- package/tools/send_message_tool.py +1900 -0
- package/tools/session_search_tool.py +613 -0
- package/tools/skill_manager_tool.py +932 -0
- package/tools/skill_provenance.py +78 -0
- package/tools/skill_usage.py +610 -0
- package/tools/skills_guard.py +932 -0
- package/tools/skills_hub.py +3263 -0
- package/tools/skills_sync.py +432 -0
- package/tools/skills_tool.py +1569 -0
- package/tools/slash_confirm.py +167 -0
- package/tools/terminal_tool.py +2376 -0
- package/tools/tirith_security.py +775 -0
- package/tools/todo_tool.py +277 -0
- package/tools/tool_backend_helpers.py +144 -0
- package/tools/tool_output_limits.py +92 -0
- package/tools/tool_result_storage.py +232 -0
- package/tools/transcription_tools.py +936 -0
- package/tools/tts_tool.py +2285 -0
- package/tools/url_safety.py +330 -0
- package/tools/video_generation_tool.py +561 -0
- package/tools/vision_tools.py +1422 -0
- package/tools/voice_mode.py +1019 -0
- package/tools/web_tools.py +1551 -0
- package/tools/website_policy.py +283 -0
- package/tools/x_search_tool.py +424 -0
- package/tools/xai_http.py +83 -0
- package/tools/yuanbao_tools.py +736 -0
- package/toolset_distributions.py +364 -0
- package/toolsets.py +866 -0
- package/trajectory_compressor.py +1509 -0
- package/tui_gateway/__init__.py +0 -0
- package/tui_gateway/entry.py +251 -0
- package/tui_gateway/event_publisher.py +126 -0
- package/tui_gateway/render.py +49 -0
- package/tui_gateway/server.py +6623 -0
- package/tui_gateway/slash_worker.py +76 -0
- package/tui_gateway/transport.py +219 -0
- package/tui_gateway/ws.py +178 -0
- package/utils.py +361 -0
|
@@ -0,0 +1,1680 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Hermes Agent Release Script
|
|
3
|
+
|
|
4
|
+
Generates changelogs and creates GitHub releases with CalVer tags.
|
|
5
|
+
|
|
6
|
+
Usage:
|
|
7
|
+
# Preview changelog (dry run)
|
|
8
|
+
python scripts/release.py
|
|
9
|
+
|
|
10
|
+
# Preview with semver bump
|
|
11
|
+
python scripts/release.py --bump minor
|
|
12
|
+
|
|
13
|
+
# Create the release
|
|
14
|
+
python scripts/release.py --bump minor --publish
|
|
15
|
+
|
|
16
|
+
# First release (no previous tag)
|
|
17
|
+
python scripts/release.py --bump minor --publish --first-release
|
|
18
|
+
|
|
19
|
+
# Override CalVer date (e.g. for a belated release)
|
|
20
|
+
python scripts/release.py --bump minor --publish --date 2026.3.15
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
import argparse
|
|
24
|
+
import json
|
|
25
|
+
import re
|
|
26
|
+
import shutil
|
|
27
|
+
import subprocess
|
|
28
|
+
import sys
|
|
29
|
+
from collections import defaultdict
|
|
30
|
+
from datetime import datetime
|
|
31
|
+
from pathlib import Path
|
|
32
|
+
|
|
33
|
+
REPO_ROOT = Path(__file__).resolve().parent.parent
|
|
34
|
+
VERSION_FILE = REPO_ROOT / "hermes_cli" / "__init__.py"
|
|
35
|
+
PYPROJECT_FILE = REPO_ROOT / "pyproject.toml"
|
|
36
|
+
|
|
37
|
+
# ACP Registry manifest must stay version-locked with pyproject.toml.
|
|
38
|
+
# tests/acp/test_registry_manifest.py enforces this lockstep so the release
|
|
39
|
+
# bump touches both files atomically.
|
|
40
|
+
ACP_REGISTRY_MANIFEST = REPO_ROOT / "acp_registry" / "agent.json"
|
|
41
|
+
|
|
42
|
+
# ──────────────────────────────────────────────────────────────────────
|
|
43
|
+
# Git email → GitHub username mapping
|
|
44
|
+
# ──────────────────────────────────────────────────────────────────────
|
|
45
|
+
|
|
46
|
+
# Auto-extracted from noreply emails + manual overrides
|
|
47
|
+
AUTHOR_MAP = {
|
|
48
|
+
# teknium (multiple emails)
|
|
49
|
+
"teknium1@gmail.com": "teknium1",
|
|
50
|
+
"30366221+WorldWriter@users.noreply.github.com": "WorldWriter",
|
|
51
|
+
"dafeng@DafengdeMacBook-Pro.local": "WorldWriter",
|
|
52
|
+
"anadi.jaggia@gmail.com": "Jaggia",
|
|
53
|
+
"32201324+simpolism@users.noreply.github.com": "simpolism",
|
|
54
|
+
"simpolism@gmail.com": "simpolism",
|
|
55
|
+
"jake@nousresearch.com": "simpolism",
|
|
56
|
+
"mgongzai@gmail.com": "vKongv",
|
|
57
|
+
"0x.badfriend@gmail.com": "discodirector",
|
|
58
|
+
"altriatree@gmail.com": "TruaShamu",
|
|
59
|
+
"m@mobrienv.dev": "mikeyobrien",
|
|
60
|
+
"qiyin.zuo@pcitc.com": "qiyin-code",
|
|
61
|
+
"mr.aashiz@gmail.com": "aashizpoudel",
|
|
62
|
+
"70629228+shaun0927@users.noreply.github.com": "shaun0927",
|
|
63
|
+
"98262967+Bihruze@users.noreply.github.com": "Bihruze",
|
|
64
|
+
"nidhi2894@gmail.com": "nidhi-singh02",
|
|
65
|
+
"30312689+aashizpoudel@users.noreply.github.com": "aashizpoudel",
|
|
66
|
+
"oleksii.lisikh@gmail.com": "olisikh",
|
|
67
|
+
"jithendranaidunara@gmail.com": "JithendraNara",
|
|
68
|
+
"jeremy@geocaching.com": "outdoorsea",
|
|
69
|
+
"leone.parise@gmail.com": "leoneparise",
|
|
70
|
+
"mr@shu.io": "mrshu",
|
|
71
|
+
"adam.manning@gmail.com": "am423",
|
|
72
|
+
"buraysandro9@gmail.com": "ygd58",
|
|
73
|
+
"108427749+buntingszn@users.noreply.github.com": "buntingszn",
|
|
74
|
+
"yanglongwei06@gmail.com": "Alex-yang00",
|
|
75
|
+
"teknium@nousresearch.com": "teknium1",
|
|
76
|
+
"piyushvp1@gmail.com": "thelumiereguy",
|
|
77
|
+
"421774554@qq.com": "wuli666",
|
|
78
|
+
"twebefy@gmail.com": "tw2818",
|
|
79
|
+
"harish.kukreja@gmail.com": "counterposition",
|
|
80
|
+
"korkyzer@gmail.com": "Korkyzer",
|
|
81
|
+
"1046611633@qq.com": "zhengyn0001",
|
|
82
|
+
"1095245867@qq.com": "littlewwwhite",
|
|
83
|
+
"db@project-aeon.com": "db-aeon",
|
|
84
|
+
"ahmed@abadr.net": "ahmedbadr3",
|
|
85
|
+
"63822243+CoinTheHat@users.noreply.github.com": "CoinTheHat",
|
|
86
|
+
"cleo@edaphic.xyz": "curiouscleo",
|
|
87
|
+
"hirokazu.ogawa@kwansei.ac.jp": "hrkzogw",
|
|
88
|
+
"datapod.k@gmail.com": "dandacompany",
|
|
89
|
+
"treydong.zh@gmail.com": "TreyDong",
|
|
90
|
+
"phil.thomas@gametime.co": "explainanalyze",
|
|
91
|
+
"kyanam.preetham@gmail.com": "pkyanam",
|
|
92
|
+
"zhizhong.xu@shopee.com": "1000Delta",
|
|
93
|
+
"30397170+1000Delta@users.noreply.github.com": "1000Delta",
|
|
94
|
+
"szymonclawd@mac.home": "szymonclawd",
|
|
95
|
+
"257759490+szymonclawd@users.noreply.github.com": "szymonclawd",
|
|
96
|
+
"101180447+worlldz@users.noreply.github.com": "worlldz",
|
|
97
|
+
"zhanganzhe@tenclass.com": "luoyuctl",
|
|
98
|
+
"51604064+luoyuctl@users.noreply.github.com": "luoyuctl",
|
|
99
|
+
"127238744+teknium1@users.noreply.github.com": "teknium1",
|
|
100
|
+
"tolle.lege+github@gmail.com": "InB4DevOps",
|
|
101
|
+
"73686890+InB4DevOps@users.noreply.github.com": "InB4DevOps",
|
|
102
|
+
"147827411+EloquentBrush@users.noreply.github.com": "AhmetArif0",
|
|
103
|
+
"97489706+purzbeats@users.noreply.github.com": "purzbeats",
|
|
104
|
+
"hugosequier@gmail.com": "Hugo-SEQUIER",
|
|
105
|
+
"128259593+Gutslabs@users.noreply.github.com": "Gutslabs",
|
|
106
|
+
"50326054+nocturnum91@users.noreply.github.com": "nocturnum91",
|
|
107
|
+
"223003280+Abd0r@users.noreply.github.com": "Abd0r",
|
|
108
|
+
"HuangYuChuh@users.noreply.github.com": "HuangYuChuh",
|
|
109
|
+
"aaronwong1989@gmail.com": "hrygo",
|
|
110
|
+
"26729613+hrygo@users.noreply.github.com": "hrygo",
|
|
111
|
+
"erenkar950@gmail.com": "eren-karakus0",
|
|
112
|
+
"aubrey@freeman-wisco.com": "Freeman-Consulting",
|
|
113
|
+
"don.rhm@gmail.com": "rahimsais",
|
|
114
|
+
"40222899+rahimsais@users.noreply.github.com": "rahimsais",
|
|
115
|
+
"alfred@Alfreds-Mac-mini.local": "NivOO5",
|
|
116
|
+
"231191380+NivOO5@users.noreply.github.com": "NivOO5",
|
|
117
|
+
"jameshuang@gmail.com": "kjames2001",
|
|
118
|
+
"62420081+kjames2001@users.noreply.github.com": "kjames2001",
|
|
119
|
+
"132184373+wilsen0@users.noreply.github.com": "wilsen0",
|
|
120
|
+
"ra2157218@gmail.com": "Abd0r",
|
|
121
|
+
"oswaldb22@users.noreply.github.com": "oswaldb22",
|
|
122
|
+
"abdielv@proton.me": "AJV20",
|
|
123
|
+
"mason@growagainorchids.com": "masonjames",
|
|
124
|
+
"108541149+amethystani@users.noreply.github.com": "amethystani",
|
|
125
|
+
"ytchen0719@gmail.com": "liquidchen",
|
|
126
|
+
"am@studio1.tailb672fe.ts.net": "subtract0",
|
|
127
|
+
"mike@grossmann.at": "ReqX",
|
|
128
|
+
"axmaiqiu@gmail.com": "qWaitCrypto",
|
|
129
|
+
"44045911+kidonng@users.noreply.github.com": "kidonng",
|
|
130
|
+
"daniellsmarta@gmail.com": "DanielLSM",
|
|
131
|
+
"264291321+v1b3coder@users.noreply.github.com": "v1b3coder",
|
|
132
|
+
"silverchris@foxmail.com": "ming1523",
|
|
133
|
+
"maksesipov@gmail.com": "Qwinty",
|
|
134
|
+
"denisamania@gmail.com": "CalmProton",
|
|
135
|
+
"308068+mbac@users.noreply.github.com": "mbac",
|
|
136
|
+
"nicoechaniz@altermundi.net": "nicoechaniz",
|
|
137
|
+
"ninso112@proton.me": "Ninso112",
|
|
138
|
+
"wesleysimplicio@live.com": "wesleysimplicio",
|
|
139
|
+
"matthew.dean.cater@gmail.com": "SiliconID",
|
|
140
|
+
"xieniu@proton.me": "xieNniu",
|
|
141
|
+
"rw8143a@american.edu": "wali-reheman",
|
|
142
|
+
"egitimviscara@gmail.com": "uzunkuyruk",
|
|
143
|
+
"zhekinmaksim@gmail.com": "Zhekinmaksim",
|
|
144
|
+
"obafemiferanmi1999@gmail.com": "KvnGz",
|
|
145
|
+
"159539633+MottledShadow@users.noreply.github.com": "MottledShadow",
|
|
146
|
+
"aludwin+gh@gmail.com": "adamludwin",
|
|
147
|
+
"ngusev@astralinux.ru": "NikolayGusev-astra",
|
|
148
|
+
"liuguangyong201@hellobike.com": "liuguangyong93",
|
|
149
|
+
"2093036+exiao@users.noreply.github.com": "exiao",
|
|
150
|
+
"20nik.nosov21@gmail.com": "nik1t7n",
|
|
151
|
+
"thunderggnn@gmail.com": "ggnnggez",
|
|
152
|
+
"haozhe4547@gmail.com": "ehz0ah",
|
|
153
|
+
"kevyan1998@gmail.com": "kyan12",
|
|
154
|
+
"rylen.anil@gmail.com": "rylena",
|
|
155
|
+
"godnanijatin@gmail.com": "jatingodnani",
|
|
156
|
+
"252811164+adybag14-cyber@users.noreply.github.com": "adybag14-cyber",
|
|
157
|
+
"14046872+tmimmanuel@users.noreply.github.com": "tmimmanuel",
|
|
158
|
+
"112875006+donramon77@users.noreply.github.com": "donramon77",
|
|
159
|
+
"657290301@qq.com": "IMHaoyan",
|
|
160
|
+
"revar@users.noreply.github.com": "revaraver",
|
|
161
|
+
"dengtaoyuan@dengtaoyuandeMac-mini.local": "dengtaoyuan450-a11y",
|
|
162
|
+
"ysfalweshcan@gmail.com": "Junass1",
|
|
163
|
+
"bartokmagic@proton.me": "Bartok9",
|
|
164
|
+
"androidhtml@yandex.com": "hllqkb",
|
|
165
|
+
"25840394+Bongulielmi@users.noreply.github.com": "Bongulielmi",
|
|
166
|
+
"jonathan.troyer@overmatch.com": "JTroyerOvermatch",
|
|
167
|
+
"harryykyle1@gmail.com": "hharry11",
|
|
168
|
+
"wysie@users.noreply.github.com": "wysie",
|
|
169
|
+
"jkausel@gmail.com": "jkausel-ai",
|
|
170
|
+
"e.silacandmr@gmail.com": "Es1la",
|
|
171
|
+
"51599529+stephen0110@users.noreply.github.com": "stephen0110",
|
|
172
|
+
"265632032+sonic-netizen@users.noreply.github.com": "sonic-netizen",
|
|
173
|
+
"82531659+mwnickerson@users.noreply.github.com": "mwnickerson",
|
|
174
|
+
"sandrohub013@gmail.com": "SandroHub013",
|
|
175
|
+
"maciekczech@users.noreply.github.com": "maciekczech",
|
|
176
|
+
"154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
177
|
+
"cine.dreamer.one@gmail.com": "LeonSGP43",
|
|
178
|
+
"zjtan1@gmail.com": "zeejaytan",
|
|
179
|
+
"asslaenn5@gmail.com": "Aslaaen",
|
|
180
|
+
"trae.anderson17@icloud.com": "Tkander1715",
|
|
181
|
+
"beardthelion@users.noreply.github.com": "beardthelion",
|
|
182
|
+
"tangyuanjc@JCdeAIfenshendeMac-mini.local": "tangyuanjc",
|
|
183
|
+
"leon@agentlinker.ai": "agentlinker",
|
|
184
|
+
"santoshhumagain1887@gmail.com": "npmisantosh",
|
|
185
|
+
"39641663+luarss@users.noreply.github.com": "luarss",
|
|
186
|
+
"16263913+zccyman@users.noreply.github.com": "zccyman",
|
|
187
|
+
"ahmetosrak@Ahmet-MacBook-Air.local": "Osraka",
|
|
188
|
+
"98612432+Osraka@users.noreply.github.com": "Osraka",
|
|
189
|
+
"112634774+ryptotalent@users.noreply.github.com": "ryptotalent",
|
|
190
|
+
"270097726+hookinglau@users.noreply.github.com": "hookinglau",
|
|
191
|
+
"5029547+AllynSheep@users.noreply.github.com": "AllynSheep",
|
|
192
|
+
"allyn0306@gmail.com": "AllynSheep",
|
|
193
|
+
"46887634+aqilaziz@users.noreply.github.com": "aqilaziz",
|
|
194
|
+
"gonzes7@gmail.com": "aqilaziz",
|
|
195
|
+
"6966326+laoli-no1@users.noreply.github.com": "laoli-no1",
|
|
196
|
+
"laoli_no1@163.com": "laoli-no1",
|
|
197
|
+
"39730900+NorethSea@users.noreply.github.com": "NorethSea",
|
|
198
|
+
"963979204@qq.com": "NorethSea",
|
|
199
|
+
"2283389+JamesX88@users.noreply.github.com": "JamesX88",
|
|
200
|
+
"JamesX88@users.noreply.github.com": "JamesX88",
|
|
201
|
+
"novax635@gmail.com": "novax635",
|
|
202
|
+
"krionex1@gmail.com": "Krionex",
|
|
203
|
+
"rxdxxxx@users.noreply.github.com": "rxdxxxx",
|
|
204
|
+
"ma.haohao2@xydigit.com": "MaHaoHao-ch",
|
|
205
|
+
"29756950+revaraver@users.noreply.github.com": "revaraver",
|
|
206
|
+
"nexus@eptic.me": "TheEpTic",
|
|
207
|
+
"74554762+wmagev@users.noreply.github.com": "wmagev",
|
|
208
|
+
"ashermorse@icloud.com": "ashermorse",
|
|
209
|
+
"happy5318@users.noreply.github.com": "happy5318",
|
|
210
|
+
"anatoliygranichenko@gmail.com": "wabrent",
|
|
211
|
+
"cash.williams@acquia.com": "CashWilliams",
|
|
212
|
+
"chengoak@users.noreply.github.com": "chengoak",
|
|
213
|
+
"mrhanoi@outlook.com": "qxxaa",
|
|
214
|
+
"guillaume.meyer@outlook.com": "guillaumemeyer",
|
|
215
|
+
"emelyanenko.kirill@gmail.com": "EmelyanenkoK",
|
|
216
|
+
"lazycat.manatee@gmail.com": "manateelazycat",
|
|
217
|
+
"bzarnitz13@gmail.com": "Beandon13",
|
|
218
|
+
"tony@tonysimons.dev": "asimons81",
|
|
219
|
+
"jetha@google.com": "jethac",
|
|
220
|
+
"jani@0xhoneyjar.xyz": "deep-name",
|
|
221
|
+
# LINE messaging plugin (synthesis PR)
|
|
222
|
+
"32443648+leepoweii@users.noreply.github.com": "leepoweii",
|
|
223
|
+
"openclaw@liyangchen.me": "liyoungc",
|
|
224
|
+
"charles@perng.com": "perng",
|
|
225
|
+
"soichiro0111.dev@gmail.com": "soichiyo",
|
|
226
|
+
"0xde@pieverse.io": "David-0x221Eight",
|
|
227
|
+
"77736378+David-0x221Eight@users.noreply.github.com": "David-0x221Eight",
|
|
228
|
+
"74749461+yuga-hashimoto@users.noreply.github.com": "yuga-hashimoto",
|
|
229
|
+
"xiangyong@zspace.cn": "CES4751",
|
|
230
|
+
"harish.kukreja@gmail.com": "counterposition",
|
|
231
|
+
"nidhi2894@gmail.com": "nidhi-singh02",
|
|
232
|
+
"35294173+Fearvox@users.noreply.github.com": "Fearvox",
|
|
233
|
+
"hypnus.yuan@gmail.com": "Hypnus-Yuan",
|
|
234
|
+
"15558128926@qq.com": "xsfX20",
|
|
235
|
+
"binhnt.ht.92@gmail.com": "binhnt92",
|
|
236
|
+
"johnny@Jons-MBA-M4.local": "acesjohnny",
|
|
237
|
+
"1581133593@qq.com": "liu-collab",
|
|
238
|
+
"haidaoe@proton.me": "haidao1919",
|
|
239
|
+
"50561768+zhanggttry@users.noreply.github.com": "zhanggttry",
|
|
240
|
+
"formulahendry@gmail.com": "formulahendry",
|
|
241
|
+
"93757150+bogerman1@users.noreply.github.com": "bogerman1",
|
|
242
|
+
"132852777+rob-maron@users.noreply.github.com": "rob-maron",
|
|
243
|
+
# Matrix parity salvage batch (April 2026)
|
|
244
|
+
"sr@samirusani": "samrusani",
|
|
245
|
+
"angelclaw@AngelMacBook.local": "angel12",
|
|
246
|
+
"charles@cryptoassetrecovery.com": "charles-brooks",
|
|
247
|
+
# DeepSeek v4 + Kimi thinking-mode reasoning_content salvage (April 2026)
|
|
248
|
+
"luwinyang@deepseek.com": "lsdsjy",
|
|
249
|
+
"season.saw@gmail.com": "season179",
|
|
250
|
+
"heathley@Heathley-MacBook-Air.local": "heathley",
|
|
251
|
+
"maliyldzhn@gmail.com": "heathley",
|
|
252
|
+
"vlad19@gmail.com": "dandaka",
|
|
253
|
+
"adamrummer@gmail.com": "cyclingwithelephants",
|
|
254
|
+
# Temporary tool-progress cleanup salvage (May 2026)
|
|
255
|
+
"Mrcharlesiv@gmail.com": "mrcharlesiv",
|
|
256
|
+
"nbot@liizfq.top": "liizfq",
|
|
257
|
+
"274096618+hermes-agent-dhabibi@users.noreply.github.com": "dhabibi",
|
|
258
|
+
"dejie.guo@gmail.com": "JayGwod",
|
|
259
|
+
"133716830+0xKingBack@users.noreply.github.com": "0xKingBack",
|
|
260
|
+
"daixin1204@gmail.com": "SimbaKingjoe",
|
|
261
|
+
"maxence@groine.fr": "MaxyMoos",
|
|
262
|
+
"61830395+leprincep35700@users.noreply.github.com": "leprincep35700",
|
|
263
|
+
# OpenViking viking_read salvage (April 2026)
|
|
264
|
+
"hitesh@gmail.com": "htsh",
|
|
265
|
+
"pty819@outlook.com": "pty819",
|
|
266
|
+
"pty819@users.noreply.github.com": "pty819",
|
|
267
|
+
"14341805+pty819@users.noreply.github.com": "pty819",
|
|
268
|
+
"517024110@qq.com": "chennest",
|
|
269
|
+
# Curator fixes (Apr 30 2026)
|
|
270
|
+
"yuxiangl490@gmail.com": "y0shua1ee",
|
|
271
|
+
"manmit0x@gmail.com": "0xDevNinja",
|
|
272
|
+
"stevekelly622@gmail.com": "steezkelly",
|
|
273
|
+
"brian@dralth.com": "btorresgil",
|
|
274
|
+
"momowind@gmail.com": "momowind",
|
|
275
|
+
"clockwork-codex@users.noreply.github.com": "misery-hl",
|
|
276
|
+
"207811921+misery-hl@users.noreply.github.com": "misery-hl",
|
|
277
|
+
"20nik.nosov21@gmail.com": "nik1t7n",
|
|
278
|
+
"90299797+nik1t7n@users.noreply.github.com": "nik1t7n",
|
|
279
|
+
"suncokret@protonmail.com": "suncokret12",
|
|
280
|
+
"mio.imoto.ai@gmail.com": "mioimotoai-lgtm",
|
|
281
|
+
"aamirjawaid@microsoft.com": "heyitsaamir",
|
|
282
|
+
"johnnncenaaa77@gmail.com": "johnncenae",
|
|
283
|
+
"thomasjhon6666@gmail.com": "ThomassJonax",
|
|
284
|
+
"focusflow.app.help@gmail.com": "yes999zc",
|
|
285
|
+
"rob@atlas.lan": "rmoen",
|
|
286
|
+
# Slack ephemeral slash-ack salvage (May 2026)
|
|
287
|
+
"probepark@users.noreply.github.com": "probepark",
|
|
288
|
+
# Slack batch salvage (May 2026)
|
|
289
|
+
"280484231+prive-fe-bot@users.noreply.github.com": "priveperfumes",
|
|
290
|
+
"amr@ghanem.sa": "amroessam",
|
|
291
|
+
"paperlantern.agent@gmail.com": "Hinotoi-agent",
|
|
292
|
+
"valda@underscore.jp": "valda",
|
|
293
|
+
"162235745+0z1-ghb@users.noreply.github.com": "0z1-ghb",
|
|
294
|
+
"yes999zc@163.com": "yes999zc",
|
|
295
|
+
"343873859@qq.com": "DrStrangerUJN",
|
|
296
|
+
"252818347@qq.com": "hejuntt1014",
|
|
297
|
+
"uzmpsk.dilekakbas@gmail.com": "dlkakbs",
|
|
298
|
+
"beliefanx@gmail.com": "BeliefanX",
|
|
299
|
+
"changchun989@proton.me": "changchun989",
|
|
300
|
+
"jefferson@heimdallstrategy.com": "Mind-Dragon",
|
|
301
|
+
"44753291+Nanako0129@users.noreply.github.com": "Nanako0129",
|
|
302
|
+
"steve.westerhouse@origami-analytics.com": "westers",
|
|
303
|
+
"yeyitech@users.noreply.github.com": "yeyitech",
|
|
304
|
+
"260878550+beenherebefore@users.noreply.github.com": "beenherebefore",
|
|
305
|
+
"79389617+txbxxx@users.noreply.github.com": "txbxxx",
|
|
306
|
+
"liuhao03@bilibili.com": "liuhao1024",
|
|
307
|
+
"130918800+devorun@users.noreply.github.com": "devorun",
|
|
308
|
+
"surat.s@itm.kmutnb.ac.th": "beesrsj2500",
|
|
309
|
+
"beesr@bee.localdomain": "beesrsj2500",
|
|
310
|
+
"mind-dragon@nous.research": "Mind-Dragon",
|
|
311
|
+
"juntingpublic@gmail.com": "JustinUssuri",
|
|
312
|
+
"mtf201013@gmail.com": "ma-pony",
|
|
313
|
+
"sonoyuncudmr@gmail.com": "Sonoyunchu",
|
|
314
|
+
"43525405+yatesjalex@users.noreply.github.com": "yatesjalex",
|
|
315
|
+
"maks.mir@yahoo.com": "say8hi",
|
|
316
|
+
"27719690+Mirac1eSky@users.noreply.github.com": "Mirac1eSky",
|
|
317
|
+
"web3blind@users.noreply.github.com": "web3blind",
|
|
318
|
+
"julia@alexland.us": "alexg0bot",
|
|
319
|
+
"christian@scheid.tech": "scheidti",
|
|
320
|
+
# Moonshot schema anyOf+enum salvage (May 2026)
|
|
321
|
+
"git@local.invalid": "hendrixfreire",
|
|
322
|
+
"1060770+benjaminsehl@users.noreply.github.com": "benjaminsehl",
|
|
323
|
+
"nerijusn76@gmail.com": "Nerijusas",
|
|
324
|
+
# Compaction salvage batch (May 2026)
|
|
325
|
+
"MacroAnarchy@users.noreply.github.com": "MacroAnarchy",
|
|
326
|
+
"itonov@proton.me": "Ito-69",
|
|
327
|
+
"glesstech@gmail.com": "georgeglessner",
|
|
328
|
+
"maxim.smetanin@gmail.com": "maxims-oss",
|
|
329
|
+
# Codex Spark restoration salvage (May 2026)
|
|
330
|
+
"olegwn@gmail.com": "nederev",
|
|
331
|
+
"vesper@askclaw.dev": "askclaw-vesper",
|
|
332
|
+
"nazirulhafiy@gmail.com": "nazirulhafiy",
|
|
333
|
+
"CREWorx@users.noreply.github.com": "BadTechBandit",
|
|
334
|
+
"yoimexex@gmail.com": "Yoimex",
|
|
335
|
+
"6548898+romanornr@users.noreply.github.com": "romanornr",
|
|
336
|
+
"foxion37@gmail.com": "foxion37",
|
|
337
|
+
"bloodcarter@gmail.com": "bloodcarter",
|
|
338
|
+
"scott@scotttrinh.com": "scotttrinh",
|
|
339
|
+
"quocanh261997@gmail.com": "quocanh261997",
|
|
340
|
+
# contributors (from noreply pattern)
|
|
341
|
+
"david.vv@icloud.com": "davidvv",
|
|
342
|
+
"wangqiang@wangqiangdeMac-mini.local": "xiaoqiang243",
|
|
343
|
+
"snreynolds2506@gmail.com": "snreynolds",
|
|
344
|
+
"35742124+0xbyt4@users.noreply.github.com": "0xbyt4",
|
|
345
|
+
"71184274+MassiveMassimo@users.noreply.github.com": "MassiveMassimo",
|
|
346
|
+
"massivemassimo@users.noreply.github.com": "MassiveMassimo",
|
|
347
|
+
"82637225+kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
|
|
348
|
+
"keifergu@tencent.com": "keifergu",
|
|
349
|
+
"kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
|
|
350
|
+
"SHL0MS@users.noreply.github.com": "SHL0MS",
|
|
351
|
+
"abner.the.foreman@agentmail.to": "Abnertheforeman",
|
|
352
|
+
"adam.manning@pro-serveinc.com": "amanning3390",
|
|
353
|
+
"thomasgeorgevii09@gmail.com": "tochukwuada",
|
|
354
|
+
"sb@wmc.sh": "zicochaos",
|
|
355
|
+
"harryykyle1@gmail.com": "hharry11",
|
|
356
|
+
"kshitijk4poor@gmail.com": "kshitijk4poor",
|
|
357
|
+
"1294707+Tosko4@users.noreply.github.com": "Tosko4",
|
|
358
|
+
"keira.voss94@gmail.com": "keiravoss94",
|
|
359
|
+
"16443023+stablegenius49@users.noreply.github.com": "stablegenius49",
|
|
360
|
+
"fqsy1416@gmail.com": "EKKOLearnAI",
|
|
361
|
+
"octo-patch@github.com": "octo-patch",
|
|
362
|
+
"math0r-be@github.com": "math0r-be",
|
|
363
|
+
"simbamax99@gmail.com": "simbam99",
|
|
364
|
+
"iris@growthpillars.co": "irispillars",
|
|
365
|
+
"185121704+stablegenius49@users.noreply.github.com": "stablegenius49",
|
|
366
|
+
"101283333+batuhankocyigit@users.noreply.github.com": "batuhankocyigit",
|
|
367
|
+
"255305877+ismell0992-afk@users.noreply.github.com": "ismell0992-afk",
|
|
368
|
+
"cyprian@ironin.pl": "iRonin",
|
|
369
|
+
"valdi.jorge@gmail.com": "jvcl",
|
|
370
|
+
"q19dcp@gmail.com": "aj-nt",
|
|
371
|
+
"ebukau84@gmail.com": "UgwujaGeorge",
|
|
372
|
+
"francip@gmail.com": "francip",
|
|
373
|
+
"omni@comelse.com": "omnissiah-comelse",
|
|
374
|
+
"oussama.redcode@gmail.com": "mavrickdeveloper",
|
|
375
|
+
"126368201+vilkasdev@users.noreply.github.com": "vilkasdev",
|
|
376
|
+
"137614867+cutepawss@users.noreply.github.com": "cutepawss",
|
|
377
|
+
"96793918+memosr@users.noreply.github.com": "memosr",
|
|
378
|
+
"mehmet.sr35@gmail.com": "memosr",
|
|
379
|
+
"milkoor@users.noreply.github.com": "milkoor",
|
|
380
|
+
"xuerui911@gmail.com": "Fatty911",
|
|
381
|
+
"131039422+SHL0MS@users.noreply.github.com": "SHL0MS",
|
|
382
|
+
"77628552+raulvidis@users.noreply.github.com": "raulvidis",
|
|
383
|
+
"145567217+Aum08Desai@users.noreply.github.com": "Aum08Desai",
|
|
384
|
+
"256820943+kshitij-eliza@users.noreply.github.com": "kshitij-eliza",
|
|
385
|
+
"jiechengwu@pony.ai": "Jason2031",
|
|
386
|
+
"44278268+shitcoinsherpa@users.noreply.github.com": "shitcoinsherpa",
|
|
387
|
+
"104278804+Sertug17@users.noreply.github.com": "Sertug17",
|
|
388
|
+
"112503481+caentzminger@users.noreply.github.com": "caentzminger",
|
|
389
|
+
"258577966+voidborne-d@users.noreply.github.com": "voidborne-d",
|
|
390
|
+
"3820588+ddupont808@users.noreply.github.com": "ddupont808",
|
|
391
|
+
"liusway405@gmail.com": "voidborne-d",
|
|
392
|
+
"xydarcher@uestc.edu.cn": "Readon",
|
|
393
|
+
"sir_even@icloud.com": "sirEven",
|
|
394
|
+
"36056348+sirEven@users.noreply.github.com": "sirEven",
|
|
395
|
+
"70424851+insecurejezza@users.noreply.github.com": "insecurejezza",
|
|
396
|
+
"jezzahehn@gmail.com": "JezzaHehn",
|
|
397
|
+
"barnacleboy.jezzahehn@agentmail.to": "JezzaHehn",
|
|
398
|
+
"254021826+dodo-reach@users.noreply.github.com": "dodo-reach",
|
|
399
|
+
"259807879+Bartok9@users.noreply.github.com": "Bartok9",
|
|
400
|
+
"270082434+crayfish-ai@users.noreply.github.com": "crayfish-ai",
|
|
401
|
+
"241404605+MestreY0d4-Uninter@users.noreply.github.com": "MestreY0d4-Uninter",
|
|
402
|
+
"268667990+Roy-oss1@users.noreply.github.com": "Roy-oss1",
|
|
403
|
+
"27917469+nosleepcassette@users.noreply.github.com": "nosleepcassette",
|
|
404
|
+
"241404605+MestreY0d4-Uninter@users.noreply.github.com": "MestreY0d4-Uninter",
|
|
405
|
+
"109555139+davetist@users.noreply.github.com": "davetist",
|
|
406
|
+
"39405770+yyq4193@users.noreply.github.com": "yyq4193",
|
|
407
|
+
"Asunfly@users.noreply.github.com": "Asunfly",
|
|
408
|
+
"2500400+honghua@users.noreply.github.com": "honghua",
|
|
409
|
+
"462836+jplew@users.noreply.github.com": "jplew",
|
|
410
|
+
"nish3451@users.noreply.github.com": "nish3451",
|
|
411
|
+
"Mibayy@users.noreply.github.com": "Mibayy",
|
|
412
|
+
"mibayy@users.noreply.github.com": "Mibayy",
|
|
413
|
+
"mibay@clawhub.io": "Mibayy",
|
|
414
|
+
"louismichalot@hotmail.com": "Mibayy",
|
|
415
|
+
"135070653+sgaofen@users.noreply.github.com": "sgaofen",
|
|
416
|
+
"lzy.dev@gmail.com": "zhiyanliu",
|
|
417
|
+
"me@janstepanovsky.cz": "hhhonzik",
|
|
418
|
+
"139848623+hhuang91@users.noreply.github.com": "hhuang91",
|
|
419
|
+
"s.ozaki@ebinou.net": "Satoshi-agi",
|
|
420
|
+
"10774721+kunlabs@users.noreply.github.com": "kunlabs",
|
|
421
|
+
"110560187+Wang-tianhao@users.noreply.github.com": "Wang-tianhao",
|
|
422
|
+
"170458616+ghostmfr@users.noreply.github.com": "ghostmfr",
|
|
423
|
+
"1848670+mewwts@users.noreply.github.com": "mewwts",
|
|
424
|
+
"1930707+haru398801@users.noreply.github.com": "haru398801",
|
|
425
|
+
"rapabelias@gmail.com": "badgerbees",
|
|
426
|
+
"xnb888@proton.me": "xnbi",
|
|
427
|
+
"xiahu889889@proton.me": "xiahu88988",
|
|
428
|
+
"nocoo@users.noreply.github.com": "nocoo",
|
|
429
|
+
"30841158+n-WN@users.noreply.github.com": "n-WN",
|
|
430
|
+
"tsuijinglei@gmail.com": "hiddenpuppy",
|
|
431
|
+
"buraysandro9@gmail.com": "ygd58",
|
|
432
|
+
"jerome@clawwork.ai": "HiddenPuppy",
|
|
433
|
+
"jerome.benoit@sap.com": "jerome-benoit",
|
|
434
|
+
"wysie@users.noreply.github.com": "Wysie",
|
|
435
|
+
"leoyuan0099@gmail.com": "keyuyuan",
|
|
436
|
+
"bxzt2006@163.com": "Only-Code-A",
|
|
437
|
+
"i@troy-y.org": "TroyMitchell911",
|
|
438
|
+
"mygamez@163.com": "zhongyueming1121",
|
|
439
|
+
"hansnow@users.noreply.github.com": "hansnow",
|
|
440
|
+
"134848055+UNLINEARITY@users.noreply.github.com": "UNLINEARITY",
|
|
441
|
+
"ben.burtenshaw@gmail.com": "burtenshaw",
|
|
442
|
+
"roopaknijhara@gmail.com": "rnijhara",
|
|
443
|
+
"josephzcan@gmail.com": "j0sephz",
|
|
444
|
+
# contributors (manual mapping from git names)
|
|
445
|
+
"ahmedsherif95@gmail.com": "asheriif",
|
|
446
|
+
"dyxushuai@gmail.com": "dyxushuai",
|
|
447
|
+
"33860762+etcircle@users.noreply.github.com": "etcircle",
|
|
448
|
+
"liujinkun@bytedance.com": "liujinkun2025",
|
|
449
|
+
"dmayhem93@gmail.com": "dmahan93",
|
|
450
|
+
"fr@tecompanytea.com": "ifrederico",
|
|
451
|
+
"cdanis@gmail.com": "cdanis",
|
|
452
|
+
"samherring99@gmail.com": "samherring99",
|
|
453
|
+
"desaiaum08@gmail.com": "Aum08Desai",
|
|
454
|
+
"shannon.sands.1979@gmail.com": "shannonsands",
|
|
455
|
+
"shannon@nousresearch.com": "shannonsands",
|
|
456
|
+
"abdi.moya@gmail.com": "AxDSan",
|
|
457
|
+
"eri@plasticlabs.ai": "Erosika",
|
|
458
|
+
"hjcpuro@gmail.com": "hjc-puro",
|
|
459
|
+
"xaydinoktay@gmail.com": "aydnOktay",
|
|
460
|
+
"abdullahfarukozden@gmail.com": "Farukest",
|
|
461
|
+
"lovre.pesut@gmail.com": "rovle",
|
|
462
|
+
"xjtumj@gmail.com": "mengjian-github",
|
|
463
|
+
"kevinskysunny@gmail.com": "kevinskysunny",
|
|
464
|
+
"xiewenxuan462@gmail.com": "yule975",
|
|
465
|
+
"yiweimeng.dlut@hotmail.com": "meng93",
|
|
466
|
+
"hakanerten02@hotmail.com": "teyrebaz33",
|
|
467
|
+
"linux2010@users.noreply.github.com": "Linux2010",
|
|
468
|
+
"elmatadorgh@users.noreply.github.com": "elmatadorgh",
|
|
469
|
+
"coktinbaran5@gmail.com": "elmatadorgh",
|
|
470
|
+
"alexazzjjtt@163.com": "alexzhu0",
|
|
471
|
+
"1180176+Swift42@users.noreply.github.com": "Swift42",
|
|
472
|
+
"ruzzgarcn@gmail.com": "Ruzzgar",
|
|
473
|
+
"yukipukikedy@gmail.com": "Yukipukii1",
|
|
474
|
+
"alireza78.crypto@gmail.com": "alireza78a",
|
|
475
|
+
"brooklyn.bb.nicholson@gmail.com": "brooklynnicholson",
|
|
476
|
+
"withapurpose37@gmail.com": "StefanIsMe",
|
|
477
|
+
"4317663+helix4u@users.noreply.github.com": "helix4u",
|
|
478
|
+
"ifkellx@users.noreply.github.com": "Ifkellx",
|
|
479
|
+
"331214+counterposition@users.noreply.github.com": "counterposition",
|
|
480
|
+
"blspear@gmail.com": "BrennerSpear",
|
|
481
|
+
"akhater@gmail.com": "akhater",
|
|
482
|
+
"Cos_Admin@PTG-COS.lodluvup4uaudnm3ycd14giyug.xx.internal.cloudapp.net": "akhater",
|
|
483
|
+
"239876380+handsdiff@users.noreply.github.com": "handsdiff",
|
|
484
|
+
"hesapacicam112@gmail.com": "etherman-os",
|
|
485
|
+
"mark.ramsell@rivermounts.com": "mark-ramsell",
|
|
486
|
+
"taeng02@icloud.com": "taeng0204",
|
|
487
|
+
"gpickett00@gmail.com": "gpickett00",
|
|
488
|
+
"mcosma@gmail.com": "wakamex",
|
|
489
|
+
"clawdia.nash@proton.me": "clawdia-nash",
|
|
490
|
+
"pickett.austin@gmail.com": "austinpickett",
|
|
491
|
+
"dangtc94@gmail.com": "dieutx",
|
|
492
|
+
"jaisehgal11299@gmail.com": "jaisup",
|
|
493
|
+
"percydikec@gmail.com": "PercyDikec",
|
|
494
|
+
"noonou7@gmail.com": "HenkDz",
|
|
495
|
+
# Azure Foundry salvage (PRs #9029, #4599, #10086, #8766)
|
|
496
|
+
"tech@smartlogics.net": "TechPrototyper",
|
|
497
|
+
"637186+HangGlidersRule@users.noreply.github.com": "HangGlidersRule",
|
|
498
|
+
"pein892@gmail.com": "pein892",
|
|
499
|
+
"dean.kerr@gmail.com": "deankerr",
|
|
500
|
+
"socrates1024@gmail.com": "socrates1024",
|
|
501
|
+
"seanalt555@gmail.com": "Salt-555",
|
|
502
|
+
"satelerd@gmail.com": "satelerd",
|
|
503
|
+
"dan@danlynn.com": "danklynn",
|
|
504
|
+
"mattmaximo@hotmail.com": "MattMaximo",
|
|
505
|
+
"MatthewRHardwick@gmail.com": "mrhwick",
|
|
506
|
+
"149063006+j3ffffff@users.noreply.github.com": "j3ffffff",
|
|
507
|
+
"A-FdL-Prog@users.noreply.github.com": "A-FdL-Prog",
|
|
508
|
+
"l0hde@users.noreply.github.com": "l0hde",
|
|
509
|
+
"difujia@users.noreply.github.com": "difujia",
|
|
510
|
+
"vominh1919@gmail.com": "vominh1919",
|
|
511
|
+
"yue.gu2023@gmail.com": "YueLich",
|
|
512
|
+
"51783311+andyylin@users.noreply.github.com": "andyylin",
|
|
513
|
+
"me@jakubkrcmar.cz": "jakubkrcmar",
|
|
514
|
+
"prasadus92@gmail.com": "prasadus92",
|
|
515
|
+
"michael@make.software": "mssteuer",
|
|
516
|
+
"der@konsi.org": "konsisumer",
|
|
517
|
+
"abogale2@gmail.com": "amanuel2",
|
|
518
|
+
"alexazzjjtt@163.com": "alexzhu0",
|
|
519
|
+
"pub_forgreatagent@antgroup.com": "AntAISecurityLab",
|
|
520
|
+
"252620095+briandevans@users.noreply.github.com": "briandevans",
|
|
521
|
+
"danielrpike9@gmail.com": "Bartok9",
|
|
522
|
+
"skozyuk@cruxexperts.com": "CruxExperts",
|
|
523
|
+
"154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
524
|
+
"12250313+Kailigithub@users.noreply.github.com": "Kailigithub",
|
|
525
|
+
"mgparkprint@gmail.com": "vlwkaos",
|
|
526
|
+
"1317078257maroon@gmail.com": "Oxidane-bot",
|
|
527
|
+
"tranquil_flow@protonmail.com": "Tranquil-Flow",
|
|
528
|
+
"LyleLengyel@gmail.com": "mcndjxlefnd",
|
|
529
|
+
"wangshengyang2004@163.com": "Wangshengyang2004",
|
|
530
|
+
"hasan.ali13381@gmail.com": "H-Ali13381",
|
|
531
|
+
"xienb@proton.me": "XieNBi",
|
|
532
|
+
"139681654+maymuneth@users.noreply.github.com": "maymuneth",
|
|
533
|
+
"zengwei@nightq.cn": "nightq",
|
|
534
|
+
"1434494126@qq.com": "5park1e",
|
|
535
|
+
"158153005+5park1e@users.noreply.github.com": "5park1e",
|
|
536
|
+
"innocarpe@gmail.com": "innocarpe",
|
|
537
|
+
"noreply@ked.com": "qike-ms",
|
|
538
|
+
"andrekurait@gmail.com": "AndreKurait",
|
|
539
|
+
"bsgdigital@users.noreply.github.com": "bsgdigital",
|
|
540
|
+
"numman.ali@gmail.com": "nummanali",
|
|
541
|
+
"rohithsaimidigudla@gmail.com": "whitehatjr1001",
|
|
542
|
+
"0xNyk@users.noreply.github.com": "0xNyk",
|
|
543
|
+
"0xnykcd@googlemail.com": "0xNyk",
|
|
544
|
+
"buraysandro9@gmail.com": "buray",
|
|
545
|
+
"contact@jomar.fr": "joshmartinelle",
|
|
546
|
+
"camilo@tekelala.com": "tekelala",
|
|
547
|
+
"vincentcharlebois@gmail.com": "vincentcharlebois",
|
|
548
|
+
"aryan@synvoid.com": "aryansingh",
|
|
549
|
+
"johnsonblake1@gmail.com": "voteblake",
|
|
550
|
+
"hcn518@gmail.com": "pedh",
|
|
551
|
+
"haileymarshall005@gmail.com": "haileymarshall",
|
|
552
|
+
"bennet.yr.wang@gmail.com": "BennetYrWang",
|
|
553
|
+
"greer.guthrie@gmail.com": "g-guthrie",
|
|
554
|
+
"kennyx102@gmail.com": "bobashopcashier",
|
|
555
|
+
"77253505+bobashopcashier@users.noreply.github.com": "bobashopcashier",
|
|
556
|
+
"25355950+megastary@users.noreply.github.com": "megastary", # PR #18325
|
|
557
|
+
"shokatalishaikh95@gmail.com": "areu01or00",
|
|
558
|
+
"bryan@intertwinesys.com": "bryanyoung",
|
|
559
|
+
"christo.mitov@gmail.com": "christomitov",
|
|
560
|
+
"hermes@nousresearch.com": "NousResearch",
|
|
561
|
+
"reginaldasr@gmail.com": "ReginaldasR",
|
|
562
|
+
"ntconguit@gmail.com": "0xharryriddle",
|
|
563
|
+
"agent@wildcat.local": "ericnicolaides",
|
|
564
|
+
"georgex8001@gmail.com": "georgex8001",
|
|
565
|
+
"stefan@dimagents.ai": "dimitrovi",
|
|
566
|
+
"hermes@noushq.ai": "benbarclay",
|
|
567
|
+
"chinmingcock@gmail.com": "ChimingLiu",
|
|
568
|
+
"allard.quek@singtel.com": "AllardQuek",
|
|
569
|
+
"openclaw@sparklab.ai": "openclaw",
|
|
570
|
+
"semihcvlk53@gmail.com": "Himess",
|
|
571
|
+
"erenkar950@gmail.com": "erenkarakus",
|
|
572
|
+
"adavyasharma@gmail.com": "adavyas",
|
|
573
|
+
"acaayush1111@gmail.com": "aayushchaudhary",
|
|
574
|
+
"jason@outland.art": "jasonoutland",
|
|
575
|
+
"73175452+Magaav@users.noreply.github.com": "Magaav",
|
|
576
|
+
"mrflu1918@proton.me": "SPANISHFLU",
|
|
577
|
+
"morganemoss@gmai.com": "mormio",
|
|
578
|
+
"kopjop926@gmail.com": "cesareth",
|
|
579
|
+
"fuleinist@gmail.com": "fuleinist",
|
|
580
|
+
"jack.47@gmail.com": "JackTheGit",
|
|
581
|
+
"dalvidjr2022@gmail.com": "Jr-kenny",
|
|
582
|
+
"m@statecraft.systems": "mbierling",
|
|
583
|
+
"balyan.sid@gmail.com": "alt-glitch",
|
|
584
|
+
"52913345+alt-glitch@users.noreply.github.com": "alt-glitch",
|
|
585
|
+
"oluwadareab12@gmail.com": "oluwadareab12",
|
|
586
|
+
"simon@simonmarcus.org": "simon-marcus",
|
|
587
|
+
"xowiekk@gmail.com": "Xowiek",
|
|
588
|
+
"1243352777@qq.com": "zons-zhaozhy",
|
|
589
|
+
"e.silacandmr@gmail.com": "Es1la",
|
|
590
|
+
"51599529+stephen0110@users.noreply.github.com": "stephen0110",
|
|
591
|
+
"265632032+sonic-netizen@users.noreply.github.com": "sonic-netizen",
|
|
592
|
+
"82531659+mwnickerson@users.noreply.github.com": "mwnickerson",
|
|
593
|
+
"sandrohub013@gmail.com": "SandroHub013",
|
|
594
|
+
"maciekczech@users.noreply.github.com": "maciekczech",
|
|
595
|
+
"h3057183414@gmail.com": "CoreyNoDream",
|
|
596
|
+
"franksong2702@gmail.com": "franksong2702",
|
|
597
|
+
"673088860@qq.com": "ambition0802",
|
|
598
|
+
"beibei1988@proton.me": "beibi9966",
|
|
599
|
+
# ── bulk addition: 75 emails resolved via API, PR salvage bodies, noreply
|
|
600
|
+
# crossref, and GH contributor list matching (April 2026 audit) ──
|
|
601
|
+
"1115117931@qq.com": "aaronagent",
|
|
602
|
+
"1506751656@qq.com": "hqhq1025",
|
|
603
|
+
"364939526@qq.com": "luyao618",
|
|
604
|
+
"hgk324@gmail.com": "houziershi",
|
|
605
|
+
"176644217+PStarH@users.noreply.github.com": "PStarH",
|
|
606
|
+
"51058514+Sanjays2402@users.noreply.github.com": "Sanjays2402",
|
|
607
|
+
"16577466+andy825@user.noreply.gitee.com": "Andy283",
|
|
608
|
+
"906014227@qq.com": "bingo906",
|
|
609
|
+
"aaronwong1999@icloud.com": "AaronWong1999",
|
|
610
|
+
"agents@kylefrench.dev": "DeployFaith",
|
|
611
|
+
"angelos@oikos.lan.home.malaiwah.com": "angelos",
|
|
612
|
+
"aptx4561@gmail.com": "cokemine",
|
|
613
|
+
"arilotter@gmail.com": "ethernet8023",
|
|
614
|
+
"ben@nousresearch.com": "benbarclay",
|
|
615
|
+
"birdiegyal@gmail.com": "yyovil",
|
|
616
|
+
"boschi1997@gmail.com": "nicoloboschi",
|
|
617
|
+
"chef.ya@gmail.com": "cherifya",
|
|
618
|
+
"chlqhdtn98@gmail.com": "BongSuCHOI",
|
|
619
|
+
"coffeemjj@gmail.com": "Cafexss",
|
|
620
|
+
"dalianmao0107@gmail.com": "dalianmao000",
|
|
621
|
+
"der@konsi.org": "konsisumer",
|
|
622
|
+
"dgrieco@redhat.com": "DomGrieco",
|
|
623
|
+
"dhicham.pro@gmail.com": "spideystreet",
|
|
624
|
+
"dipp.who@gmail.com": "dippwho",
|
|
625
|
+
"don.rhm@gmail.com": "donrhmexe",
|
|
626
|
+
"dorukardahan@hotmail.com": "dorukardahan",
|
|
627
|
+
"dsocolobsky@gmail.com": "dsocolobsky",
|
|
628
|
+
"dylan.socolobsky@lambdaclass.com": "dsocolobsky",
|
|
629
|
+
"ignacio.avecilla@lambdaclass.com": "IAvecilla",
|
|
630
|
+
"duerzy@gmail.com": "duerzy",
|
|
631
|
+
"emozilla@nousresearch.com": "emozilla",
|
|
632
|
+
"fancydirty@gmail.com": "fancydirty",
|
|
633
|
+
"farion1231@gmail.com": "farion1231",
|
|
634
|
+
"floptopbot33@gmail.com": "flobo3",
|
|
635
|
+
"fontana.pedro93@gmail.com": "pefontana",
|
|
636
|
+
"francis.x.fitzpatrick@gmail.com": "fxfitz",
|
|
637
|
+
"frank@helmschrott.de": "Helmi",
|
|
638
|
+
"gaixg94@gmail.com": "gaixianggeng",
|
|
639
|
+
"geoff.wellman@gmail.com": "geoffwellman",
|
|
640
|
+
"han.shan@live.cn": "jamesarch",
|
|
641
|
+
"haolong@microsoft.com": "LongOddCode",
|
|
642
|
+
"hata1234@gmail.com": "hata1234",
|
|
643
|
+
"hmbown@gmail.com": "Hmbown",
|
|
644
|
+
"iacobs@m0n5t3r.info": "m0n5t3r",
|
|
645
|
+
"jiayuw794@gmail.com": "JiayuuWang",
|
|
646
|
+
"jonny@nousresearch.com": "jquesnelle",
|
|
647
|
+
"jake@nousresearch.com": "simpolism",
|
|
648
|
+
"juan.ovalle@mistral.ai": "jjovalle99",
|
|
649
|
+
"julien.talbot@ergonomia.re": "Julientalbot",
|
|
650
|
+
"kagura.chen28@gmail.com": "kagura-agent",
|
|
651
|
+
"1342088860@qq.com": "youngDoo",
|
|
652
|
+
"kamil@gwozdz.me": "kamil-gwozdz",
|
|
653
|
+
"skmishra1991@gmail.com": "bugkill3r",
|
|
654
|
+
"karamusti912@gmail.com": "MustafaKara7",
|
|
655
|
+
"kira@ariaki.me": "kira-ariaki",
|
|
656
|
+
"kira.ops@proton.me": "KiraKatana",
|
|
657
|
+
"knopki@duck.com": "knopki",
|
|
658
|
+
"limars874@gmail.com": "limars874",
|
|
659
|
+
"lisicheng168@gmail.com": "lesterli",
|
|
660
|
+
"mingjwan@microsoft.com": "MagicRay1217",
|
|
661
|
+
"orangeko@gmail.com": "GenKoKo",
|
|
662
|
+
"82095453+iacker@users.noreply.github.com": "iacker",
|
|
663
|
+
"sontianye@users.noreply.github.com": "sontianye",
|
|
664
|
+
"jackjin1997@users.noreply.github.com": "jackjin1997",
|
|
665
|
+
"1037461232@qq.com": "jackjin1997",
|
|
666
|
+
"danieldoderlein@users.noreply.github.com": "danieldoderlein",
|
|
667
|
+
"lrawnsley@users.noreply.github.com": "lrawnsley",
|
|
668
|
+
"taeuk178@users.noreply.github.com": "taeuk178",
|
|
669
|
+
"ogzerber@users.noreply.github.com": "ogzerber",
|
|
670
|
+
"cola-runner@users.noreply.github.com": "cola-runner",
|
|
671
|
+
"ygd58@users.noreply.github.com": "ygd58",
|
|
672
|
+
"45554392+warabe1122@users.noreply.github.com": "warabe1122",
|
|
673
|
+
"187001140+willy-scr@users.noreply.github.com": "willy-scr",
|
|
674
|
+
"vominh1919@users.noreply.github.com": "vominh1919",
|
|
675
|
+
"iamagenius00@users.noreply.github.com": "iamagenius00",
|
|
676
|
+
"9219265+cresslank@users.noreply.github.com": "cresslank",
|
|
677
|
+
"trevmanthony@gmail.com": "trevthefoolish",
|
|
678
|
+
"ziliangpeng@users.noreply.github.com": "ziliangpeng",
|
|
679
|
+
"centripetal-star@users.noreply.github.com": "centripetal-star",
|
|
680
|
+
"LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
681
|
+
"154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
682
|
+
"cine.dreamer.one@gmail.com": "LeonSGP43",
|
|
683
|
+
"Lubrsy706@users.noreply.github.com": "Lubrsy706",
|
|
684
|
+
"niyant@spicefi.xyz": "spniyant",
|
|
685
|
+
"olafthiele@gmail.com": "olafthiele",
|
|
686
|
+
"oncuevtv@gmail.com": "sprmn24",
|
|
687
|
+
"programming@olafthiele.com": "olafthiele",
|
|
688
|
+
"r2668940489@gmail.com": "r266-tech",
|
|
689
|
+
"s5460703@gmail.com": "BlackishGreen33",
|
|
690
|
+
"saul.jj.wu@gmail.com": "SaulJWu",
|
|
691
|
+
"shenhaocheng19990111@gmail.com": "hcshen0111",
|
|
692
|
+
"sjtuwbh@gmail.com": "Cygra",
|
|
693
|
+
"srhtsrht17@gmail.com": "Sertug17",
|
|
694
|
+
"stephenschoettler@gmail.com": "stephenschoettler",
|
|
695
|
+
"tanishq231003@gmail.com": "yyovil",
|
|
696
|
+
"taosiyuan163@153.com": "taosiyuan163",
|
|
697
|
+
"tesseracttars@gmail.com": "tesseracttars-creator",
|
|
698
|
+
"tianliangjay@gmail.com": "xingkongliang",
|
|
699
|
+
"1317078257maroon@gmail.com": "Oxidane-bot",
|
|
700
|
+
"tranquil_flow@protonmail.com": "Tranquil-Flow",
|
|
701
|
+
"LyleLengyel@gmail.com": "mcndjxlefnd",
|
|
702
|
+
"unayung@gmail.com": "Unayung",
|
|
703
|
+
"vorvul.danylo@gmail.com": "WorldInnovationsDepartment",
|
|
704
|
+
"win4r@outlook.com": "win4r",
|
|
705
|
+
"xush@xush.org": "KUSH42",
|
|
706
|
+
"yangzhi.see@gmail.com": "SeeYangZhi",
|
|
707
|
+
"yongtenglei@gmail.com": "yongtenglei",
|
|
708
|
+
"young@YoungdeMacBook-Pro.local": "YoungYang963",
|
|
709
|
+
"ysfalweshcan@gmail.com": "Junass1",
|
|
710
|
+
"ysfwaxlycan@gmail.com": "WAXLYY",
|
|
711
|
+
"yusufalweshdemir@gmail.com": "Dusk1e",
|
|
712
|
+
"zhouboli@gmail.com": "zhouboli",
|
|
713
|
+
"zqiao@microsoft.com": "tomqiaozc",
|
|
714
|
+
"zzn+pa@zzn.im": "xinbenlv",
|
|
715
|
+
"zaynjarvis@gmail.com": "ZaynJarvis",
|
|
716
|
+
"zhiheng.liu@bytedance.com": "ZaynJarvis",
|
|
717
|
+
"izhaolongfei@gmail.com": "loongfay",
|
|
718
|
+
"296659110@qq.com": "lrt4836",
|
|
719
|
+
"fe.daniel91@gmail.com": "beforeload",
|
|
720
|
+
"libo1106@foxmail.com": "libo1106",
|
|
721
|
+
"295367131@qq.com": "295367131",
|
|
722
|
+
"295367132@qq.com": "IxAres",
|
|
723
|
+
"danieldliu@tencent.com": "danieldliu",
|
|
724
|
+
"loongzhao@tencent.com": "loongzhao",
|
|
725
|
+
"Bartok9@users.noreply.github.com": "Bartok9",
|
|
726
|
+
"LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
727
|
+
"kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
|
|
728
|
+
"mbelleau@Michels-MacBook-Pro.local": "malaiwah",
|
|
729
|
+
"michel.belleau@malaiwah.com": "malaiwah",
|
|
730
|
+
"gnanasekaran.sekareee@gmail.com": "gnanam1990",
|
|
731
|
+
"jz.pentest@gmail.com": "0xyg3n",
|
|
732
|
+
"7093928+0xyg3n@users.noreply.github.com": "0xyg3n",
|
|
733
|
+
"nftpoetrist@gmail.com": "nftpoetrist", # PR #18982
|
|
734
|
+
"millerc79@users.noreply.github.com": "millerc79", # PR #19033
|
|
735
|
+
"hermes@example.com": "shellybotmoyer", # PR #18915 (bot-committed)
|
|
736
|
+
"exx@example.com": "exxmen", # PR #19555
|
|
737
|
+
"hypnosis.mda@gmail.com": "Hypn0sis",
|
|
738
|
+
"ywt000818@gmail.com": "OwenYWT",
|
|
739
|
+
"dhandhalyabhavik@gmail.com": "v1k22",
|
|
740
|
+
"rucchizhao@zhaochenfeideMacBook-Pro.local": "RucchiZ",
|
|
741
|
+
"tannerfokkens@Mac.attlocal.net": "tannerfokkens-maker",
|
|
742
|
+
"lehaolin98@outlook.com": "LehaoLin",
|
|
743
|
+
"yuewang1@microsoft.com": "imink",
|
|
744
|
+
"1736355688@qq.com": "hedgeho9X",
|
|
745
|
+
"bernylinville@devopsthink.org": "bernylinville",
|
|
746
|
+
"brian@bde.io": "briandevans",
|
|
747
|
+
"hubin_ll@qq.com": "LLQWQ",
|
|
748
|
+
"memosr_email@gmail.com": "memosr",
|
|
749
|
+
"jperlow@gmail.com": "perlowja",
|
|
750
|
+
"jasonpette1783@gmail.com": "web-dev0521",
|
|
751
|
+
"bjianhang@gmail.com": "bjianhang",
|
|
752
|
+
"tangyuanjc@JCdeAIfenshendeMac-mini.local": "tangyuanjc",
|
|
753
|
+
"harryplusplus@gmail.com": "harryplusplus",
|
|
754
|
+
"anthhub@163.com": "anthhub",
|
|
755
|
+
"vmphuongit@gmail.com": "phuongvm",
|
|
756
|
+
"allard.quek@singtel.com": "AllardQuek",
|
|
757
|
+
"shenuu@gmail.com": "shenuu",
|
|
758
|
+
"xiayh17@gmail.com": "xiayh0107",
|
|
759
|
+
"zhujianxyz@gmail.com": "opriz",
|
|
760
|
+
"tuancanhnguyen706@gmail.com": "xxxigm",
|
|
761
|
+
"asurla@nvidia.com": "anniesurla",
|
|
762
|
+
"kchantharuan@nvidia.com": "nv-kasikritc",
|
|
763
|
+
"limkuan24@gmail.com": "WideLee",
|
|
764
|
+
"aviralarora002@gmail.com": "AviArora02-commits",
|
|
765
|
+
"draixagent@gmail.com": "draix",
|
|
766
|
+
"junminliu@gmail.com": "JimLiu",
|
|
767
|
+
"jarvischer@gmail.com": "maxchernin",
|
|
768
|
+
"levantam.98.2324@gmail.com": "LVT382009",
|
|
769
|
+
"zhurongcheng@rcrai.com": "heykb",
|
|
770
|
+
"withapurpose37@gmail.com": "StefanIsMe",
|
|
771
|
+
"261797239+lumenradley@users.noreply.github.com": "lumenradley",
|
|
772
|
+
"166376523+sjz-ks@users.noreply.github.com": "sjz-ks",
|
|
773
|
+
"haileymarshall005@gmail.com": "haileymarshall",
|
|
774
|
+
"aniruddhaadak80@users.noreply.github.com": "aniruddhaadak80",
|
|
775
|
+
"zheng.jerilyn@gmail.com": "jerilynzheng",
|
|
776
|
+
"asslaenn5@gmail.com": "Aslaaen",
|
|
777
|
+
"shalompmc0505@naver.com": "pinion05",
|
|
778
|
+
"105142614+VTRiot@users.noreply.github.com": "VTRiot",
|
|
779
|
+
"vivien000812@gmail.com": "iamagenius00",
|
|
780
|
+
"89228157+Feranmi10@users.noreply.github.com": "Feranmi10",
|
|
781
|
+
"oluwadareferanmi11@gmail.com": "Feranmi10",
|
|
782
|
+
"simon@gtcl.us": "simon-gtcl",
|
|
783
|
+
"suzukaze.haduki@gmail.com": "houko",
|
|
784
|
+
"cliff@cigii.com": "cgarwood82",
|
|
785
|
+
"anna@oa.ke": "anna-oake",
|
|
786
|
+
"jaffarkeikei@gmail.com": "jaffarkeikei",
|
|
787
|
+
"hxp@hxp.plus": "hxp-plus",
|
|
788
|
+
"3580442280@qq.com": "Tianworld",
|
|
789
|
+
"wujianxu91@gmail.com": "wujhsu",
|
|
790
|
+
"zhrh120@gmail.com": "niyoh120",
|
|
791
|
+
"vrinek@hey.com": "vrinek",
|
|
792
|
+
"268198004+xandersbell@users.noreply.github.com": "xandersbell",
|
|
793
|
+
"somme4096@gmail.com": "Somme4096",
|
|
794
|
+
"brian@tiuxo.com": "brianclemens",
|
|
795
|
+
"25944632+yudaiyan@users.noreply.github.com": "yudaiyan",
|
|
796
|
+
"chayton@sina.com": "ycbai",
|
|
797
|
+
"longsizhuo@gmail.com": "longsizhuo",
|
|
798
|
+
"chenb19870707@gmail.com": "ms-alan",
|
|
799
|
+
"agorgianitisj@hotmail.com": "johnisag",
|
|
800
|
+
"phil.thomas@gametime.co": "explainanalyze",
|
|
801
|
+
"276886827+WuTianyi123@users.noreply.github.com": "WuTianyi123",
|
|
802
|
+
"22549957+li0near@users.noreply.github.com": "li0near",
|
|
803
|
+
"guoyu801@gmail.com": "li0near",
|
|
804
|
+
"ty@tmrtn.com": "tymrtn",
|
|
805
|
+
"elitovsky@zenproject.net": "kallidean",
|
|
806
|
+
"5463986+baocin@users.noreply.github.com": "baocin",
|
|
807
|
+
"107296821+princepal9120@users.noreply.github.com": "princepal9120",
|
|
808
|
+
"gufo0125@gmail.com": "guglielmofonda",
|
|
809
|
+
"102474490+yehuosi@users.noreply.github.com": "yehuosi",
|
|
810
|
+
"yehuosi@users.noreply.github.com": "yehuosi",
|
|
811
|
+
"31932854+jelrod27@users.noreply.github.com": "jelrod27",
|
|
812
|
+
"11262660+konsisumer@users.noreply.github.com": "konsisumer",
|
|
813
|
+
"23434080+sicnuyudidi@users.noreply.github.com": "sicnuyudidi",
|
|
814
|
+
"haimu0x0@proton.me": "haimu0x",
|
|
815
|
+
"abdelmajidnidnasser1@gmail.com": "NIDNASSER-Abdelmajid",
|
|
816
|
+
"projectadmin@wit.id": "projectadmin-dev",
|
|
817
|
+
"mrigankamondal10@gmail.com": "Dev-Mriganka",
|
|
818
|
+
"132275809+shushuzn@users.noreply.github.com": "shushuzn",
|
|
819
|
+
"ibrahimozsarac@gmail.com": "iborazzi",
|
|
820
|
+
"130149563+A-afflatus@users.noreply.github.com": "A-afflatus",
|
|
821
|
+
"huangkwell@163.com": "huangke19",
|
|
822
|
+
"tanishq@exa.ai": "10ishq",
|
|
823
|
+
"363708+christopherwoodall@users.noreply.github.com": "christopherwoodall",
|
|
824
|
+
"zhang9w0v5@qq.com": "zhang9w0v5",
|
|
825
|
+
"fuleinist@outlook.com": "fuleinist",
|
|
826
|
+
"43494187+Llugaes@users.noreply.github.com": "Llugaes",
|
|
827
|
+
"fengtianyu88@users.noreply.github.com": "fengtianyu88",
|
|
828
|
+
"l.moncany@gmail.com": "lmoncany",
|
|
829
|
+
"fatinghenji@users.noreply.github.com": "fatinghenji",
|
|
830
|
+
"xin.peng.dr@gmail.com": "xinpengdr",
|
|
831
|
+
"mike@mikewaters.net": "mikewaters",
|
|
832
|
+
"65117428+WadydX@users.noreply.github.com": "WadydX",
|
|
833
|
+
"216480837+isaachuangGMICLOUD@users.noreply.github.com": "isaachuangGMICLOUD",
|
|
834
|
+
"isaac.h@gmicloud.ai": "isaachuangGMICLOUD",
|
|
835
|
+
"nukuom976228@gmail.com": "hsy5571616",
|
|
836
|
+
"11462216+Nan93@users.noreply.github.com": "Nan93",
|
|
837
|
+
"l973401489@126.com": "zhouxiaoya12",
|
|
838
|
+
"373119611@qq.com": "roytian1217",
|
|
839
|
+
"brett@brettbrewer.com": "minorgod",
|
|
840
|
+
"67779267+wenhao7@users.noreply.github.com": "wenhao7",
|
|
841
|
+
"git@yzx9.xyz": "yzx9",
|
|
842
|
+
"nilesh@cloudgeni.us": "lvnilesh",
|
|
843
|
+
"63502660+azhengbot@users.noreply.github.com": "azhengbot",
|
|
844
|
+
"sharvil.saxena@gmail.com": "sharziki",
|
|
845
|
+
"yuanhe@minimaxi.com": "RyanLee-Dev",
|
|
846
|
+
"curtis992250@gmail.com": "TaroballzChen",
|
|
847
|
+
"92638503+Lind3ey@users.noreply.github.com": "Lind3ey",
|
|
848
|
+
"1352808998@qq.com": "phpoh",
|
|
849
|
+
"caliberoviv@gmail.com": "vivganes",
|
|
850
|
+
"michaelfackerell@gmail.com": "MikeFac",
|
|
851
|
+
"18024642@qq.com": "GuyCui",
|
|
852
|
+
"eumael.mkt@gmail.com": "maelrx",
|
|
853
|
+
# v0.11.0 additions
|
|
854
|
+
"benbarclay@gmail.com": "benbarclay",
|
|
855
|
+
"lijiawen@umich.edu": "Jiawen-lee",
|
|
856
|
+
"oleksiy@kovyrin.net": "kovyrin",
|
|
857
|
+
"kovyrin.claw@gmail.com": "kovyrin",
|
|
858
|
+
"kaiobarb@gmail.com": "liftaris",
|
|
859
|
+
"me@arihantsethia.com": "arihantsethia",
|
|
860
|
+
"zhuofengwang2003@gmail.com": "coekfung",
|
|
861
|
+
"teknium@noreply.github.com": "teknium1",
|
|
862
|
+
"2114364329@qq.com": "cuyua9",
|
|
863
|
+
"2557058999@qq.com": "Disaster-Terminator",
|
|
864
|
+
"cine.dreamer.one@gmail.com": "LeonSGP43",
|
|
865
|
+
"zyprothh@gmail.com": "Zyproth",
|
|
866
|
+
"amitgaur@gmail.com": "amitgaur",
|
|
867
|
+
"albuquerque.abner@gmail.com": "mrbob-git",
|
|
868
|
+
"kiala@users.noreply.github.com": "kiala9",
|
|
869
|
+
"alanxchen@gmail.com": "alanxchen85",
|
|
870
|
+
"clawbot@clawbots-Mac-mini.local": "John-tip",
|
|
871
|
+
"der@konsi.org": "konsisumer",
|
|
872
|
+
"cirwel@The-CIRWEL-Group.local": "CIRWEL",
|
|
873
|
+
"molvikar8@gmail.com": "molvikar",
|
|
874
|
+
"nftpoetrist@gmail.com": "nftpoetrist",
|
|
875
|
+
"dodofun@126.com": "colorcross",
|
|
876
|
+
"1615063567@qq.com": "zhao0112",
|
|
877
|
+
"ethanguo.2003@gmail.com": "EthanGuo-coder",
|
|
878
|
+
"dev0jsh@gmail.com": "tmdgusya",
|
|
879
|
+
"leavr@163.com": "leavrcn",
|
|
880
|
+
"17683456+wanazhar@users.noreply.github.com": "wanazhar",
|
|
881
|
+
"26782336+cixuuz@users.noreply.github.com": "cixuuz",
|
|
882
|
+
"aleksandr.pasevin@openzeppelin.com": "pasevin",
|
|
883
|
+
"ubuntu@localhost.localdomain": "holynn-q",
|
|
884
|
+
"holynn@placeholder.local": "holynn-q",
|
|
885
|
+
"agent@hermes.local": "jacdevos",
|
|
886
|
+
"sunsky.lau@gmail.com": "liuhao1024",
|
|
887
|
+
"qiuqfang98@qq.com": "keepcalmqqf",
|
|
888
|
+
"261867348+ai-ag2026@users.noreply.github.com": "ai-ag2026",
|
|
889
|
+
"yanzh.su@gmail.com": "YanzhongSu",
|
|
890
|
+
"wanderwang@users.noreply.github.com": "WanderWang",
|
|
891
|
+
"yueheime@gmail.com": "yuehei",
|
|
892
|
+
"emidomh@gmail.com": "Emidomenge",
|
|
893
|
+
"2642448440@qq.com": "BlackJulySnow",
|
|
894
|
+
"4317663+helix4u@users.noreply.github.com": "helix4u",
|
|
895
|
+
"floptopbot33@gmail.com": "flobo3",
|
|
896
|
+
"dpaluy@users.noreply.github.com": "dpaluy",
|
|
897
|
+
"psikonetik@gmail.com": "el-analista",
|
|
898
|
+
"chenb19870707@gmail.com": "ms-alan",
|
|
899
|
+
"agorgianitisj@hotmail.com": "johnisag",
|
|
900
|
+
"phil.thomas@gametime.co": "explainanalyze",
|
|
901
|
+
"hex-clawd@users.noreply.github.com": "hex-clawd",
|
|
902
|
+
"154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
|
|
903
|
+
"barteq@hacknotes.local": "barteqpl",
|
|
904
|
+
"pama0227@gmail.com": "pama0227",
|
|
905
|
+
"52785845+ee-blog@users.noreply.github.com": "ee-blog",
|
|
906
|
+
"simplenamebox@gmail.com": "simplenamebox-ops",
|
|
907
|
+
"balyan.sid@gmail.com": "alt-glitch",
|
|
908
|
+
"xdord@xdorddeMac-mini.local": "foreverxdord",
|
|
909
|
+
"k2767567815@gmail.com": "QifengKuang",
|
|
910
|
+
"88077783+jjjojoj@users.noreply.github.com": "jjjojoj",
|
|
911
|
+
"valda@underscore.jp": "valda",
|
|
912
|
+
"lling486@163.com": "M3RCUR2Y",
|
|
913
|
+
"buraysandro9@gmail.com": "ygd58",
|
|
914
|
+
"ideathinklab01-source@users.noreply.github.com": "ideathinklab01-source",
|
|
915
|
+
"27987889@qq.com": "zng8418",
|
|
916
|
+
"daniuxie88@proton.me": "DaniuXie",
|
|
917
|
+
"panchanler@gmail.com": "ChanlerDev",
|
|
918
|
+
"252620095+briandevans@users.noreply.github.com": "briandevans",
|
|
919
|
+
"141889580+h0tp-ftw@users.noreply.github.com": "h0tp-ftw",
|
|
920
|
+
"chinadbo@foxmail.com": "chinadbo",
|
|
921
|
+
"82637225+kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
|
|
922
|
+
"xyywtt@gmail.com": "xyiy001",
|
|
923
|
+
"charliekerfoot@gmail.com": "CharlieKerfoot",
|
|
924
|
+
"grey0202@users.noreply.github.com": "Grey0202",
|
|
925
|
+
"vominh1919@gmail.com": "vominh1919",
|
|
926
|
+
"giwavictor9@gmail.com": "giwaov",
|
|
927
|
+
"yoimexex@gmail.com": "Yoimex",
|
|
928
|
+
"76803960+atongrun@users.noreply.github.com": "atongrun",
|
|
929
|
+
"michaeldanko@icloud.com": "MichaelWDanko",
|
|
930
|
+
"xudavid429@gmail.com": "YX234",
|
|
931
|
+
"kathy@Kathy.local": "julysir",
|
|
932
|
+
"274902531@qq.com": "JanCong",
|
|
933
|
+
"225304168+e-shizz@users.noreply.github.com": "e-shizz",
|
|
934
|
+
"vincent_hh@users.noreply.github.com": "VinVC",
|
|
935
|
+
"1243352777@qq.com": "zons-zhaozhy",
|
|
936
|
+
"dejie.guo@gmail.com": "JayGwod",
|
|
937
|
+
"52840391+swithek@users.noreply.github.com": "swithek",
|
|
938
|
+
"raipratik0101@gmail.com": "PratikRai0101",
|
|
939
|
+
"code@sasha.id": "sasha-id",
|
|
940
|
+
"chen.yunbo@xydigit.com": "chenyunbo411",
|
|
941
|
+
"openclaw@local": "Asce66",
|
|
942
|
+
"59465365+0xsir0000@users.noreply.github.com": "0xsir0000",
|
|
943
|
+
"lisanhu2014@hotmail.com": "lisanhu",
|
|
944
|
+
"0668001438@zte.com.cn": "chenyunbo411",
|
|
945
|
+
"steven_chanin@alum.mit.edu": "stevenchanin",
|
|
946
|
+
"fiver@example.com": "halmisen",
|
|
947
|
+
"mayq0422@gmail.com": "yuqianma",
|
|
948
|
+
"yuqian@zmetasoft.com": "yuqianma",
|
|
949
|
+
"scott@bubble.local": "bassings",
|
|
950
|
+
"highland0971@users.noreply.github.com": "highland0971",
|
|
951
|
+
"sudolewis@gmail.com": "lewislulu",
|
|
952
|
+
"gaurav2301v@gmail.com": "Gaurav23V",
|
|
953
|
+
"tranquil_flow@protonmail.com": "Tranquil-Flow",
|
|
954
|
+
"albert748@gmail.com": "albert748",
|
|
955
|
+
"ntconguit@gmail.com": "0xharryriddle",
|
|
956
|
+
"lhysdl@gmail.com": "lhysdl",
|
|
957
|
+
"shemol@163.com": "SherlockShemol",
|
|
958
|
+
"enochlam2002@gmail.com": "eloklam",
|
|
959
|
+
"eloklam@eloklam-ubuntudesktop.tail21966c.ts.net": "eloklam",
|
|
960
|
+
"clawdia@fmercurio-macstudio.local": "fmercurio",
|
|
961
|
+
"ricardoporsche001@icloud.com": "Ricardo-M-L",
|
|
962
|
+
"leozeli@qq.com": "leozeli",
|
|
963
|
+
"linlehao@cuhk.edu.cn": "LehaoLin",
|
|
964
|
+
"liutong@isacas.ac.cn": "I3eg1nner",
|
|
965
|
+
"peterberthelsen@Peters-MacBook-Air.local": "PeterBerthelsen",
|
|
966
|
+
"root@debian.debian": "lengxii",
|
|
967
|
+
"roque@priveperfumeshn.com": "priveperfumes",
|
|
968
|
+
"shijianzhi@shijianzhideMacBook-Pro.local": "sjz-ks",
|
|
969
|
+
"topcheer@me.com": "topcheer",
|
|
970
|
+
"walli@tencent.com": "walli",
|
|
971
|
+
"zhuofengwang@tencent.com": "Zhuofeng-Wang",
|
|
972
|
+
"simonweng@tencent.com": "Contentment003111",
|
|
973
|
+
# April 2026 salvage-PR batch (#14920, #14986, #14966)
|
|
974
|
+
"mrunmayeerane17@gmail.com": "mrunmayee17",
|
|
975
|
+
"69489633+camaragon@users.noreply.github.com": "camaragon",
|
|
976
|
+
"shamork@outlook.com": "shamork",
|
|
977
|
+
# April 2026 Discord Copilot /model salvage (#15030)
|
|
978
|
+
"cshong2017@outlook.com": "Nicecsh",
|
|
979
|
+
# no-github-match — keep as display names
|
|
980
|
+
"clio-agent@sisyphuslabs.ai": "Sisyphus",
|
|
981
|
+
"marco@rutimka.de": "Marco Rutsch",
|
|
982
|
+
"paul@gamma.app": "Paul Bergeron",
|
|
983
|
+
"zhangxicen@example.com": "zhangxicen",
|
|
984
|
+
"codex@openai.invalid": "teknium1",
|
|
985
|
+
"screenmachine@gmail.com": "teknium1",
|
|
986
|
+
"chenzeshi@live.com": "chen1749144759",
|
|
987
|
+
"mor.aleksandr@yahoo.com": "MorAlekss",
|
|
988
|
+
"276649498+ztexydt-cqh@users.noreply.github.com": "ztexydt-cqh",
|
|
989
|
+
"ash@users.noreply.github.com": "ash",
|
|
990
|
+
"andrewho.sf@gmail.com": "andrewhosf",
|
|
991
|
+
# April 2026 Honcho bug-fix consolidation (#15381)
|
|
992
|
+
"HiddenPuppy@users.noreply.github.com": "HiddenPuppy",
|
|
993
|
+
"code@sasha.id": "sasha-id",
|
|
994
|
+
"dontcallmejames@users.noreply.github.com": "dontcallmejames",
|
|
995
|
+
"hekaru.agent@gmail.com": "hekaru-agent",
|
|
996
|
+
"jas9000@gmail.com": "twozle",
|
|
997
|
+
"r.filgueiras@apheris.com": "rfilgueiras",
|
|
998
|
+
"leihaibo1992@gmail.com": "Leihb",
|
|
999
|
+
# ACP streaming fix salvage (PR #9428 + #16273)
|
|
1000
|
+
"nfb0408@163.com": "ningfangbin",
|
|
1001
|
+
"164839249+Joseph19820124@users.noreply.github.com": "Joseph19820124",
|
|
1002
|
+
"rugved@lmstudio.ai": "rugvedS07",
|
|
1003
|
+
"44333070+Heltman@users.noreply.github.com": "Heltman",
|
|
1004
|
+
# v0.12.0 additions
|
|
1005
|
+
"ching@kachingappz.com": "ching-kaching",
|
|
1006
|
+
"codezhujr@gmail.com": "Zjianru", # salvage chain: code by codez, PR #15749 author @Zjianru
|
|
1007
|
+
"daimon@noreply.github.com": "Siddharth Balyan", # co-author only
|
|
1008
|
+
"i@zkl2333.com": "zkl2333",
|
|
1009
|
+
"isaachuang@Isaacs-MacBook-Pro.local": "isaachuangGMICLOUD",
|
|
1010
|
+
"isaachuang@Mac.localdomain": "isaachuangGMICLOUD", # salvage of PR #11955 → #16663
|
|
1011
|
+
"liyuan851277048@icloud.com": "Octopus", # co-author only
|
|
1012
|
+
"me+github7604@versun.org": "Versun", # co-author only
|
|
1013
|
+
"my.vesper.nine@gmail.com": "kevin-ho", # salvage: PR #15488 author @kevin-ho
|
|
1014
|
+
"noreply@paperclip.ing": "Paperclip", # co-author only
|
|
1015
|
+
"teknium@hermes-agent": "teknium1",
|
|
1016
|
+
"web3blind@gmail.com": "web3blind",
|
|
1017
|
+
"ztzheng@163.com": "chengoak", # PR #17467
|
|
1018
|
+
"24110240104@m.fudan.edu.cn": "YuShu", # co-author only
|
|
1019
|
+
"charliekerfoot@gmail.com": "CharlieKerfoot", # PR #18951
|
|
1020
|
+
# Debug share upload-time redaction (May 2026)
|
|
1021
|
+
"dhuysamen@gmail.com": "GodsBoy", # PR #19318
|
|
1022
|
+
"mrcoferland@gmail.com": "mrcoferland", # PR #19023
|
|
1023
|
+
"chenlinfeng@ruije.com.cn": "noOne-list", # PR #19050
|
|
1024
|
+
"briansu@Mac-mini.attlocal.net": "likejudy", # PR #19052
|
|
1025
|
+
"leosma@gmail.com": "leon7609", # PR #19069
|
|
1026
|
+
"nouseman666@gmail.com": "nouseman666", # PR #19088
|
|
1027
|
+
"ginwu05@gmail.com": "GinWU05", # PR #19093
|
|
1028
|
+
"shashwatgokhe2@gmail.com": "shashwatgokhe", # PR #19196
|
|
1029
|
+
"stevenchou.ai@gmail.com": "stevenchouai", # PR #19221
|
|
1030
|
+
"leo.gong@phizchat.com": "agilejava", # PR #19346
|
|
1031
|
+
"acc001k@pm.me": "acc001k", # PR #19358
|
|
1032
|
+
"kowenhao@users.noreply.github.com": "kowenhaoai", # PR #19376
|
|
1033
|
+
"hedirman@gmail.com": "hedirman", # PR #19410
|
|
1034
|
+
"lucianopacheco@gmail.com": "LucianoSP", # PR #19412
|
|
1035
|
+
"paultian.research@gmail.com": "paul-tian", # PR #19423
|
|
1036
|
+
"info@glesperance.com": "glesperance", # PR #19443
|
|
1037
|
+
"lxl694522264@gmail.com": "EvilDrag0n", # PR #20651
|
|
1038
|
+
# v0.13.0 additions
|
|
1039
|
+
"clode@clo5de.info": "jackey8616", # via PR salvage
|
|
1040
|
+
"james.russo@heygen.com": "jrusso1020", # via PR salvage
|
|
1041
|
+
"leon@sgp43.com": "LeonSGP43", # PR #18739 salvage of #14570
|
|
1042
|
+
"miniding@miniding.home": "Foolafroos", # PR #20329 French locale
|
|
1043
|
+
"montbra@gmail.com": "Montbra", # PR #20897 salvage of #16189 (TUI voice PTT)
|
|
1044
|
+
"promptsiren@gmail.com": "firefly", # PR #18123 salvage of #16660 (ContextVars)
|
|
1045
|
+
"wtyopenclaw@gmail.com": "WuTianyi123", # PR #20275 salvage of #13723 (feishu markdown)
|
|
1046
|
+
"zhicheng.han@mathematik.uni-goettingen.de": "hanzckernel", # PR #20311 (api-server approval events)
|
|
1047
|
+
"agentsmithlaor@gmail.com": "oferlaor", # PR #22356 salvage (cron origin sender identity)
|
|
1048
|
+
"jhin.lee@unity3d.com": "leehack", # PR #22053 salvage (telegram DM topic reply fallback)
|
|
1049
|
+
# pander: empty email, salvaged via PR #19665 from #16126 by @ms-alan
|
|
1050
|
+
"ayman.a.kamal@hotmail.com": "A-kamal", # PR #18678 (xAI image resolution fix)
|
|
1051
|
+
# Kanban bug-fix batch salvage (May 2026)
|
|
1052
|
+
"frowte3k@gmail.com": "Frowtek", # salvage of #23206 (gateway --board auto-subscribe)
|
|
1053
|
+
"sylw3st3rr@gmail.com": "Sylw3ster", # salvage of #23252 (HERMES_KANBAN_BOARD restore)
|
|
1054
|
+
"hello@dominikh.com": "dmnkhorvath", # salvage of #23358 (kanban worker send_message)
|
|
1055
|
+
"413011+smwbev@users.noreply.github.com": "smwbev", # salvage of #23659 (aria-label colLabel)
|
|
1056
|
+
"58116817+TurgutKural@users.noreply.github.com": "TurgutKural", # salvage of #23356 (HERMES_HOME inject)
|
|
1057
|
+
"openclaw@agent.local": "29206394", # PR #22194 salvage (sudo -S brute-force guard, #9590)
|
|
1058
|
+
"freedemon@gmail.com": "fr33d3m0n", # PR #21128 salvage (sudo stdin/askpass DANGEROUS, #17873 cat 4)
|
|
1059
|
+
"zhaowh3613@outlook.com": "VinceZcrikl", # PR #23647 salvage (npm UTF-8 decode on GBK Windows)
|
|
1060
|
+
"anton.kuenzi@gmail.com": "ZeterMordio", # PR #11754 salvage (zsh completion compdef + _arguments syntax)
|
|
1061
|
+
"23yntong@stu.edu.cn": "iuyup", # PR #6155 salvage (shell=True hardening)
|
|
1062
|
+
"86501179+1RB@users.noreply.github.com": "1RB", # PR #25462 salvage (discord forwarded messages)
|
|
1063
|
+
"44045943+ayushere@users.noreply.github.com": "ayushere", # PR #25342 salvage (memory teardown leak)
|
|
1064
|
+
"15791290+domtriola@users.noreply.github.com": "domtriola", # PR #25424 salvage (docs tirith link)
|
|
1065
|
+
"284216128+ephron-ren@users.noreply.github.com": "ephron-ren", # PR #25358 salvage (MiMo reasoning echo-back)
|
|
1066
|
+
"96843562+freqyfreqy@users.noreply.github.com": "freqyfreqy", # PR #25423 salvage (docs LSP worktree -> repo)
|
|
1067
|
+
"54306477+fu576@users.noreply.github.com": "fu576", # PR #25369 salvage (api_mode not inherited cross-provider)
|
|
1068
|
+
"258095375+kfa-ai@users.noreply.github.com": "kfa-ai", # PR #25398 salvage (whatsapp quoted reply metadata)
|
|
1069
|
+
"99181308+magic524@users.noreply.github.com": "magic524", # PR #25361 salvage (QQBot reconnect loop)
|
|
1070
|
+
"9150277+PaTTeeL@users.noreply.github.com": "PaTTeeL", # PR #25359 salvage (custom_providers in compression length)
|
|
1071
|
+
"1700913+pearjelly@users.noreply.github.com": "pearjelly", # PR #25388 salvage (feishu ws connect override sync)
|
|
1072
|
+
"100820567+raymaylee@users.noreply.github.com": "raymaylee", # PR #25394 salvage (context compaction status)
|
|
1073
|
+
"122434621+Tianyu199509@users.noreply.github.com": "Tianyu199509", # PR #25421 salvage (gateway PID Windows)
|
|
1074
|
+
"58224596+HxT9@users.noreply.github.com": "HxT9", # PR #25760 salvage (web sync-assets cross-platform)
|
|
1075
|
+
"120411712+evgyur@users.noreply.github.com": "evgyur", # PR #25651 salvage (docs media session context)
|
|
1076
|
+
"36507055+AsoTora@users.noreply.github.com": "AsoTora", # PR #25624 salvage (MCP auth no-retry)
|
|
1077
|
+
"98992931+oxngon@users.noreply.github.com": "oxngon", # PR #25603 salvage (forward image attachments to bg tasks)
|
|
1078
|
+
"37467487+yifengingit@users.noreply.github.com": "yifengingit", # PR #25589 salvage (AUTOINCREMENT id ordering)
|
|
1079
|
+
"89525629+vanthinh6886@users.noreply.github.com": "vanthinh6886", # PR #25562 salvage (.env 0600 perms)
|
|
1080
|
+
"16034932+Arkmusn@users.noreply.github.com": "Arkmusn", # PR #25559 salvage (approvals.timeout from config)
|
|
1081
|
+
"nidhi2894@gmail.com": "nidhi-singh02", # PR #2752 salvage (slack whitespace-only IndexError guard)
|
|
1082
|
+
"38173192+nidhi-singh02@users.noreply.github.com": "nidhi-singh02",
|
|
1083
|
+
"Jaaneek@users.noreply.github.com": "Jaaneek", # PR #26457 (xAI Grok OAuth provider)
|
|
1084
|
+
# v0.14.0 additions
|
|
1085
|
+
"chuang.guo@hopechart.com": "wuwuzhijing", # PR #21063 salvage (gateway docs mention Weixin)
|
|
1086
|
+
"nightcityblade@gmail.com": "nightcityblade", # PR #24138 (docs voice/tts table)
|
|
1087
|
+
"pol.kuijken@gmail.com": "polkn", # PR #6136 salvage (skill_view collision refusal)
|
|
1088
|
+
"robin@soal.org": "rewbs",
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
def git(*args, cwd=None):
|
|
1093
|
+
"""Run a git command and return stdout."""
|
|
1094
|
+
result = subprocess.run(
|
|
1095
|
+
["git"] + list(args),
|
|
1096
|
+
capture_output=True, text=True,
|
|
1097
|
+
cwd=cwd or str(REPO_ROOT),
|
|
1098
|
+
)
|
|
1099
|
+
if result.returncode != 0:
|
|
1100
|
+
print(f"git {' '.join(args)} failed: {result.stderr}", file=sys.stderr)
|
|
1101
|
+
return ""
|
|
1102
|
+
return result.stdout.strip()
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
def git_result(*args, cwd=None):
|
|
1106
|
+
"""Run a git command and return the full CompletedProcess."""
|
|
1107
|
+
return subprocess.run(
|
|
1108
|
+
["git"] + list(args),
|
|
1109
|
+
capture_output=True,
|
|
1110
|
+
text=True,
|
|
1111
|
+
cwd=cwd or str(REPO_ROOT),
|
|
1112
|
+
)
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
def get_last_tag():
|
|
1116
|
+
"""Get the most recent CalVer tag."""
|
|
1117
|
+
tags = git("tag", "--list", "v20*", "--sort=-v:refname")
|
|
1118
|
+
if tags:
|
|
1119
|
+
return tags.split("\n")[0]
|
|
1120
|
+
return None
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
def next_available_tag(base_tag: str) -> tuple[str, str]:
|
|
1124
|
+
"""Return a tag/calver pair, suffixing same-day releases when needed."""
|
|
1125
|
+
if not git("tag", "--list", base_tag):
|
|
1126
|
+
return base_tag, base_tag.removeprefix("v")
|
|
1127
|
+
|
|
1128
|
+
suffix = 2
|
|
1129
|
+
while git("tag", "--list", f"{base_tag}.{suffix}"):
|
|
1130
|
+
suffix += 1
|
|
1131
|
+
tag_name = f"{base_tag}.{suffix}"
|
|
1132
|
+
return tag_name, tag_name.removeprefix("v")
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
def get_current_version():
|
|
1136
|
+
"""Read current semver from __init__.py."""
|
|
1137
|
+
content = VERSION_FILE.read_text()
|
|
1138
|
+
match = re.search(r'__version__\s*=\s*"([^"]+)"', content)
|
|
1139
|
+
return match.group(1) if match else "0.0.0"
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
def bump_version(current: str, part: str) -> str:
|
|
1143
|
+
"""Bump a semver version string."""
|
|
1144
|
+
parts = current.split(".")
|
|
1145
|
+
if len(parts) != 3:
|
|
1146
|
+
parts = ["0", "0", "0"]
|
|
1147
|
+
major, minor, patch = int(parts[0]), int(parts[1]), int(parts[2])
|
|
1148
|
+
|
|
1149
|
+
if part == "major":
|
|
1150
|
+
major += 1
|
|
1151
|
+
minor = 0
|
|
1152
|
+
patch = 0
|
|
1153
|
+
elif part == "minor":
|
|
1154
|
+
minor += 1
|
|
1155
|
+
patch = 0
|
|
1156
|
+
elif part == "patch":
|
|
1157
|
+
patch += 1
|
|
1158
|
+
else:
|
|
1159
|
+
raise ValueError(f"Unknown bump part: {part}")
|
|
1160
|
+
|
|
1161
|
+
return f"{major}.{minor}.{patch}"
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
def update_version_files(semver: str, calver_date: str):
|
|
1165
|
+
"""Update version strings in source files."""
|
|
1166
|
+
# Update __init__.py
|
|
1167
|
+
content = VERSION_FILE.read_text()
|
|
1168
|
+
content = re.sub(
|
|
1169
|
+
r'__version__\s*=\s*"[^"]+"',
|
|
1170
|
+
f'__version__ = "{semver}"',
|
|
1171
|
+
content,
|
|
1172
|
+
)
|
|
1173
|
+
content = re.sub(
|
|
1174
|
+
r'__release_date__\s*=\s*"[^"]+"',
|
|
1175
|
+
f'__release_date__ = "{calver_date}"',
|
|
1176
|
+
content,
|
|
1177
|
+
)
|
|
1178
|
+
VERSION_FILE.write_text(content)
|
|
1179
|
+
|
|
1180
|
+
# Update pyproject.toml
|
|
1181
|
+
pyproject = PYPROJECT_FILE.read_text()
|
|
1182
|
+
pyproject = re.sub(
|
|
1183
|
+
r'^version\s*=\s*"[^"]+"',
|
|
1184
|
+
f'version = "{semver}"',
|
|
1185
|
+
pyproject,
|
|
1186
|
+
flags=re.MULTILINE,
|
|
1187
|
+
)
|
|
1188
|
+
PYPROJECT_FILE.write_text(pyproject)
|
|
1189
|
+
|
|
1190
|
+
# Update ACP Registry manifest + npm launcher (must stay version-locked
|
|
1191
|
+
# with pyproject — enforced by tests/acp/test_registry_manifest.py).
|
|
1192
|
+
_update_acp_registry_versions(semver)
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
def _update_acp_registry_versions(semver: str) -> None:
|
|
1196
|
+
"""Bump the ACP Registry manifest's version + uvx package pin in lockstep
|
|
1197
|
+
with pyproject.
|
|
1198
|
+
|
|
1199
|
+
Skips silently if the manifest is missing — older release branches predate
|
|
1200
|
+
the ACP Registry assets.
|
|
1201
|
+
"""
|
|
1202
|
+
if ACP_REGISTRY_MANIFEST.exists():
|
|
1203
|
+
manifest = json.loads(ACP_REGISTRY_MANIFEST.read_text(encoding="utf-8"))
|
|
1204
|
+
manifest["version"] = semver
|
|
1205
|
+
uvx = manifest.get("distribution", {}).get("uvx", {})
|
|
1206
|
+
if "package" in uvx:
|
|
1207
|
+
uvx["package"] = f"hermes-agent[acp]=={semver}"
|
|
1208
|
+
# Preserve trailing newline + 2-space indent the file already uses.
|
|
1209
|
+
ACP_REGISTRY_MANIFEST.write_text(
|
|
1210
|
+
json.dumps(manifest, indent=2) + "\n", encoding="utf-8"
|
|
1211
|
+
)
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
def build_release_artifacts(semver: str) -> list[Path]:
|
|
1215
|
+
"""Build sdist/wheel artifacts for the current release.
|
|
1216
|
+
|
|
1217
|
+
Tries ``uv build`` first (matching the CI workflow), falls back to
|
|
1218
|
+
``python -m build`` if uv is unavailable.
|
|
1219
|
+
"""
|
|
1220
|
+
dist_dir = REPO_ROOT / "dist"
|
|
1221
|
+
shutil.rmtree(dist_dir, ignore_errors=True)
|
|
1222
|
+
|
|
1223
|
+
# Prefer uv build (matches CI workflow), fall back to python -m build.
|
|
1224
|
+
uv_bin = shutil.which("uv")
|
|
1225
|
+
if uv_bin:
|
|
1226
|
+
cmd = [uv_bin, "build", "--sdist", "--wheel"]
|
|
1227
|
+
else:
|
|
1228
|
+
cmd = [sys.executable, "-m", "build", "--sdist", "--wheel"]
|
|
1229
|
+
|
|
1230
|
+
result = subprocess.run(
|
|
1231
|
+
cmd,
|
|
1232
|
+
cwd=str(REPO_ROOT),
|
|
1233
|
+
capture_output=True,
|
|
1234
|
+
text=True,
|
|
1235
|
+
)
|
|
1236
|
+
if result.returncode != 0:
|
|
1237
|
+
print(" ⚠ Could not build Python release artifacts.")
|
|
1238
|
+
stderr = result.stderr.strip()
|
|
1239
|
+
stdout = result.stdout.strip()
|
|
1240
|
+
if stderr:
|
|
1241
|
+
print(f" {stderr.splitlines()[-1]}")
|
|
1242
|
+
elif stdout:
|
|
1243
|
+
print(f" {stdout.splitlines()[-1]}")
|
|
1244
|
+
print(" Install uv or the 'build' package to attach sdist/wheel assets.")
|
|
1245
|
+
return []
|
|
1246
|
+
|
|
1247
|
+
artifacts = sorted(p for p in dist_dir.iterdir() if p.is_file())
|
|
1248
|
+
matching = [p for p in artifacts if semver in p.name]
|
|
1249
|
+
if not matching:
|
|
1250
|
+
print(" ⚠ Built artifacts did not match the expected release version.")
|
|
1251
|
+
return []
|
|
1252
|
+
return matching
|
|
1253
|
+
|
|
1254
|
+
|
|
1255
|
+
def resolve_author(name: str, email: str) -> str:
|
|
1256
|
+
"""Resolve a git author to a GitHub @mention."""
|
|
1257
|
+
# Try email lookup first
|
|
1258
|
+
gh_user = AUTHOR_MAP.get(email)
|
|
1259
|
+
if gh_user:
|
|
1260
|
+
return f"@{gh_user}"
|
|
1261
|
+
|
|
1262
|
+
# Try noreply pattern
|
|
1263
|
+
noreply_match = re.match(r"(\d+)\+(.+)@users\.noreply\.github\.com", email)
|
|
1264
|
+
if noreply_match:
|
|
1265
|
+
return f"@{noreply_match.group(2)}"
|
|
1266
|
+
|
|
1267
|
+
# Try username@users.noreply.github.com
|
|
1268
|
+
noreply_match2 = re.match(r"(.+)@users\.noreply\.github\.com", email)
|
|
1269
|
+
if noreply_match2:
|
|
1270
|
+
return f"@{noreply_match2.group(1)}"
|
|
1271
|
+
|
|
1272
|
+
# Fallback to git name
|
|
1273
|
+
return name
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
def categorize_commit(subject: str) -> str:
|
|
1277
|
+
"""Categorize a commit by its conventional commit prefix."""
|
|
1278
|
+
subject_lower = subject.lower()
|
|
1279
|
+
|
|
1280
|
+
# Match conventional commit patterns
|
|
1281
|
+
patterns = {
|
|
1282
|
+
"breaking": [r"^breaking[\s:(]", r"^!:", r"BREAKING CHANGE"],
|
|
1283
|
+
"features": [r"^feat[\s:(]", r"^feature[\s:(]", r"^add[\s:(]"],
|
|
1284
|
+
"fixes": [r"^fix[\s:(]", r"^bugfix[\s:(]", r"^bug[\s:(]", r"^hotfix[\s:(]"],
|
|
1285
|
+
"improvements": [r"^improve[\s:(]", r"^perf[\s:(]", r"^enhance[\s:(]",
|
|
1286
|
+
r"^refactor[\s:(]", r"^cleanup[\s:(]", r"^clean[\s:(]",
|
|
1287
|
+
r"^update[\s:(]", r"^optimize[\s:(]"],
|
|
1288
|
+
"docs": [r"^doc[\s:(]", r"^docs[\s:(]"],
|
|
1289
|
+
"tests": [r"^test[\s:(]", r"^tests[\s:(]"],
|
|
1290
|
+
"chore": [r"^chore[\s:(]", r"^ci[\s:(]", r"^build[\s:(]",
|
|
1291
|
+
r"^deps[\s:(]", r"^bump[\s:(]"],
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
for category, regexes in patterns.items():
|
|
1295
|
+
for regex in regexes:
|
|
1296
|
+
if re.match(regex, subject_lower):
|
|
1297
|
+
return category
|
|
1298
|
+
|
|
1299
|
+
# Heuristic fallbacks
|
|
1300
|
+
if any(w in subject_lower for w in ["add ", "new ", "implement", "support "]):
|
|
1301
|
+
return "features"
|
|
1302
|
+
if any(w in subject_lower for w in ["fix ", "fixed ", "resolve", "patch "]):
|
|
1303
|
+
return "fixes"
|
|
1304
|
+
if any(w in subject_lower for w in ["refactor", "cleanup", "improve", "update "]):
|
|
1305
|
+
return "improvements"
|
|
1306
|
+
|
|
1307
|
+
return "other"
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
def clean_subject(subject: str) -> str:
|
|
1311
|
+
"""Clean up a commit subject for display."""
|
|
1312
|
+
# Remove conventional commit prefix
|
|
1313
|
+
cleaned = re.sub(r"^(feat|fix|docs|chore|refactor|test|perf|ci|build|improve|add|update|cleanup|hotfix|breaking|enhance|optimize|bugfix|bug|feature|tests|deps|bump)[\s:(!]+\s*", "", subject, flags=re.IGNORECASE)
|
|
1314
|
+
# Remove trailing issue refs that are redundant with PR links
|
|
1315
|
+
cleaned = cleaned.strip()
|
|
1316
|
+
# Capitalize first letter
|
|
1317
|
+
if cleaned:
|
|
1318
|
+
cleaned = cleaned[0].upper() + cleaned[1:]
|
|
1319
|
+
return cleaned
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
def parse_coauthors(body: str) -> list:
|
|
1323
|
+
"""Extract Co-authored-by trailers from a commit message body.
|
|
1324
|
+
|
|
1325
|
+
Returns a list of {'name': ..., 'email': ...} dicts.
|
|
1326
|
+
Filters out AI assistants and bots (Claude, Copilot, Cursor, etc.).
|
|
1327
|
+
"""
|
|
1328
|
+
if not body:
|
|
1329
|
+
return []
|
|
1330
|
+
# AI/bot emails to ignore in co-author trailers
|
|
1331
|
+
_ignored_emails = {"noreply@anthropic.com", "noreply@github.com",
|
|
1332
|
+
"cursoragent@cursor.com", "hermes@nousresearch.com"}
|
|
1333
|
+
_ignored_names = re.compile(r"^(Claude|Copilot|Cursor Agent|GitHub Actions?|dependabot|renovate)", re.IGNORECASE)
|
|
1334
|
+
pattern = re.compile(r"Co-authored-by:\s*(.+?)\s*<([^>]+)>", re.IGNORECASE)
|
|
1335
|
+
results = []
|
|
1336
|
+
for m in pattern.finditer(body):
|
|
1337
|
+
name, email = m.group(1).strip(), m.group(2).strip()
|
|
1338
|
+
if email in _ignored_emails or _ignored_names.match(name):
|
|
1339
|
+
continue
|
|
1340
|
+
results.append({"name": name, "email": email})
|
|
1341
|
+
return results
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
def get_commits(since_tag=None):
|
|
1345
|
+
"""Get commits since a tag (or all commits if None)."""
|
|
1346
|
+
if since_tag:
|
|
1347
|
+
range_spec = f"{since_tag}..HEAD"
|
|
1348
|
+
else:
|
|
1349
|
+
range_spec = "HEAD"
|
|
1350
|
+
|
|
1351
|
+
# Format: hash<US>author_name<US>author_email<US>subject\0body
|
|
1352
|
+
# Using %x1f (unit separator) to avoid conflict with | in author names
|
|
1353
|
+
log = git(
|
|
1354
|
+
"log", range_spec,
|
|
1355
|
+
"--format=%H%x1f%an%x1f%ae%x1f%s%x00%b%x00",
|
|
1356
|
+
"--no-merges",
|
|
1357
|
+
)
|
|
1358
|
+
|
|
1359
|
+
if not log:
|
|
1360
|
+
return []
|
|
1361
|
+
|
|
1362
|
+
commits = []
|
|
1363
|
+
# Split on double-null to get each commit entry, since body ends with \0
|
|
1364
|
+
# and format ends with \0, each record ends with \0\0 between entries
|
|
1365
|
+
for entry in log.split("\0\0"):
|
|
1366
|
+
entry = entry.strip()
|
|
1367
|
+
if not entry:
|
|
1368
|
+
continue
|
|
1369
|
+
# Split on first null to separate "hash<US>name<US>email<US>subject" from "body"
|
|
1370
|
+
if "\0" in entry:
|
|
1371
|
+
header, body = entry.split("\0", 1)
|
|
1372
|
+
body = body.strip()
|
|
1373
|
+
else:
|
|
1374
|
+
header = entry
|
|
1375
|
+
body = ""
|
|
1376
|
+
parts = header.split("\x1f", 3)
|
|
1377
|
+
if len(parts) != 4:
|
|
1378
|
+
continue
|
|
1379
|
+
sha, name, email, subject = parts
|
|
1380
|
+
coauthor_info = parse_coauthors(body)
|
|
1381
|
+
coauthors = [resolve_author(ca["name"], ca["email"]) for ca in coauthor_info]
|
|
1382
|
+
commits.append({
|
|
1383
|
+
"sha": sha,
|
|
1384
|
+
"short_sha": sha[:8],
|
|
1385
|
+
"author_name": name,
|
|
1386
|
+
"author_email": email,
|
|
1387
|
+
"subject": subject,
|
|
1388
|
+
"category": categorize_commit(subject),
|
|
1389
|
+
"github_author": resolve_author(name, email),
|
|
1390
|
+
"coauthors": coauthors,
|
|
1391
|
+
})
|
|
1392
|
+
|
|
1393
|
+
return commits
|
|
1394
|
+
|
|
1395
|
+
|
|
1396
|
+
def get_pr_number(subject: str) -> str | None:
|
|
1397
|
+
"""Extract PR number from commit subject if present."""
|
|
1398
|
+
match = re.search(r"#(\d+)", subject)
|
|
1399
|
+
if match:
|
|
1400
|
+
return match.group(1)
|
|
1401
|
+
return None
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
def generate_changelog(commits, tag_name, semver, repo_url="https://github.com/NousResearch/hermes-agent",
|
|
1405
|
+
prev_tag=None, first_release=False):
|
|
1406
|
+
"""Generate markdown changelog from categorized commits."""
|
|
1407
|
+
lines = []
|
|
1408
|
+
|
|
1409
|
+
# Header
|
|
1410
|
+
now = datetime.now()
|
|
1411
|
+
date_str = now.strftime("%B %d, %Y")
|
|
1412
|
+
lines.append(f"# Hermes Agent v{semver} ({tag_name})")
|
|
1413
|
+
lines.append("")
|
|
1414
|
+
lines.append(f"**Release Date:** {date_str}")
|
|
1415
|
+
lines.append("")
|
|
1416
|
+
|
|
1417
|
+
if first_release:
|
|
1418
|
+
lines.append("> 🎉 **First official release!** This marks the beginning of regular weekly releases")
|
|
1419
|
+
lines.append("> for Hermes Agent. See below for everything included in this initial release.")
|
|
1420
|
+
lines.append("")
|
|
1421
|
+
|
|
1422
|
+
# Group commits by category
|
|
1423
|
+
categories = defaultdict(list)
|
|
1424
|
+
all_authors = set()
|
|
1425
|
+
teknium_aliases = {"@teknium1"}
|
|
1426
|
+
|
|
1427
|
+
for commit in commits:
|
|
1428
|
+
categories[commit["category"]].append(commit)
|
|
1429
|
+
author = commit["github_author"]
|
|
1430
|
+
if author not in teknium_aliases:
|
|
1431
|
+
all_authors.add(author)
|
|
1432
|
+
for coauthor in commit.get("coauthors", []):
|
|
1433
|
+
if coauthor not in teknium_aliases:
|
|
1434
|
+
all_authors.add(coauthor)
|
|
1435
|
+
|
|
1436
|
+
# Category display order and emoji
|
|
1437
|
+
category_order = [
|
|
1438
|
+
("breaking", "⚠️ Breaking Changes"),
|
|
1439
|
+
("features", "✨ Features"),
|
|
1440
|
+
("improvements", "🔧 Improvements"),
|
|
1441
|
+
("fixes", "🐛 Bug Fixes"),
|
|
1442
|
+
("docs", "📚 Documentation"),
|
|
1443
|
+
("tests", "🧪 Tests"),
|
|
1444
|
+
("chore", "🏗️ Infrastructure"),
|
|
1445
|
+
("other", "📦 Other Changes"),
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
for cat_key, cat_title in category_order:
|
|
1449
|
+
cat_commits = categories.get(cat_key, [])
|
|
1450
|
+
if not cat_commits:
|
|
1451
|
+
continue
|
|
1452
|
+
|
|
1453
|
+
lines.append(f"## {cat_title}")
|
|
1454
|
+
lines.append("")
|
|
1455
|
+
|
|
1456
|
+
for commit in cat_commits:
|
|
1457
|
+
subject = clean_subject(commit["subject"])
|
|
1458
|
+
pr_num = get_pr_number(commit["subject"])
|
|
1459
|
+
author = commit["github_author"]
|
|
1460
|
+
|
|
1461
|
+
# Build the line
|
|
1462
|
+
parts = [f"- {subject}"]
|
|
1463
|
+
if pr_num:
|
|
1464
|
+
parts.append(f"([#{pr_num}]({repo_url}/pull/{pr_num}))")
|
|
1465
|
+
else:
|
|
1466
|
+
parts.append(f"([`{commit['short_sha']}`]({repo_url}/commit/{commit['sha']}))")
|
|
1467
|
+
|
|
1468
|
+
if author not in teknium_aliases:
|
|
1469
|
+
parts.append(f"— {author}")
|
|
1470
|
+
|
|
1471
|
+
lines.append(" ".join(parts))
|
|
1472
|
+
|
|
1473
|
+
lines.append("")
|
|
1474
|
+
|
|
1475
|
+
# Contributors section
|
|
1476
|
+
if all_authors:
|
|
1477
|
+
# Sort contributors by commit count
|
|
1478
|
+
author_counts = defaultdict(int)
|
|
1479
|
+
for commit in commits:
|
|
1480
|
+
author = commit["github_author"]
|
|
1481
|
+
if author not in teknium_aliases:
|
|
1482
|
+
author_counts[author] += 1
|
|
1483
|
+
for coauthor in commit.get("coauthors", []):
|
|
1484
|
+
if coauthor not in teknium_aliases:
|
|
1485
|
+
author_counts[coauthor] += 1
|
|
1486
|
+
|
|
1487
|
+
sorted_authors = sorted(author_counts.items(), key=lambda x: -x[1])
|
|
1488
|
+
|
|
1489
|
+
lines.append("## 👥 Contributors")
|
|
1490
|
+
lines.append("")
|
|
1491
|
+
lines.append("Thank you to everyone who contributed to this release!")
|
|
1492
|
+
lines.append("")
|
|
1493
|
+
for author, count in sorted_authors:
|
|
1494
|
+
commit_word = "commit" if count == 1 else "commits"
|
|
1495
|
+
lines.append(f"- {author} ({count} {commit_word})")
|
|
1496
|
+
lines.append("")
|
|
1497
|
+
|
|
1498
|
+
# Full changelog link
|
|
1499
|
+
if prev_tag:
|
|
1500
|
+
lines.append(f"**Full Changelog**: [{prev_tag}...{tag_name}]({repo_url}/compare/{prev_tag}...{tag_name})")
|
|
1501
|
+
else:
|
|
1502
|
+
lines.append(f"**Full Changelog**: [{tag_name}]({repo_url}/commits/{tag_name})")
|
|
1503
|
+
lines.append("")
|
|
1504
|
+
|
|
1505
|
+
return "\n".join(lines)
|
|
1506
|
+
|
|
1507
|
+
|
|
1508
|
+
def main():
|
|
1509
|
+
parser = argparse.ArgumentParser(description="Hermes Agent Release Tool")
|
|
1510
|
+
parser.add_argument("--bump", choices=["major", "minor", "patch"],
|
|
1511
|
+
help="Which semver component to bump")
|
|
1512
|
+
parser.add_argument("--publish", action="store_true",
|
|
1513
|
+
help="Actually create the tag and GitHub release (otherwise dry run)")
|
|
1514
|
+
parser.add_argument("--date", type=str,
|
|
1515
|
+
help="Override CalVer date (format: YYYY.M.D)")
|
|
1516
|
+
parser.add_argument("--first-release", action="store_true",
|
|
1517
|
+
help="Mark as first release (no previous tag expected)")
|
|
1518
|
+
parser.add_argument("--output", type=str,
|
|
1519
|
+
help="Write changelog to file instead of stdout")
|
|
1520
|
+
args = parser.parse_args()
|
|
1521
|
+
|
|
1522
|
+
# Determine CalVer date
|
|
1523
|
+
if args.date:
|
|
1524
|
+
calver_date = args.date
|
|
1525
|
+
else:
|
|
1526
|
+
now = datetime.now()
|
|
1527
|
+
calver_date = f"{now.year}.{now.month}.{now.day}"
|
|
1528
|
+
|
|
1529
|
+
base_tag = f"v{calver_date}"
|
|
1530
|
+
tag_name, calver_date = next_available_tag(base_tag)
|
|
1531
|
+
if tag_name != base_tag:
|
|
1532
|
+
print(f"Note: Tag {base_tag} already exists, using {tag_name}")
|
|
1533
|
+
|
|
1534
|
+
# Determine semver
|
|
1535
|
+
current_version = get_current_version()
|
|
1536
|
+
if args.bump:
|
|
1537
|
+
new_version = bump_version(current_version, args.bump)
|
|
1538
|
+
else:
|
|
1539
|
+
new_version = current_version
|
|
1540
|
+
|
|
1541
|
+
# Get previous tag
|
|
1542
|
+
prev_tag = get_last_tag()
|
|
1543
|
+
if not prev_tag and not args.first_release:
|
|
1544
|
+
print("No previous tags found. Use --first-release for the initial release.")
|
|
1545
|
+
print(f"Would create tag: {tag_name}")
|
|
1546
|
+
print(f"Would set version: {new_version}")
|
|
1547
|
+
return
|
|
1548
|
+
|
|
1549
|
+
# Get commits
|
|
1550
|
+
commits = get_commits(since_tag=prev_tag)
|
|
1551
|
+
if not commits:
|
|
1552
|
+
print("No new commits since last tag.")
|
|
1553
|
+
if not args.first_release:
|
|
1554
|
+
return
|
|
1555
|
+
|
|
1556
|
+
print(f"{'='*60}")
|
|
1557
|
+
print(f" Hermes Agent Release Preview")
|
|
1558
|
+
print(f"{'='*60}")
|
|
1559
|
+
print(f" CalVer tag: {tag_name}")
|
|
1560
|
+
print(f" SemVer: v{current_version} → v{new_version}")
|
|
1561
|
+
print(f" Previous tag: {prev_tag or '(none — first release)'}")
|
|
1562
|
+
print(f" Commits: {len(commits)}")
|
|
1563
|
+
print(f" Unique authors: {len({c['github_author'] for c in commits})}")
|
|
1564
|
+
print(f" Mode: {'PUBLISH' if args.publish else 'DRY RUN'}")
|
|
1565
|
+
print(f"{'='*60}")
|
|
1566
|
+
print()
|
|
1567
|
+
|
|
1568
|
+
# Generate changelog
|
|
1569
|
+
changelog = generate_changelog(
|
|
1570
|
+
commits, tag_name, new_version,
|
|
1571
|
+
prev_tag=prev_tag,
|
|
1572
|
+
first_release=args.first_release,
|
|
1573
|
+
)
|
|
1574
|
+
|
|
1575
|
+
if args.output:
|
|
1576
|
+
Path(args.output).write_text(changelog, encoding="utf-8")
|
|
1577
|
+
print(f"Changelog written to {args.output}")
|
|
1578
|
+
else:
|
|
1579
|
+
print(changelog)
|
|
1580
|
+
|
|
1581
|
+
if args.publish:
|
|
1582
|
+
print(f"\n{'='*60}")
|
|
1583
|
+
print(" Publishing release...")
|
|
1584
|
+
print(f"{'='*60}")
|
|
1585
|
+
|
|
1586
|
+
# Update version files
|
|
1587
|
+
if args.bump:
|
|
1588
|
+
update_version_files(new_version, calver_date)
|
|
1589
|
+
print(f" ✓ Updated version files to v{new_version} ({calver_date})")
|
|
1590
|
+
|
|
1591
|
+
# Commit version bump
|
|
1592
|
+
add_files = [str(VERSION_FILE), str(PYPROJECT_FILE)]
|
|
1593
|
+
if ACP_REGISTRY_MANIFEST.exists():
|
|
1594
|
+
add_files.append(str(ACP_REGISTRY_MANIFEST))
|
|
1595
|
+
add_result = git_result("add", *add_files)
|
|
1596
|
+
if add_result.returncode != 0:
|
|
1597
|
+
print(f" ✗ Failed to stage version files: {add_result.stderr.strip()}")
|
|
1598
|
+
return
|
|
1599
|
+
|
|
1600
|
+
commit_result = git_result(
|
|
1601
|
+
"commit", "-m", f"chore: bump version to v{new_version} ({calver_date})"
|
|
1602
|
+
)
|
|
1603
|
+
if commit_result.returncode != 0:
|
|
1604
|
+
print(f" ✗ Failed to commit version bump: {commit_result.stderr.strip()}")
|
|
1605
|
+
return
|
|
1606
|
+
print(f" ✓ Committed version bump")
|
|
1607
|
+
|
|
1608
|
+
# Create annotated tag
|
|
1609
|
+
tag_result = git_result(
|
|
1610
|
+
"tag", "-a", tag_name, "-m",
|
|
1611
|
+
f"Hermes Agent v{new_version} ({calver_date})\n\nWeekly release"
|
|
1612
|
+
)
|
|
1613
|
+
if tag_result.returncode != 0:
|
|
1614
|
+
print(f" ✗ Failed to create tag {tag_name}: {tag_result.stderr.strip()}")
|
|
1615
|
+
return
|
|
1616
|
+
print(f" ✓ Created tag {tag_name}")
|
|
1617
|
+
|
|
1618
|
+
# Push
|
|
1619
|
+
push_result = git_result("push", "origin", "HEAD", "--tags")
|
|
1620
|
+
if push_result.returncode == 0:
|
|
1621
|
+
print(f" ✓ Pushed to origin")
|
|
1622
|
+
else:
|
|
1623
|
+
print(f" ✗ Failed to push to origin: {push_result.stderr.strip()}")
|
|
1624
|
+
print(" Continue manually after fixing access:")
|
|
1625
|
+
print(" git push origin HEAD --tags")
|
|
1626
|
+
|
|
1627
|
+
# Build semver-named Python artifacts so downstream packagers
|
|
1628
|
+
# (e.g. Homebrew) can target them without relying on CalVer tag names.
|
|
1629
|
+
artifacts = build_release_artifacts(new_version)
|
|
1630
|
+
if artifacts:
|
|
1631
|
+
print(" ✓ Built release artifacts:")
|
|
1632
|
+
for artifact in artifacts:
|
|
1633
|
+
print(f" - {artifact.relative_to(REPO_ROOT)}")
|
|
1634
|
+
|
|
1635
|
+
# Create GitHub release
|
|
1636
|
+
changelog_file = REPO_ROOT / ".release_notes.md"
|
|
1637
|
+
changelog_file.write_text(changelog, encoding="utf-8")
|
|
1638
|
+
|
|
1639
|
+
gh_cmd = [
|
|
1640
|
+
"gh", "release", "create", tag_name,
|
|
1641
|
+
"--title", f"Hermes Agent v{new_version} ({calver_date})",
|
|
1642
|
+
"--notes-file", str(changelog_file),
|
|
1643
|
+
]
|
|
1644
|
+
gh_cmd.extend(str(path) for path in artifacts)
|
|
1645
|
+
|
|
1646
|
+
gh_bin = shutil.which("gh")
|
|
1647
|
+
if gh_bin:
|
|
1648
|
+
result = subprocess.run(
|
|
1649
|
+
gh_cmd,
|
|
1650
|
+
capture_output=True, text=True,
|
|
1651
|
+
cwd=str(REPO_ROOT),
|
|
1652
|
+
)
|
|
1653
|
+
else:
|
|
1654
|
+
result = None
|
|
1655
|
+
|
|
1656
|
+
if result and result.returncode == 0:
|
|
1657
|
+
changelog_file.unlink(missing_ok=True)
|
|
1658
|
+
print(f" ✓ GitHub release created: {result.stdout.strip()}")
|
|
1659
|
+
print(f"\n 🎉 Release v{new_version} ({tag_name}) published!")
|
|
1660
|
+
else:
|
|
1661
|
+
if result is None:
|
|
1662
|
+
print(" ✗ GitHub release skipped: `gh` CLI not found.")
|
|
1663
|
+
else:
|
|
1664
|
+
print(f" ✗ GitHub release failed: {result.stderr.strip()}")
|
|
1665
|
+
print(f" Release notes kept at: {changelog_file}")
|
|
1666
|
+
print(f" Tag was created locally. Create the release manually:")
|
|
1667
|
+
print(
|
|
1668
|
+
f" gh release create {tag_name} --title 'Hermes Agent v{new_version} ({calver_date})' "
|
|
1669
|
+
f"--notes-file .release_notes.md {' '.join(str(path) for path in artifacts)}"
|
|
1670
|
+
)
|
|
1671
|
+
print(f"\n ✓ Release artifacts prepared for manual publish: v{new_version} ({tag_name})")
|
|
1672
|
+
else:
|
|
1673
|
+
print(f"\n{'='*60}")
|
|
1674
|
+
print(f" Dry run complete. To publish, add --publish")
|
|
1675
|
+
print(f" Example: python scripts/release.py --bump minor --publish")
|
|
1676
|
+
print(f"{'='*60}")
|
|
1677
|
+
|
|
1678
|
+
|
|
1679
|
+
if __name__ == "__main__":
|
|
1680
|
+
main()
|