fableforge-agent 0.1.0__tar.gz → 0.18.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fableforge_agent-0.18.2/LICENSE +21 -0
- fableforge_agent-0.18.2/MANIFEST.in +13 -0
- fableforge_agent-0.18.2/PKG-INFO +176 -0
- fableforge_agent-0.18.2/acp_adapter/__init__.py +1 -0
- fableforge_agent-0.18.2/acp_adapter/__main__.py +5 -0
- fableforge_agent-0.18.2/acp_adapter/auth.py +79 -0
- fableforge_agent-0.18.2/acp_adapter/edit_approval.py +338 -0
- fableforge_agent-0.18.2/acp_adapter/entry.py +271 -0
- fableforge_agent-0.18.2/acp_adapter/events.py +279 -0
- fableforge_agent-0.18.2/acp_adapter/permissions.py +168 -0
- fableforge_agent-0.18.2/acp_adapter/provenance.py +127 -0
- fableforge_agent-0.18.2/acp_adapter/server.py +2065 -0
- fableforge_agent-0.18.2/acp_adapter/session.py +664 -0
- fableforge_agent-0.18.2/acp_adapter/tools.py +1291 -0
- fableforge_agent-0.18.2/agent/__init__.py +8 -0
- fableforge_agent-0.18.2/agent/account_usage.py +696 -0
- fableforge_agent-0.18.2/agent/agent_init.py +2103 -0
- fableforge_agent-0.18.2/agent/agent_runtime_helpers.py +3209 -0
- fableforge_agent-0.18.2/agent/anthropic_adapter.py +2789 -0
- fableforge_agent-0.18.2/agent/async_utils.py +68 -0
- fableforge_agent-0.18.2/agent/auxiliary_client.py +7469 -0
- fableforge_agent-0.18.2/agent/azure_identity_adapter.py +555 -0
- fableforge_agent-0.18.2/agent/background_review.py +960 -0
- fableforge_agent-0.18.2/agent/bedrock_adapter.py +1342 -0
- fableforge_agent-0.18.2/agent/billing_view.py +295 -0
- fableforge_agent-0.18.2/agent/bounded_response.py +148 -0
- fableforge_agent-0.18.2/agent/browser_provider.py +175 -0
- fableforge_agent-0.18.2/agent/browser_registry.py +192 -0
- fableforge_agent-0.18.2/agent/chat_completion_helpers.py +3103 -0
- fableforge_agent-0.18.2/agent/codex_responses_adapter.py +1353 -0
- fableforge_agent-0.18.2/agent/codex_runtime.py +930 -0
- fableforge_agent-0.18.2/agent/coding_context.py +883 -0
- fableforge_agent-0.18.2/agent/context_breakdown.py +156 -0
- fableforge_agent-0.18.2/agent/context_compressor.py +3168 -0
- fableforge_agent-0.18.2/agent/context_engine.py +231 -0
- fableforge_agent-0.18.2/agent/context_references.py +598 -0
- fableforge_agent-0.18.2/agent/conversation_compression.py +1367 -0
- fableforge_agent-0.18.2/agent/conversation_loop.py +5312 -0
- fableforge_agent-0.18.2/agent/copilot_acp_client.py +752 -0
- fableforge_agent-0.18.2/agent/credential_persistence.py +174 -0
- fableforge_agent-0.18.2/agent/credential_pool.py +2384 -0
- fableforge_agent-0.18.2/agent/credential_sources.py +443 -0
- fableforge_agent-0.18.2/agent/credits_tracker.py +794 -0
- fableforge_agent-0.18.2/agent/curator.py +1976 -0
- fableforge_agent-0.18.2/agent/curator_backup.py +711 -0
- fableforge_agent-0.18.2/agent/display.py +1440 -0
- fableforge_agent-0.18.2/agent/error_classifier.py +1598 -0
- fableforge_agent-0.18.2/agent/errors.py +3 -0
- fableforge_agent-0.18.2/agent/file_safety.py +660 -0
- fableforge_agent-0.18.2/agent/gemini_native_adapter.py +1021 -0
- fableforge_agent-0.18.2/agent/gemini_schema.py +99 -0
- fableforge_agent-0.18.2/agent/i18n.py +302 -0
- fableforge_agent-0.18.2/agent/image_gen_provider.py +393 -0
- fableforge_agent-0.18.2/agent/image_gen_registry.py +145 -0
- fableforge_agent-0.18.2/agent/image_routing.py +765 -0
- fableforge_agent-0.18.2/agent/insights.py +921 -0
- fableforge_agent-0.18.2/agent/iteration_budget.py +62 -0
- fableforge_agent-0.18.2/agent/jiter_preload.py +39 -0
- fableforge_agent-0.18.2/agent/learn_prompt.py +150 -0
- fableforge_agent-0.18.2/agent/learning_graph.py +328 -0
- fableforge_agent-0.18.2/agent/learning_graph_render.py +659 -0
- fableforge_agent-0.18.2/agent/learning_mutations.py +206 -0
- fableforge_agent-0.18.2/agent/lmstudio_reasoning.py +48 -0
- fableforge_agent-0.18.2/agent/lsp/__init__.py +106 -0
- fableforge_agent-0.18.2/agent/lsp/cli.py +299 -0
- fableforge_agent-0.18.2/agent/lsp/client.py +951 -0
- fableforge_agent-0.18.2/agent/lsp/eventlog.py +213 -0
- fableforge_agent-0.18.2/agent/lsp/install.py +406 -0
- fableforge_agent-0.18.2/agent/lsp/manager.py +639 -0
- fableforge_agent-0.18.2/agent/lsp/protocol.py +196 -0
- fableforge_agent-0.18.2/agent/lsp/range_shift.py +149 -0
- fableforge_agent-0.18.2/agent/lsp/reporter.py +130 -0
- fableforge_agent-0.18.2/agent/lsp/servers.py +1187 -0
- fableforge_agent-0.18.2/agent/lsp/workspace.py +223 -0
- fableforge_agent-0.18.2/agent/manual_compression_feedback.py +49 -0
- fableforge_agent-0.18.2/agent/markdown_tables.py +309 -0
- fableforge_agent-0.18.2/agent/memory_manager.py +1086 -0
- fableforge_agent-0.18.2/agent/memory_provider.py +315 -0
- fableforge_agent-0.18.2/agent/message_content.py +50 -0
- fableforge_agent-0.18.2/agent/message_sanitization.py +477 -0
- fableforge_agent-0.18.2/agent/moa_loop.py +1073 -0
- fableforge_agent-0.18.2/agent/moa_trace.py +167 -0
- fableforge_agent-0.18.2/agent/model_metadata.py +2443 -0
- fableforge_agent-0.18.2/agent/models_dev.py +725 -0
- fableforge_agent-0.18.2/agent/moonshot_schema.py +238 -0
- fableforge_agent-0.18.2/agent/nous_rate_guard.py +325 -0
- fableforge_agent-0.18.2/agent/onboarding.py +253 -0
- fableforge_agent-0.18.2/agent/oneshot.py +158 -0
- fableforge_agent-0.18.2/agent/pet/__init__.py +51 -0
- fableforge_agent-0.18.2/agent/pet/constants.py +167 -0
- fableforge_agent-0.18.2/agent/pet/generate/__init__.py +29 -0
- fableforge_agent-0.18.2/agent/pet/generate/atlas.py +1183 -0
- fableforge_agent-0.18.2/agent/pet/generate/imagegen.py +251 -0
- fableforge_agent-0.18.2/agent/pet/generate/orchestrate.py +358 -0
- fableforge_agent-0.18.2/agent/pet/generate/prompts.py +183 -0
- fableforge_agent-0.18.2/agent/pet/manifest.py +165 -0
- fableforge_agent-0.18.2/agent/pet/render.py +682 -0
- fableforge_agent-0.18.2/agent/pet/state.py +81 -0
- fableforge_agent-0.18.2/agent/pet/store.py +503 -0
- fableforge_agent-0.18.2/agent/plugin_llm.py +1046 -0
- fableforge_agent-0.18.2/agent/portal_tags.py +64 -0
- fableforge_agent-0.18.2/agent/process_bootstrap.py +227 -0
- fableforge_agent-0.18.2/agent/prompt_builder.py +1966 -0
- fableforge_agent-0.18.2/agent/prompt_caching.py +119 -0
- fableforge_agent-0.18.2/agent/rate_limit_tracker.py +246 -0
- fableforge_agent-0.18.2/agent/reasoning_timeouts.py +216 -0
- fableforge_agent-0.18.2/agent/redact.py +811 -0
- fableforge_agent-0.18.2/agent/replay_cleanup.py +257 -0
- fableforge_agent-0.18.2/agent/retry_utils.py +154 -0
- fableforge_agent-0.18.2/agent/runtime_cwd.py +62 -0
- fableforge_agent-0.18.2/agent/secret_scope.py +205 -0
- fableforge_agent-0.18.2/agent/secret_sources/__init__.py +41 -0
- fableforge_agent-0.18.2/agent/secret_sources/_cache.py +213 -0
- fableforge_agent-0.18.2/agent/secret_sources/base.py +274 -0
- fableforge_agent-0.18.2/agent/secret_sources/bitwarden.py +729 -0
- fableforge_agent-0.18.2/agent/secret_sources/onepassword.py +643 -0
- fableforge_agent-0.18.2/agent/secret_sources/registry.py +370 -0
- fableforge_agent-0.18.2/agent/shell_hooks.py +928 -0
- fableforge_agent-0.18.2/agent/skill_bundles.py +438 -0
- fableforge_agent-0.18.2/agent/skill_commands.py +732 -0
- fableforge_agent-0.18.2/agent/skill_preprocessing.py +144 -0
- fableforge_agent-0.18.2/agent/skill_utils.py +824 -0
- fableforge_agent-0.18.2/agent/ssl_guard.py +94 -0
- fableforge_agent-0.18.2/agent/ssl_verify.py +63 -0
- fableforge_agent-0.18.2/agent/stream_diag.py +280 -0
- fableforge_agent-0.18.2/agent/subdirectory_hints.py +270 -0
- fableforge_agent-0.18.2/agent/system_prompt.py +570 -0
- fableforge_agent-0.18.2/agent/think_scrubber.py +386 -0
- fableforge_agent-0.18.2/agent/thinking_timeout_guidance.py +136 -0
- fableforge_agent-0.18.2/agent/thread_scoped_output.py +147 -0
- fableforge_agent-0.18.2/agent/title_generator.py +204 -0
- fableforge_agent-0.18.2/agent/tool_dispatch_helpers.py +503 -0
- fableforge_agent-0.18.2/agent/tool_executor.py +1646 -0
- fableforge_agent-0.18.2/agent/tool_guardrails.py +475 -0
- fableforge_agent-0.18.2/agent/tool_result_classification.py +26 -0
- fableforge_agent-0.18.2/agent/trace_upload.py +398 -0
- fableforge_agent-0.18.2/agent/trajectory.py +56 -0
- fableforge_agent-0.18.2/agent/transcription_provider.py +193 -0
- fableforge_agent-0.18.2/agent/transcription_registry.py +122 -0
- fableforge_agent-0.18.2/agent/transports/__init__.py +68 -0
- fableforge_agent-0.18.2/agent/transports/anthropic.py +251 -0
- fableforge_agent-0.18.2/agent/transports/base.py +89 -0
- fableforge_agent-0.18.2/agent/transports/bedrock.py +154 -0
- fableforge_agent-0.18.2/agent/transports/chat_completions.py +744 -0
- fableforge_agent-0.18.2/agent/transports/codex.py +469 -0
- fableforge_agent-0.18.2/agent/transports/codex_app_server.py +413 -0
- fableforge_agent-0.18.2/agent/transports/codex_app_server_session.py +1072 -0
- fableforge_agent-0.18.2/agent/transports/codex_event_projector.py +314 -0
- fableforge_agent-0.18.2/agent/transports/fableforge_tools_mcp_server.py +233 -0
- fableforge_agent-0.18.2/agent/transports/types.py +174 -0
- fableforge_agent-0.18.2/agent/tts_provider.py +274 -0
- fableforge_agent-0.18.2/agent/tts_registry.py +133 -0
- fableforge_agent-0.18.2/agent/turn_context.py +565 -0
- fableforge_agent-0.18.2/agent/turn_finalizer.py +507 -0
- fableforge_agent-0.18.2/agent/turn_retry_state.py +80 -0
- fableforge_agent-0.18.2/agent/usage_pricing.py +981 -0
- fableforge_agent-0.18.2/agent/verification_evidence.py +618 -0
- fableforge_agent-0.18.2/agent/verification_stop.py +313 -0
- fableforge_agent-0.18.2/agent/verify_hooks.py +69 -0
- fableforge_agent-0.18.2/agent/vertex_adapter.py +228 -0
- fableforge_agent-0.18.2/agent/video_gen_provider.py +299 -0
- fableforge_agent-0.18.2/agent/video_gen_registry.py +117 -0
- fableforge_agent-0.18.2/agent/web_search_provider.py +211 -0
- fableforge_agent-0.18.2/agent/web_search_registry.py +304 -0
- fableforge_agent-0.18.2/batch_runner.py +1321 -0
- fableforge_agent-0.18.2/cli.py +16194 -0
- fableforge_agent-0.18.2/control_plane/__init__.py +33 -0
- fableforge_agent-0.18.2/control_plane/auth.py +96 -0
- fableforge_agent-0.18.2/control_plane/core.py +255 -0
- fableforge_agent-0.18.2/fableforge_agent.egg-info/PKG-INFO +176 -0
- fableforge_agent-0.18.2/fableforge_agent.egg-info/SOURCES.txt +1424 -0
- fableforge_agent-0.18.2/fableforge_agent.egg-info/entry_points.txt +5 -0
- fableforge_agent-0.18.2/fableforge_agent.egg-info/requires.txt +208 -0
- fableforge_agent-0.18.2/fableforge_agent.egg-info/top_level.txt +24 -0
- fableforge_agent-0.18.2/fableforge_bootstrap.py +195 -0
- fableforge_agent-0.18.2/fableforge_cli/__init__.py +98 -0
- fableforge_agent-0.18.2/fableforge_cli/_parser.py +423 -0
- fableforge_agent-0.18.2/fableforge_cli/_subprocess_compat.py +234 -0
- fableforge_agent-0.18.2/fableforge_cli/active_sessions.py +357 -0
- fableforge_agent-0.18.2/fableforge_cli/auth.py +8290 -0
- fableforge_agent-0.18.2/fableforge_cli/auth_commands.py +780 -0
- fableforge_agent-0.18.2/fableforge_cli/azure_detect.py +406 -0
- fableforge_agent-0.18.2/fableforge_cli/backup.py +1376 -0
- fableforge_agent-0.18.2/fableforge_cli/banner.py +937 -0
- fableforge_agent-0.18.2/fableforge_cli/blueprint_cmd.py +318 -0
- fableforge_agent-0.18.2/fableforge_cli/browser_connect.py +349 -0
- fableforge_agent-0.18.2/fableforge_cli/build_info.py +51 -0
- fableforge_agent-0.18.2/fableforge_cli/bundles.py +229 -0
- fableforge_agent-0.18.2/fableforge_cli/callbacks.py +242 -0
- fableforge_agent-0.18.2/fableforge_cli/checkpoints.py +244 -0
- fableforge_agent-0.18.2/fableforge_cli/claw.py +809 -0
- fableforge_agent-0.18.2/fableforge_cli/cli.py +93 -0
- fableforge_agent-0.18.2/fableforge_cli/cli_agent_setup_mixin.py +689 -0
- fableforge_agent-0.18.2/fableforge_cli/cli_commands_mixin.py +2736 -0
- fableforge_agent-0.18.2/fableforge_cli/cli_output.py +77 -0
- fableforge_agent-0.18.2/fableforge_cli/clipboard.py +494 -0
- fableforge_agent-0.18.2/fableforge_cli/codex_models.py +206 -0
- fableforge_agent-0.18.2/fableforge_cli/codex_runtime_plugin_migration.py +757 -0
- fableforge_agent-0.18.2/fableforge_cli/codex_runtime_switch.py +279 -0
- fableforge_agent-0.18.2/fableforge_cli/colors.py +38 -0
- fableforge_agent-0.18.2/fableforge_cli/commands.py +2147 -0
- fableforge_agent-0.18.2/fableforge_cli/completion.py +319 -0
- fableforge_agent-0.18.2/fableforge_cli/config.py +8409 -0
- fableforge_agent-0.18.2/fableforge_cli/console_engine.py +1876 -0
- fableforge_agent-0.18.2/fableforge_cli/container_boot.py +576 -0
- fableforge_agent-0.18.2/fableforge_cli/context_switch_guard.py +169 -0
- fableforge_agent-0.18.2/fableforge_cli/copilot_auth.py +458 -0
- fableforge_agent-0.18.2/fableforge_cli/cron.py +456 -0
- fableforge_agent-0.18.2/fableforge_cli/curator.py +698 -0
- fableforge_agent-0.18.2/fableforge_cli/curses_ui.py +872 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/__init__.py +48 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/audit.py +89 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/base.py +300 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/cookies.py +300 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/login_page.py +534 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/middleware.py +461 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/prefix.py +232 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/public_paths.py +55 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/registry.py +81 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/routes.py +634 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/token_auth.py +194 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_auth/ws_tickets.py +161 -0
- fableforge_agent-0.18.2/fableforge_cli/dashboard_register.py +427 -0
- fableforge_agent-0.18.2/fableforge_cli/debug.py +1013 -0
- fableforge_agent-0.18.2/fableforge_cli/default_soul.py +76 -0
- fableforge_agent-0.18.2/fableforge_cli/dep_ensure.py +163 -0
- fableforge_agent-0.18.2/fableforge_cli/diagnostics_upload.py +138 -0
- fableforge_agent-0.18.2/fableforge_cli/dingtalk_auth.py +291 -0
- fableforge_agent-0.18.2/fableforge_cli/doctor.py +2412 -0
- fableforge_agent-0.18.2/fableforge_cli/dump.py +444 -0
- fableforge_agent-0.18.2/fableforge_cli/env_loader.py +396 -0
- fableforge_agent-0.18.2/fableforge_cli/fallback_cmd.py +354 -0
- fableforge_agent-0.18.2/fableforge_cli/fallback_config.py +72 -0
- fableforge_agent-0.18.2/fableforge_cli/gateway.py +7064 -0
- fableforge_agent-0.18.2/fableforge_cli/gateway_enroll.py +277 -0
- fableforge_agent-0.18.2/fableforge_cli/gateway_windows.py +1682 -0
- fableforge_agent-0.18.2/fableforge_cli/goals.py +1765 -0
- fableforge_agent-0.18.2/fableforge_cli/gui_uninstall.py +285 -0
- fableforge_agent-0.18.2/fableforge_cli/hooks.py +394 -0
- fableforge_agent-0.18.2/fableforge_cli/inventory.py +525 -0
- fableforge_agent-0.18.2/fableforge_cli/journey.py +357 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban.py +2845 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban_db.py +8723 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban_decompose.py +477 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban_diagnostics.py +1107 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban_specify.py +273 -0
- fableforge_agent-0.18.2/fableforge_cli/kanban_swarm.py +278 -0
- fableforge_agent-0.18.2/fableforge_cli/logs.py +397 -0
- fableforge_agent-0.18.2/fableforge_cli/main.py +14643 -0
- fableforge_agent-0.18.2/fableforge_cli/managed_scope.py +214 -0
- fableforge_agent-0.18.2/fableforge_cli/managed_uv.py +254 -0
- fableforge_agent-0.18.2/fableforge_cli/mcp_catalog.py +778 -0
- fableforge_agent-0.18.2/fableforge_cli/mcp_config.py +1081 -0
- fableforge_agent-0.18.2/fableforge_cli/mcp_picker.py +322 -0
- fableforge_agent-0.18.2/fableforge_cli/mcp_security.py +181 -0
- fableforge_agent-0.18.2/fableforge_cli/mcp_startup.py +130 -0
- fableforge_agent-0.18.2/fableforge_cli/memory_oauth.py +83 -0
- fableforge_agent-0.18.2/fableforge_cli/memory_providers.py +149 -0
- fableforge_agent-0.18.2/fableforge_cli/memory_setup.py +501 -0
- fableforge_agent-0.18.2/fableforge_cli/middleware.py +313 -0
- fableforge_agent-0.18.2/fableforge_cli/migrate.py +115 -0
- fableforge_agent-0.18.2/fableforge_cli/moa_cmd.py +135 -0
- fableforge_agent-0.18.2/fableforge_cli/moa_config.py +276 -0
- fableforge_agent-0.18.2/fableforge_cli/model_catalog.py +394 -0
- fableforge_agent-0.18.2/fableforge_cli/model_cost_guard.py +134 -0
- fableforge_agent-0.18.2/fableforge_cli/model_normalize.py +473 -0
- fableforge_agent-0.18.2/fableforge_cli/model_setup_flows.py +2983 -0
- fableforge_agent-0.18.2/fableforge_cli/model_switch.py +2452 -0
- fableforge_agent-0.18.2/fableforge_cli/models.py +4297 -0
- fableforge_agent-0.18.2/fableforge_cli/nous_account.py +789 -0
- fableforge_agent-0.18.2/fableforge_cli/nous_auth_keepalive.py +189 -0
- fableforge_agent-0.18.2/fableforge_cli/nous_billing.py +406 -0
- fableforge_agent-0.18.2/fableforge_cli/nous_subscription.py +1285 -0
- fableforge_agent-0.18.2/fableforge_cli/onepassword_secrets_cli.py +432 -0
- fableforge_agent-0.18.2/fableforge_cli/oneshot.py +434 -0
- fableforge_agent-0.18.2/fableforge_cli/pairing.py +115 -0
- fableforge_agent-0.18.2/fableforge_cli/partial_compress.py +324 -0
- fableforge_agent-0.18.2/fableforge_cli/pets.py +502 -0
- fableforge_agent-0.18.2/fableforge_cli/platforms.py +84 -0
- fableforge_agent-0.18.2/fableforge_cli/plugins.py +2464 -0
- fableforge_agent-0.18.2/fableforge_cli/plugins_cmd.py +2017 -0
- fableforge_agent-0.18.2/fableforge_cli/portal_cli.py +245 -0
- fableforge_agent-0.18.2/fableforge_cli/profile_describer.py +298 -0
- fableforge_agent-0.18.2/fableforge_cli/profile_distribution.py +726 -0
- fableforge_agent-0.18.2/fableforge_cli/profiles.py +2225 -0
- fableforge_agent-0.18.2/fableforge_cli/projects_cmd.py +335 -0
- fableforge_agent-0.18.2/fableforge_cli/projects_db.py +727 -0
- fableforge_agent-0.18.2/fableforge_cli/prompt_size.py +161 -0
- fableforge_agent-0.18.2/fableforge_cli/provider_catalog.py +181 -0
- fableforge_agent-0.18.2/fableforge_cli/providers.py +770 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/__init__.py +20 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/adapters/__init__.py +37 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/adapters/base.py +108 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/adapters/nous_portal.py +199 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/adapters/xai.py +145 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/cli.py +142 -0
- fableforge_agent-0.18.2/fableforge_cli/proxy/server.py +300 -0
- fableforge_agent-0.18.2/fableforge_cli/psutil_android.py +108 -0
- fableforge_agent-0.18.2/fableforge_cli/pt_input_extras.py +120 -0
- fableforge_agent-0.18.2/fableforge_cli/pty_bridge.py +286 -0
- fableforge_agent-0.18.2/fableforge_cli/pty_session.py +195 -0
- fableforge_agent-0.18.2/fableforge_cli/relaunch.py +205 -0
- fableforge_agent-0.18.2/fableforge_cli/runtime_provider.py +2058 -0
- fableforge_agent-0.18.2/fableforge_cli/secret_prompt.py +126 -0
- fableforge_agent-0.18.2/fableforge_cli/secrets_cli.py +600 -0
- fableforge_agent-0.18.2/fableforge_cli/security_advisories.py +453 -0
- fableforge_agent-0.18.2/fableforge_cli/security_audit.py +576 -0
- fableforge_agent-0.18.2/fableforge_cli/security_audit_startup.py +282 -0
- fableforge_agent-0.18.2/fableforge_cli/send_cmd.py +471 -0
- fableforge_agent-0.18.2/fableforge_cli/service_manager.py +1123 -0
- fableforge_agent-0.18.2/fableforge_cli/session_export.py +317 -0
- fableforge_agent-0.18.2/fableforge_cli/session_export_html.py +849 -0
- fableforge_agent-0.18.2/fableforge_cli/session_export_md.py +279 -0
- fableforge_agent-0.18.2/fableforge_cli/session_filters.py +208 -0
- fableforge_agent-0.18.2/fableforge_cli/session_listing.py +113 -0
- fableforge_agent-0.18.2/fableforge_cli/session_recap.py +316 -0
- fableforge_agent-0.18.2/fableforge_cli/setup.py +3405 -0
- fableforge_agent-0.18.2/fableforge_cli/setup_whatsapp_cloud.py +541 -0
- fableforge_agent-0.18.2/fableforge_cli/skills_config.py +183 -0
- fableforge_agent-0.18.2/fableforge_cli/skills_hub.py +1997 -0
- fableforge_agent-0.18.2/fableforge_cli/skin_engine.py +926 -0
- fableforge_agent-0.18.2/fableforge_cli/slack_cli.py +194 -0
- fableforge_agent-0.18.2/fableforge_cli/sqlite_util.py +49 -0
- fableforge_agent-0.18.2/fableforge_cli/status.py +620 -0
- fableforge_agent-0.18.2/fableforge_cli/stdio.py +251 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/__init__.py +18 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/_shared.py +29 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/acp.py +52 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/auth.py +98 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/backup.py +38 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/claw.py +92 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/config.py +49 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/console.py +18 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/cron.py +163 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/dashboard.py +200 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/debug.py +100 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/doctor.py +35 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/dump.py +28 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/gateway.py +345 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/gui.py +63 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/hooks.py +77 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/import_cmd.py +31 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/insights.py +25 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/login.py +78 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/logout.py +28 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/logs.py +78 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/mcp.py +126 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/memory.py +53 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/model.py +62 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/pairing.py +36 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/plugins.py +106 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/postinstall.py +23 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/profile.py +203 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/prompt_size.py +36 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/security.py +62 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/setup.py +58 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/skills.py +315 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/slack.py +68 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/status.py +28 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/tools.py +95 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/uninstall.py +46 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/update.py +76 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/version.py +18 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/webhook.py +83 -0
- fableforge_agent-0.18.2/fableforge_cli/subcommands/whatsapp.py +22 -0
- fableforge_agent-0.18.2/fableforge_cli/suggestions_cmd.py +153 -0
- fableforge_agent-0.18.2/fableforge_cli/telegram_managed_bot.py +358 -0
- fableforge_agent-0.18.2/fableforge_cli/timeouts.py +82 -0
- fableforge_agent-0.18.2/fableforge_cli/tips.py +485 -0
- fableforge_agent-0.18.2/fableforge_cli/tools_config.py +4505 -0
- fableforge_agent-0.18.2/fableforge_cli/toolset_validation.py +74 -0
- fableforge_agent-0.18.2/fableforge_cli/uninstall.py +962 -0
- fableforge_agent-0.18.2/fableforge_cli/voice.py +846 -0
- fableforge_agent-0.18.2/fableforge_cli/web_git.py +646 -0
- fableforge_agent-0.18.2/fableforge_cli/web_server.py +17107 -0
- fableforge_agent-0.18.2/fableforge_cli/webhook.py +306 -0
- fableforge_agent-0.18.2/fableforge_cli/win_pty_bridge.py +179 -0
- fableforge_agent-0.18.2/fableforge_cli/write_approval_commands.py +209 -0
- fableforge_agent-0.18.2/fableforge_cli/xai_retirement.py +256 -0
- fableforge_agent-0.18.2/fableforge_constants.py +988 -0
- fableforge_agent-0.18.2/fableforge_logging.py +789 -0
- fableforge_agent-0.18.2/fableforge_state.py +6459 -0
- fableforge_agent-0.18.2/fableforge_time.py +135 -0
- fableforge_agent-0.18.2/gateway/__init__.py +35 -0
- fableforge_agent-0.18.2/gateway/authz_mixin.py +710 -0
- fableforge_agent-0.18.2/gateway/builtin_hooks/__init__.py +1 -0
- fableforge_agent-0.18.2/gateway/cgroup_cleanup.py +81 -0
- fableforge_agent-0.18.2/gateway/channel_directory.py +496 -0
- fableforge_agent-0.18.2/gateway/code_skew.py +64 -0
- fableforge_agent-0.18.2/gateway/config.py +2277 -0
- fableforge_agent-0.18.2/gateway/cwd_placeholder.py +49 -0
- fableforge_agent-0.18.2/gateway/dead_targets.py +143 -0
- fableforge_agent-0.18.2/gateway/delivery.py +557 -0
- fableforge_agent-0.18.2/gateway/display_config.py +277 -0
- fableforge_agent-0.18.2/gateway/drain_control.py +273 -0
- fableforge_agent-0.18.2/gateway/hooks.py +227 -0
- fableforge_agent-0.18.2/gateway/kanban_watchers.py +1286 -0
- fableforge_agent-0.18.2/gateway/memory_monitor.py +230 -0
- fableforge_agent-0.18.2/gateway/message_timestamps.py +166 -0
- fableforge_agent-0.18.2/gateway/mirror.py +206 -0
- fableforge_agent-0.18.2/gateway/pairing.py +661 -0
- fableforge_agent-0.18.2/gateway/platform_registry.py +332 -0
- fableforge_agent-0.18.2/gateway/platforms/__init__.py +45 -0
- fableforge_agent-0.18.2/gateway/platforms/_http_client_limits.py +84 -0
- fableforge_agent-0.18.2/gateway/platforms/api_server.py +4917 -0
- fableforge_agent-0.18.2/gateway/platforms/base.py +5627 -0
- fableforge_agent-0.18.2/gateway/platforms/bluebubbles.py +1048 -0
- fableforge_agent-0.18.2/gateway/platforms/helpers.py +403 -0
- fableforge_agent-0.18.2/gateway/platforms/msgraph_webhook.py +441 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/__init__.py +91 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/adapter.py +3221 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/chunked_upload.py +602 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/constants.py +74 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/crypto.py +45 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/keyboards.py +473 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/onboard.py +220 -0
- fableforge_agent-0.18.2/gateway/platforms/qqbot/utils.py +71 -0
- fableforge_agent-0.18.2/gateway/platforms/signal.py +1701 -0
- fableforge_agent-0.18.2/gateway/platforms/signal_format.py +140 -0
- fableforge_agent-0.18.2/gateway/platforms/signal_rate_limit.py +369 -0
- fableforge_agent-0.18.2/gateway/platforms/webhook.py +1266 -0
- fableforge_agent-0.18.2/gateway/platforms/webhook_filters.py +302 -0
- fableforge_agent-0.18.2/gateway/platforms/weixin.py +2379 -0
- fableforge_agent-0.18.2/gateway/platforms/whatsapp_cloud.py +2037 -0
- fableforge_agent-0.18.2/gateway/platforms/whatsapp_common.py +510 -0
- fableforge_agent-0.18.2/gateway/platforms/yuanbao.py +5557 -0
- fableforge_agent-0.18.2/gateway/platforms/yuanbao_media.py +665 -0
- fableforge_agent-0.18.2/gateway/platforms/yuanbao_proto.py +1418 -0
- fableforge_agent-0.18.2/gateway/platforms/yuanbao_sticker.py +558 -0
- fableforge_agent-0.18.2/gateway/relay/__init__.py +835 -0
- fableforge_agent-0.18.2/gateway/relay/adapter.py +546 -0
- fableforge_agent-0.18.2/gateway/relay/auth.py +168 -0
- fableforge_agent-0.18.2/gateway/relay/descriptor.py +118 -0
- fableforge_agent-0.18.2/gateway/relay/transport.py +143 -0
- fableforge_agent-0.18.2/gateway/relay/ws_transport.py +718 -0
- fableforge_agent-0.18.2/gateway/response_filters.py +106 -0
- fableforge_agent-0.18.2/gateway/restart.py +26 -0
- fableforge_agent-0.18.2/gateway/restart_loop_guard.py +150 -0
- fableforge_agent-0.18.2/gateway/rich_sent_store.py +83 -0
- fableforge_agent-0.18.2/gateway/run.py +20851 -0
- fableforge_agent-0.18.2/gateway/runtime_footer.py +149 -0
- fableforge_agent-0.18.2/gateway/scale_to_zero.py +124 -0
- fableforge_agent-0.18.2/gateway/session.py +2432 -0
- fableforge_agent-0.18.2/gateway/session_context.py +346 -0
- fableforge_agent-0.18.2/gateway/shutdown_forensics.py +462 -0
- fableforge_agent-0.18.2/gateway/slash_access.py +229 -0
- fableforge_agent-0.18.2/gateway/slash_commands.py +4642 -0
- fableforge_agent-0.18.2/gateway/status.py +1541 -0
- fableforge_agent-0.18.2/gateway/status_phrases.py +227 -0
- fableforge_agent-0.18.2/gateway/sticker_cache.py +124 -0
- fableforge_agent-0.18.2/gateway/stream_consumer.py +1800 -0
- fableforge_agent-0.18.2/gateway/stream_dispatch.py +132 -0
- fableforge_agent-0.18.2/gateway/stream_events.py +171 -0
- fableforge_agent-0.18.2/gateway/whatsapp_identity.py +206 -0
- fableforge_agent-0.18.2/locales/af.yaml +402 -0
- fableforge_agent-0.18.2/locales/de.yaml +402 -0
- fableforge_agent-0.18.2/locales/en.yaml +414 -0
- fableforge_agent-0.18.2/locales/es.yaml +399 -0
- fableforge_agent-0.18.2/locales/fr.yaml +402 -0
- fableforge_agent-0.18.2/locales/ga.yaml +406 -0
- fableforge_agent-0.18.2/locales/hu.yaml +402 -0
- fableforge_agent-0.18.2/locales/it.yaml +402 -0
- fableforge_agent-0.18.2/locales/ja.yaml +402 -0
- fableforge_agent-0.18.2/locales/ko.yaml +402 -0
- fableforge_agent-0.18.2/locales/pt.yaml +402 -0
- fableforge_agent-0.18.2/locales/ru.yaml +402 -0
- fableforge_agent-0.18.2/locales/tr.yaml +402 -0
- fableforge_agent-0.18.2/locales/uk.yaml +402 -0
- fableforge_agent-0.18.2/locales/zh-hant.yaml +402 -0
- fableforge_agent-0.18.2/locales/zh.yaml +402 -0
- fableforge_agent-0.18.2/mcp_serve.py +990 -0
- fableforge_agent-0.18.2/model_tools.py +1375 -0
- fableforge_agent-0.18.2/observability/__init__.py +27 -0
- fableforge_agent-0.18.2/observability/core.py +207 -0
- fableforge_agent-0.18.2/optional-mcps/linear/manifest.yaml +38 -0
- fableforge_agent-0.18.2/optional-mcps/n8n/manifest.yaml +77 -0
- fableforge_agent-0.18.2/optional-mcps/unreal-engine/manifest.yaml +54 -0
- fableforge_agent-0.18.2/optional-skills/DESCRIPTION.md +24 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md +241 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/antigravity-cli/references/cli-docs.md +64 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +144 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/grok/SKILL.md +301 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/honcho/SKILL.md +431 -0
- fableforge_agent-0.18.2/optional-skills/autonomous-ai-agents/openhands/SKILL.md +149 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/evm/SKILL.md +211 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/evm/scripts/evm_client.py +1508 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/hyperliquid/SKILL.md +211 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1660 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/solana/SKILL.md +208 -0
- fableforge_agent-0.18.2/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
- fableforge_agent-0.18.2/optional-skills/communication/DESCRIPTION.md +1 -0
- fableforge_agent-0.18.2/optional-skills/communication/one-three-one-rule/SKILL.md +104 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/PORT_NOTES.md +48 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/SKILL.md +207 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/prompts/system.md +32 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/palettes/macaron.md +33 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/palettes/mono-ink.md +42 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/palettes/neon.md +33 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/palettes/warm.md +32 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/prompt-construction.md +426 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/style-presets.md +80 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/blueprint.md +57 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/chalkboard.md +62 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/editorial.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/elegant.md +56 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/fantasy-animation.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/flat-doodle.md +61 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/flat.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/ink-notes.md +90 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/intuition-machine.md +57 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/minimal.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/nature.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/notion.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/pixel-art.md +57 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/playful.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/retro.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/scientific.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/screen-print.md +70 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/sketch-notes.md +56 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/sketch.md +57 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/vector-illustration.md +57 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/vintage.md +59 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/warm.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles/watercolor.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/styles.md +224 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/usage.md +50 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-article-illustrator/references/workflow.md +332 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/PORT_NOTES.md +77 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/SKILL.md +247 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/analysis-framework.md +176 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/chalk.md +101 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/ink-brush.md +97 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/ligne-claire.md +75 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/manga.md +93 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/minimalist.md +84 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/art-styles/realistic.md +89 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/auto-selection.md +71 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/base-prompt.md +98 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/character-template.md +180 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/cinematic.md +23 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/dense.md +23 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/four-panel.md +40 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/mixed.md +23 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/splash.md +23 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/standard.md +23 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/layouts/webtoon.md +30 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/ohmsha-guide.md +85 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/partial-workflows.md +106 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/presets/concept-story.md +121 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/presets/four-panel.md +107 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/presets/ohmsha.md +114 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/presets/shoujo.md +116 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/presets/wuxia.md +110 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/storyboard-template.md +143 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/action.md +110 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/dramatic.md +95 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/energetic.md +105 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/neutral.md +63 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/romantic.md +100 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/vintage.md +104 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/tones/warm.md +94 -0
- fableforge_agent-0.18.2/optional-skills/creative/baoyu-comic/references/workflow.md +401 -0
- fableforge_agent-0.18.2/optional-skills/creative/blender-mcp/SKILL.md +117 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/SKILL.md +362 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
- fableforge_agent-0.18.2/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/SKILL.md +177 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/anti-slop.md +106 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/exercises.md +71 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/full-prompt-library.md +180 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/heuristics.md +85 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/method-catalog.md +88 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/affinity-diagrams.md +67 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/analogy-and-blending.md +83 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/biomimicry.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/chance-and-remix.md +75 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/compression-progress.md +64 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/creative-discipline.md +82 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/defamiliarization.md +58 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/derive-and-mapping.md +76 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/first-principles.md +63 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/jobs-to-be-done.md +73 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/lateral-provocations.md +81 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/leverage-points.md +70 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/oblique-strategies.md +87 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/oulipo.md +75 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/pataphysics.md +64 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/pattern-languages.md +78 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/polya.md +77 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/premortem-and-inversion.md +71 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/scamper.md +63 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/story-skeletons.md +100 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/triz-principles.md +95 -0
- fableforge_agent-0.18.2/optional-skills/creative/creative-ideation/references/methods/volume-generation.md +74 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/SKILL.md +191 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/cli.md +185 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/composition.md +129 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/features.md +289 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/gsap.md +136 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/troubleshooting.md +137 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/references/website-to-video.md +145 -0
- fableforge_agent-0.18.2/optional-skills/creative/hyperframes/scripts/setup.sh +135 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/SKILL.md +208 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/assets/brief.md.tmpl +79 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +186 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/assets/soul.md.tmpl +38 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/examples.md +227 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/intake.md +166 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +278 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/monitoring.md +180 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/role-archetypes.md +300 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +302 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/scripts/bootstrap_pipeline.py +499 -0
- fableforge_agent-0.18.2/optional-skills/creative/kanban-video-orchestrator/scripts/monitor.py +195 -0
- fableforge_agent-0.18.2/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
- fableforge_agent-0.18.2/optional-skills/creative/meme-generation/SKILL.md +130 -0
- fableforge_agent-0.18.2/optional-skills/creative/meme-generation/scripts/.gitignore +1 -0
- fableforge_agent-0.18.2/optional-skills/creative/meme-generation/scripts/generate_meme.py +470 -0
- fableforge_agent-0.18.2/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/ATTRIBUTION.md +54 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/SKILL.md +218 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/references/palettes.md +49 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/scripts/__init__.py +0 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/scripts/palettes.py +167 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/scripts/pixel_art.py +162 -0
- fableforge_agent-0.18.2/optional-skills/creative/pixel-art/scripts/pixel_art_video.py +345 -0
- fableforge_agent-0.18.2/optional-skills/devops/cli/SKILL.md +156 -0
- fableforge_agent-0.18.2/optional-skills/devops/cli/references/app-discovery.md +112 -0
- fableforge_agent-0.18.2/optional-skills/devops/cli/references/authentication.md +59 -0
- fableforge_agent-0.18.2/optional-skills/devops/cli/references/cli-reference.md +104 -0
- fableforge_agent-0.18.2/optional-skills/devops/cli/references/running-apps.md +171 -0
- fableforge_agent-0.18.2/optional-skills/devops/docker-management/SKILL.md +281 -0
- fableforge_agent-0.18.2/optional-skills/devops/hermes-s6-container-supervision/SKILL.md +178 -0
- fableforge_agent-0.18.2/optional-skills/devops/pinggy-tunnel/SKILL.md +309 -0
- fableforge_agent-0.18.2/optional-skills/devops/watchers/SKILL.md +112 -0
- fableforge_agent-0.18.2/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
- fableforge_agent-0.18.2/optional-skills/devops/watchers/scripts/watch_github.py +169 -0
- fableforge_agent-0.18.2/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
- fableforge_agent-0.18.2/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
- fableforge_agent-0.18.2/optional-skills/dogfood/DESCRIPTION.md +3 -0
- fableforge_agent-0.18.2/optional-skills/dogfood/adversarial-ux-test/SKILL.md +191 -0
- fableforge_agent-0.18.2/optional-skills/email/agentmail/SKILL.md +126 -0
- fableforge_agent-0.18.2/optional-skills/finance/3-statement-model/SKILL.md +433 -0
- fableforge_agent-0.18.2/optional-skills/finance/3-statement-model/references/formatting.md +118 -0
- fableforge_agent-0.18.2/optional-skills/finance/3-statement-model/references/formulas.md +292 -0
- fableforge_agent-0.18.2/optional-skills/finance/3-statement-model/references/sec-filings.md +125 -0
- fableforge_agent-0.18.2/optional-skills/finance/comps-analysis/SKILL.md +662 -0
- fableforge_agent-0.18.2/optional-skills/finance/dcf-model/SKILL.md +1270 -0
- fableforge_agent-0.18.2/optional-skills/finance/dcf-model/TROUBLESHOOTING.md +40 -0
- fableforge_agent-0.18.2/optional-skills/finance/dcf-model/requirements.txt +7 -0
- fableforge_agent-0.18.2/optional-skills/finance/dcf-model/scripts/validate_dcf.py +291 -0
- fableforge_agent-0.18.2/optional-skills/finance/excel-author/SKILL.md +244 -0
- fableforge_agent-0.18.2/optional-skills/finance/excel-author/scripts/recalc.py +88 -0
- fableforge_agent-0.18.2/optional-skills/finance/lbo-model/SKILL.md +291 -0
- fableforge_agent-0.18.2/optional-skills/finance/merger-model/SKILL.md +144 -0
- fableforge_agent-0.18.2/optional-skills/finance/pptx-author/SKILL.md +173 -0
- fableforge_agent-0.18.2/optional-skills/finance/stocks/SKILL.md +95 -0
- fableforge_agent-0.18.2/optional-skills/finance/stocks/scripts/stocks_client.py +755 -0
- fableforge_agent-0.18.2/optional-skills/gaming/DESCRIPTION.md +3 -0
- fableforge_agent-0.18.2/optional-skills/gaming/minecraft-modpack-server/SKILL.md +187 -0
- fableforge_agent-0.18.2/optional-skills/gaming/pokemon-player/SKILL.md +216 -0
- fableforge_agent-0.18.2/optional-skills/health/DESCRIPTION.md +1 -0
- fableforge_agent-0.18.2/optional-skills/health/fitness-nutrition/SKILL.md +256 -0
- fableforge_agent-0.18.2/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
- fableforge_agent-0.18.2/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
- fableforge_agent-0.18.2/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +85 -0
- fableforge_agent-0.18.2/optional-skills/health/neuroskill-bci/SKILL.md +459 -0
- fableforge_agent-0.18.2/optional-skills/health/neuroskill-bci/references/api.md +286 -0
- fableforge_agent-0.18.2/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
- fableforge_agent-0.18.2/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
- fableforge_agent-0.18.2/optional-skills/mcp/DESCRIPTION.md +3 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/SKILL.md +300 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
- fableforge_agent-0.18.2/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
- fableforge_agent-0.18.2/optional-skills/mcp/mcporter/SKILL.md +123 -0
- fableforge_agent-0.18.2/optional-skills/migration/DESCRIPTION.md +2 -0
- fableforge_agent-0.18.2/optional-skills/migration/openclaw-migration/SKILL.md +298 -0
- fableforge_agent-0.18.2/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
- fableforge_agent-0.18.2/optional-skills/mlops/accelerate/SKILL.md +336 -0
- fableforge_agent-0.18.2/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
- fableforge_agent-0.18.2/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
- fableforge_agent-0.18.2/optional-skills/mlops/accelerate/references/performance.md +525 -0
- fableforge_agent-0.18.2/optional-skills/mlops/chroma/SKILL.md +410 -0
- fableforge_agent-0.18.2/optional-skills/mlops/chroma/references/integration.md +38 -0
- fableforge_agent-0.18.2/optional-skills/mlops/clip/SKILL.md +257 -0
- fableforge_agent-0.18.2/optional-skills/mlops/clip/references/applications.md +207 -0
- fableforge_agent-0.18.2/optional-skills/mlops/faiss/SKILL.md +225 -0
- fableforge_agent-0.18.2/optional-skills/mlops/faiss/references/index_types.md +280 -0
- fableforge_agent-0.18.2/optional-skills/mlops/flash-attention/SKILL.md +367 -0
- fableforge_agent-0.18.2/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
- fableforge_agent-0.18.2/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
- fableforge_agent-0.18.2/optional-skills/mlops/guidance/SKILL.md +576 -0
- fableforge_agent-0.18.2/optional-skills/mlops/guidance/references/backends.md +554 -0
- fableforge_agent-0.18.2/optional-skills/mlops/guidance/references/constraints.md +674 -0
- fableforge_agent-0.18.2/optional-skills/mlops/guidance/references/examples.md +767 -0
- fableforge_agent-0.18.2/optional-skills/mlops/huggingface-tokenizers/SKILL.md +520 -0
- fableforge_agent-0.18.2/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
- fableforge_agent-0.18.2/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
- fableforge_agent-0.18.2/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
- fableforge_agent-0.18.2/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
- fableforge_agent-0.18.2/optional-skills/mlops/inference/outlines/SKILL.md +656 -0
- fableforge_agent-0.18.2/optional-skills/mlops/inference/outlines/references/backends.md +615 -0
- fableforge_agent-0.18.2/optional-skills/mlops/inference/outlines/references/examples.md +773 -0
- fableforge_agent-0.18.2/optional-skills/mlops/inference/outlines/references/json_generation.md +652 -0
- fableforge_agent-0.18.2/optional-skills/mlops/instructor/SKILL.md +744 -0
- fableforge_agent-0.18.2/optional-skills/mlops/instructor/references/examples.md +107 -0
- fableforge_agent-0.18.2/optional-skills/mlops/instructor/references/providers.md +70 -0
- fableforge_agent-0.18.2/optional-skills/mlops/instructor/references/validation.md +606 -0
- fableforge_agent-0.18.2/optional-skills/mlops/lambda-labs/SKILL.md +549 -0
- fableforge_agent-0.18.2/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
- fableforge_agent-0.18.2/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
- fableforge_agent-0.18.2/optional-skills/mlops/llava/SKILL.md +308 -0
- fableforge_agent-0.18.2/optional-skills/mlops/llava/references/training.md +197 -0
- fableforge_agent-0.18.2/optional-skills/mlops/modal/SKILL.md +345 -0
- fableforge_agent-0.18.2/optional-skills/mlops/modal/references/advanced-usage.md +503 -0
- fableforge_agent-0.18.2/optional-skills/mlops/modal/references/troubleshooting.md +494 -0
- fableforge_agent-0.18.2/optional-skills/mlops/nemo-curator/SKILL.md +387 -0
- fableforge_agent-0.18.2/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
- fableforge_agent-0.18.2/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/SKILL.md +342 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/references/analysis-modules.md +166 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/references/methods-guide.md +141 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/templates/abliteration-config.yaml +33 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/templates/analysis-study.yaml +40 -0
- fableforge_agent-0.18.2/optional-skills/mlops/obliteratus/templates/batch-abliteration.yaml +41 -0
- fableforge_agent-0.18.2/optional-skills/mlops/peft/SKILL.md +435 -0
- fableforge_agent-0.18.2/optional-skills/mlops/peft/references/advanced-usage.md +514 -0
- fableforge_agent-0.18.2/optional-skills/mlops/peft/references/troubleshooting.md +480 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pinecone/SKILL.md +362 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pinecone/references/deployment.md +181 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-fsdp/SKILL.md +130 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-fsdp/references/index.md +7 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-fsdp/references/other.md +4261 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-lightning/SKILL.md +350 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
- fableforge_agent-0.18.2/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
- fableforge_agent-0.18.2/optional-skills/mlops/qdrant/SKILL.md +497 -0
- fableforge_agent-0.18.2/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
- fableforge_agent-0.18.2/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
- fableforge_agent-0.18.2/optional-skills/mlops/research/DESCRIPTION.md +3 -0
- fableforge_agent-0.18.2/optional-skills/mlops/research/dspy/SKILL.md +594 -0
- fableforge_agent-0.18.2/optional-skills/mlops/research/dspy/references/examples.md +663 -0
- fableforge_agent-0.18.2/optional-skills/mlops/research/dspy/references/modules.md +475 -0
- fableforge_agent-0.18.2/optional-skills/mlops/research/dspy/references/optimizers.md +566 -0
- fableforge_agent-0.18.2/optional-skills/mlops/saelens/SKILL.md +390 -0
- fableforge_agent-0.18.2/optional-skills/mlops/saelens/references/README.md +69 -0
- fableforge_agent-0.18.2/optional-skills/mlops/saelens/references/api.md +333 -0
- fableforge_agent-0.18.2/optional-skills/mlops/saelens/references/tutorials.md +318 -0
- fableforge_agent-0.18.2/optional-skills/mlops/simpo/SKILL.md +223 -0
- fableforge_agent-0.18.2/optional-skills/mlops/simpo/references/datasets.md +478 -0
- fableforge_agent-0.18.2/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
- fableforge_agent-0.18.2/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
- fableforge_agent-0.18.2/optional-skills/mlops/slime/SKILL.md +468 -0
- fableforge_agent-0.18.2/optional-skills/mlops/slime/references/api-reference.md +392 -0
- fableforge_agent-0.18.2/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
- fableforge_agent-0.18.2/optional-skills/mlops/stable-diffusion/SKILL.md +523 -0
- fableforge_agent-0.18.2/optional-skills/mlops/stable-diffusion/references/advanced-usage.md +716 -0
- fableforge_agent-0.18.2/optional-skills/mlops/stable-diffusion/references/troubleshooting.md +555 -0
- fableforge_agent-0.18.2/optional-skills/mlops/tensorrt-llm/SKILL.md +191 -0
- fableforge_agent-0.18.2/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
- fableforge_agent-0.18.2/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
- fableforge_agent-0.18.2/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
- fableforge_agent-0.18.2/optional-skills/mlops/torchtitan/SKILL.md +362 -0
- fableforge_agent-0.18.2/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
- fableforge_agent-0.18.2/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
- fableforge_agent-0.18.2/optional-skills/mlops/torchtitan/references/float8.md +133 -0
- fableforge_agent-0.18.2/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/axolotl/SKILL.md +166 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/axolotl/references/api.md +5548 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/axolotl/references/index.md +15 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/axolotl/references/other.md +3563 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/SKILL.md +463 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/references/grpo-training.md +504 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/trl-fine-tuning/templates/basic_grpo_training.py +228 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/unsloth/SKILL.md +84 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/unsloth/references/index.md +7 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/unsloth/references/llms-full.md +16799 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
- fableforge_agent-0.18.2/optional-skills/mlops/training/unsloth/references/llms.md +82 -0
- fableforge_agent-0.18.2/optional-skills/mlops/whisper/SKILL.md +321 -0
- fableforge_agent-0.18.2/optional-skills/mlops/whisper/references/languages.md +189 -0
- fableforge_agent-0.18.2/optional-skills/payments/mpp-agent/SKILL.md +124 -0
- fableforge_agent-0.18.2/optional-skills/payments/stripe-link-cli/SKILL.md +184 -0
- fableforge_agent-0.18.2/optional-skills/payments/stripe-projects/SKILL.md +120 -0
- fableforge_agent-0.18.2/optional-skills/productivity/canvas/SKILL.md +98 -0
- fableforge_agent-0.18.2/optional-skills/productivity/canvas/scripts/canvas_api.py +160 -0
- fableforge_agent-0.18.2/optional-skills/productivity/here-now/SKILL.md +217 -0
- fableforge_agent-0.18.2/optional-skills/productivity/here-now/scripts/drive.sh +406 -0
- fableforge_agent-0.18.2/optional-skills/productivity/here-now/scripts/publish.sh +445 -0
- fableforge_agent-0.18.2/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
- fableforge_agent-0.18.2/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
- fableforge_agent-0.18.2/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shop/SKILL.md +224 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shop/references/catalog-mcp.md +236 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shop/references/direct-api.md +278 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shop/references/legal.md +3 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shop/references/safety.md +36 -0
- fableforge_agent-0.18.2/optional-skills/productivity/shopify/SKILL.md +373 -0
- fableforge_agent-0.18.2/optional-skills/productivity/siyuan/SKILL.md +298 -0
- fableforge_agent-0.18.2/optional-skills/productivity/telephony/SKILL.md +418 -0
- fableforge_agent-0.18.2/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
- fableforge_agent-0.18.2/optional-skills/research/bioinformatics/SKILL.md +235 -0
- fableforge_agent-0.18.2/optional-skills/research/darwinian-evolver/SKILL.md +199 -0
- fableforge_agent-0.18.2/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
- fableforge_agent-0.18.2/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +92 -0
- fableforge_agent-0.18.2/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
- fableforge_agent-0.18.2/optional-skills/research/domain-intel/SKILL.md +97 -0
- fableforge_agent-0.18.2/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
- fableforge_agent-0.18.2/optional-skills/research/drug-discovery/SKILL.md +227 -0
- fableforge_agent-0.18.2/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
- fableforge_agent-0.18.2/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
- fableforge_agent-0.18.2/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
- fableforge_agent-0.18.2/optional-skills/research/duckduckgo-search/SKILL.md +238 -0
- fableforge_agent-0.18.2/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
- fableforge_agent-0.18.2/optional-skills/research/gitnexus-explorer/SKILL.md +214 -0
- fableforge_agent-0.18.2/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/SKILL.md +277 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/courtlistener.md +98 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/gdelt.md +104 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/icij-offshore.md +104 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/nyc-acris.md +90 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/ofac-sdn.md +92 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/opencorporates.md +103 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/sec-edgar.md +83 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/senate-ld.md +89 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/usaspending.md +97 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/wayback.md +93 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/references/sources/wikipedia.md +107 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/_http.py +82 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/_normalize.py +67 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/build_findings.py +221 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/entity_resolution.py +228 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_courtlistener.py +149 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_gdelt.py +161 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_icij_offshore.py +234 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_nyc_acris.py +203 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_ofac_sdn.py +175 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_opencorporates.py +191 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_sec_edgar.py +184 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_senate_ld.py +146 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_usaspending.py +170 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_wayback.py +142 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/fetch_wikipedia.py +266 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/scripts/timing_analysis.py +252 -0
- fableforge_agent-0.18.2/optional-skills/research/osint-investigation/templates/source-template.md +59 -0
- fableforge_agent-0.18.2/optional-skills/research/parallel-cli/SKILL.md +391 -0
- fableforge_agent-0.18.2/optional-skills/research/qmd/SKILL.md +441 -0
- fableforge_agent-0.18.2/optional-skills/research/scrapling/SKILL.md +336 -0
- fableforge_agent-0.18.2/optional-skills/research/searxng-search/SKILL.md +212 -0
- fableforge_agent-0.18.2/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
- fableforge_agent-0.18.2/optional-skills/security/1password/SKILL.md +163 -0
- fableforge_agent-0.18.2/optional-skills/security/1password/references/cli-examples.md +31 -0
- fableforge_agent-0.18.2/optional-skills/security/1password/references/get-started.md +21 -0
- fableforge_agent-0.18.2/optional-skills/security/DESCRIPTION.md +3 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/SKILL.md +403 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/references/jailbreak-templates.md +128 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/references/refusal-detection.md +142 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/scripts/auto_jailbreak.py +771 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/scripts/godmode_race.py +530 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/scripts/load_godmode.py +45 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/scripts/parseltongue.py +550 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/templates/prefill-subtle.json +10 -0
- fableforge_agent-0.18.2/optional-skills/security/godmode/templates/prefill.json +18 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/SKILL.md +423 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
- fableforge_agent-0.18.2/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
- fableforge_agent-0.18.2/optional-skills/security/sherlock/SKILL.md +193 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/README.md +164 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/SKILL.md +317 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/assets/unbroker.png +0 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/addresses.json +52 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/advancedbackgroundchecks.json +50 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/beenverified.json +56 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/clustal.json +47 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/clustrmaps.json +52 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/cyberbackgroundchecks.json +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/familytreenow.json +50 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/fastpeoplesearch.json +44 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/intelius.json +99 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/mylife.json +35 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/nuwber.json +52 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/peekyou.json +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/peoplefinders.json +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/radaris.json +58 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/rehold.json +48 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/searchpeoplefree.json +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/socialcatfish.json +52 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/spokeo.json +56 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/thatsthem.json +46 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/truepeoplesearch.json +44 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/usphonebook.json +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/brokers/whitepages.json +57 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/legal/ccpa.md +27 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/legal/drop.md +34 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/legal/gdpr.md +20 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/methods.md +361 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/site-playbooks.md +56 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/references/state-machine.md +56 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/autopilot.py +417 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/badbool.py +177 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/brokers.py +77 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/cdp.py +159 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/config.py +144 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/crypto.py +88 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/dossier.py +135 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/email_modes.py +76 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/emailer.py +342 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/ledger.py +170 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/legal.py +63 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/paths.py +79 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/pdd.py +914 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/registry.py +293 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/report.py +161 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/scan.py +32 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/storage.py +138 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/tiers.py +283 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/scripts/vectors.py +53 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/consent/authorization.md +15 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/emails/ccpa-authorized-agent.txt +24 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/emails/ccpa-deletion.txt +22 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/emails/ccpa-indirect-deletion.txt +30 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/emails/gdpr-erasure.txt +19 -0
- fableforge_agent-0.18.2/optional-skills/security/unbroker/templates/emails/generic-optout.txt +15 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/SKILL.md +333 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/references/bypass-techniques.md +133 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/references/exploitation-techniques.md +204 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/references/scope-enforcement.md +110 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/references/vuln-taxonomy.md +81 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/scripts/recon-scan.sh +126 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/templates/authorization.md +69 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/templates/exploitation-queue.json +34 -0
- fableforge_agent-0.18.2/optional-skills/security/web-pentest/templates/pentest-report.md +178 -0
- fableforge_agent-0.18.2/optional-skills/software-development/code-wiki/SKILL.md +445 -0
- fableforge_agent-0.18.2/optional-skills/software-development/code-wiki/templates/README.md +31 -0
- fableforge_agent-0.18.2/optional-skills/software-development/code-wiki/templates/architecture.md +30 -0
- fableforge_agent-0.18.2/optional-skills/software-development/code-wiki/templates/getting-started.md +47 -0
- fableforge_agent-0.18.2/optional-skills/software-development/code-wiki/templates/module.md +38 -0
- fableforge_agent-0.18.2/optional-skills/software-development/rest-graphql-debug/SKILL.md +514 -0
- fableforge_agent-0.18.2/optional-skills/software-development/subagent-driven-development/SKILL.md +352 -0
- fableforge_agent-0.18.2/optional-skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
- fableforge_agent-0.18.2/optional-skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
- fableforge_agent-0.18.2/optional-skills/web-development/DESCRIPTION.md +5 -0
- fableforge_agent-0.18.2/optional-skills/web-development/cloudflare-temporary-deploy/SKILL.md +127 -0
- fableforge_agent-0.18.2/optional-skills/web-development/cloudflare-temporary-deploy/scripts/parse_deploy_output.py +122 -0
- fableforge_agent-0.18.2/optional-skills/web-development/page-agent/SKILL.md +190 -0
- fableforge_agent-0.18.2/plugins/__init__.py +1 -0
- fableforge_agent-0.18.2/plugins/browser/browser_use/__init__.py +14 -0
- fableforge_agent-0.18.2/plugins/browser/browser_use/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/browser/browser_use/provider.py +317 -0
- fableforge_agent-0.18.2/plugins/browser/browserbase/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/browser/browserbase/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/browser/browserbase/provider.py +297 -0
- fableforge_agent-0.18.2/plugins/browser/firecrawl/__init__.py +16 -0
- fableforge_agent-0.18.2/plugins/browser/firecrawl/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/browser/firecrawl/provider.py +171 -0
- fableforge_agent-0.18.2/plugins/context_engine/__init__.py +285 -0
- fableforge_agent-0.18.2/plugins/cron_providers/__init__.py +356 -0
- fableforge_agent-0.18.2/plugins/cron_providers/chronos/__init__.py +241 -0
- fableforge_agent-0.18.2/plugins/cron_providers/chronos/_nas_client.py +123 -0
- fableforge_agent-0.18.2/plugins/cron_providers/chronos/plugin.yaml +9 -0
- fableforge_agent-0.18.2/plugins/cron_providers/chronos/verify.py +103 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/basic/__init__.py +491 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/basic/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/drain/__init__.py +291 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/drain/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/nous/__init__.py +667 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/nous/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/self_hosted/__init__.py +858 -0
- fableforge_agent-0.18.2/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
- fableforge_agent-0.18.2/plugins/disk-cleanup/__init__.py +316 -0
- fableforge_agent-0.18.2/plugins/disk-cleanup/disk_cleanup.py +588 -0
- fableforge_agent-0.18.2/plugins/disk-cleanup/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/fableforge-achievements/dashboard/manifest.json +11 -0
- fableforge_agent-0.18.2/plugins/fableforge-achievements/dashboard/plugin_api.py +1061 -0
- fableforge_agent-0.18.2/plugins/google_meet/__init__.py +103 -0
- fableforge_agent-0.18.2/plugins/google_meet/audio_bridge.py +248 -0
- fableforge_agent-0.18.2/plugins/google_meet/cli.py +476 -0
- fableforge_agent-0.18.2/plugins/google_meet/meet_bot.py +858 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/__init__.py +54 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/cli.py +125 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/client.py +107 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/protocol.py +124 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/registry.py +112 -0
- fableforge_agent-0.18.2/plugins/google_meet/node/server.py +200 -0
- fableforge_agent-0.18.2/plugins/google_meet/plugin.yaml +16 -0
- fableforge_agent-0.18.2/plugins/google_meet/process_manager.py +323 -0
- fableforge_agent-0.18.2/plugins/google_meet/realtime/__init__.py +10 -0
- fableforge_agent-0.18.2/plugins/google_meet/realtime/openai_client.py +332 -0
- fableforge_agent-0.18.2/plugins/google_meet/tools.py +348 -0
- fableforge_agent-0.18.2/plugins/image_gen/fal/__init__.py +211 -0
- fableforge_agent-0.18.2/plugins/image_gen/fal/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/image_gen/krea/__init__.py +743 -0
- fableforge_agent-0.18.2/plugins/image_gen/krea/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/image_gen/openai/__init__.py +417 -0
- fableforge_agent-0.18.2/plugins/image_gen/openai/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/image_gen/openai-codex/__init__.py +596 -0
- fableforge_agent-0.18.2/plugins/image_gen/openai-codex/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/image_gen/openrouter/__init__.py +526 -0
- fableforge_agent-0.18.2/plugins/image_gen/openrouter/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/image_gen/xai/__init__.py +494 -0
- fableforge_agent-0.18.2/plugins/image_gen/xai/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/kanban/dashboard/manifest.json +14 -0
- fableforge_agent-0.18.2/plugins/kanban/dashboard/plugin_api.py +2454 -0
- fableforge_agent-0.18.2/plugins/memory/__init__.py +450 -0
- fableforge_agent-0.18.2/plugins/memory/byterover/__init__.py +449 -0
- fableforge_agent-0.18.2/plugins/memory/byterover/plugin.yaml +9 -0
- fableforge_agent-0.18.2/plugins/memory/hindsight/__init__.py +1968 -0
- fableforge_agent-0.18.2/plugins/memory/hindsight/plugin.yaml +8 -0
- fableforge_agent-0.18.2/plugins/memory/holographic/__init__.py +419 -0
- fableforge_agent-0.18.2/plugins/memory/holographic/holographic.py +203 -0
- fableforge_agent-0.18.2/plugins/memory/holographic/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/memory/holographic/retrieval.py +654 -0
- fableforge_agent-0.18.2/plugins/memory/holographic/store.py +585 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/__init__.py +1432 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/cli.py +1864 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/client.py +920 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/oauth.py +371 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/oauth_flow.py +431 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/memory/honcho/session.py +1344 -0
- fableforge_agent-0.18.2/plugins/memory/mem0/__init__.py +627 -0
- fableforge_agent-0.18.2/plugins/memory/mem0/_backend.py +298 -0
- fableforge_agent-0.18.2/plugins/memory/mem0/_oss_providers.py +84 -0
- fableforge_agent-0.18.2/plugins/memory/mem0/_setup.py +981 -0
- fableforge_agent-0.18.2/plugins/memory/mem0/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/memory/openviking/__init__.py +3725 -0
- fableforge_agent-0.18.2/plugins/memory/openviking/plugin.yaml +8 -0
- fableforge_agent-0.18.2/plugins/memory/retaindb/__init__.py +771 -0
- fableforge_agent-0.18.2/plugins/memory/retaindb/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/memory/supermemory/__init__.py +1021 -0
- fableforge_agent-0.18.2/plugins/memory/supermemory/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/alibaba/__init__.py +13 -0
- fableforge_agent-0.18.2/plugins/model-providers/alibaba/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
- fableforge_agent-0.18.2/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/anthropic/__init__.py +53 -0
- fableforge_agent-0.18.2/plugins/model-providers/anthropic/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/arcee/__init__.py +13 -0
- fableforge_agent-0.18.2/plugins/model-providers/arcee/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/azure-foundry/__init__.py +21 -0
- fableforge_agent-0.18.2/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/bedrock/__init__.py +30 -0
- fableforge_agent-0.18.2/plugins/model-providers/bedrock/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/copilot/__init__.py +58 -0
- fableforge_agent-0.18.2/plugins/model-providers/copilot/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/copilot-acp/__init__.py +35 -0
- fableforge_agent-0.18.2/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/custom/__init__.py +94 -0
- fableforge_agent-0.18.2/plugins/model-providers/custom/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/deepseek/__init__.py +100 -0
- fableforge_agent-0.18.2/plugins/model-providers/deepseek/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/gemini/__init__.py +61 -0
- fableforge_agent-0.18.2/plugins/model-providers/gemini/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/gmi/__init__.py +31 -0
- fableforge_agent-0.18.2/plugins/model-providers/gmi/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/huggingface/__init__.py +20 -0
- fableforge_agent-0.18.2/plugins/model-providers/huggingface/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/kilocode/__init__.py +14 -0
- fableforge_agent-0.18.2/plugins/model-providers/kilocode/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/kimi-coding/__init__.py +80 -0
- fableforge_agent-0.18.2/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/minimax/__init__.py +97 -0
- fableforge_agent-0.18.2/plugins/model-providers/minimax/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/nous/__init__.py +54 -0
- fableforge_agent-0.18.2/plugins/model-providers/nous/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/novita/__init__.py +27 -0
- fableforge_agent-0.18.2/plugins/model-providers/novita/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/nvidia/__init__.py +21 -0
- fableforge_agent-0.18.2/plugins/model-providers/nvidia/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/ollama-cloud/__init__.py +73 -0
- fableforge_agent-0.18.2/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/openai-codex/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/model-providers/openai-codex/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/opencode-zen/__init__.py +147 -0
- fableforge_agent-0.18.2/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/openrouter/__init__.py +188 -0
- fableforge_agent-0.18.2/plugins/model-providers/openrouter/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/qwen-oauth/__init__.py +82 -0
- fableforge_agent-0.18.2/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/stepfun/__init__.py +14 -0
- fableforge_agent-0.18.2/plugins/model-providers/stepfun/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/vertex/__init__.py +75 -0
- fableforge_agent-0.18.2/plugins/model-providers/vertex/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/xai/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/model-providers/xai/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/xiaomi/__init__.py +16 -0
- fableforge_agent-0.18.2/plugins/model-providers/xiaomi/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/model-providers/zai/__init__.py +127 -0
- fableforge_agent-0.18.2/plugins/model-providers/zai/plugin.yaml +5 -0
- fableforge_agent-0.18.2/plugins/observability/langfuse/__init__.py +1137 -0
- fableforge_agent-0.18.2/plugins/observability/langfuse/plugin.yaml +14 -0
- fableforge_agent-0.18.2/plugins/observability/nemo_relay/__init__.py +962 -0
- fableforge_agent-0.18.2/plugins/observability/nemo_relay/plugin.yaml +20 -0
- fableforge_agent-0.18.2/plugins/platforms/dingtalk/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/dingtalk/adapter.py +1707 -0
- fableforge_agent-0.18.2/plugins/platforms/dingtalk/plugin.yaml +39 -0
- fableforge_agent-0.18.2/plugins/platforms/discord/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/discord/adapter.py +8381 -0
- fableforge_agent-0.18.2/plugins/platforms/discord/plugin.yaml +34 -0
- fableforge_agent-0.18.2/plugins/platforms/discord/voice_mixer.py +379 -0
- fableforge_agent-0.18.2/plugins/platforms/email/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/email/adapter.py +1273 -0
- fableforge_agent-0.18.2/plugins/platforms/email/plugin.yaml +39 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/adapter.py +5662 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/feishu_comment.py +1382 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/feishu_comment_rules.py +429 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/feishu_meeting_invite.py +212 -0
- fableforge_agent-0.18.2/plugins/platforms/feishu/plugin.yaml +44 -0
- fableforge_agent-0.18.2/plugins/platforms/google_chat/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/google_chat/adapter.py +3348 -0
- fableforge_agent-0.18.2/plugins/platforms/google_chat/oauth.py +668 -0
- fableforge_agent-0.18.2/plugins/platforms/google_chat/plugin.yaml +39 -0
- fableforge_agent-0.18.2/plugins/platforms/homeassistant/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/homeassistant/adapter.py +577 -0
- fableforge_agent-0.18.2/plugins/platforms/homeassistant/plugin.yaml +22 -0
- fableforge_agent-0.18.2/plugins/platforms/irc/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/irc/adapter.py +971 -0
- fableforge_agent-0.18.2/plugins/platforms/irc/plugin.yaml +54 -0
- fableforge_agent-0.18.2/plugins/platforms/line/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/line/adapter.py +1652 -0
- fableforge_agent-0.18.2/plugins/platforms/line/plugin.yaml +65 -0
- fableforge_agent-0.18.2/plugins/platforms/matrix/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/matrix/adapter.py +4613 -0
- fableforge_agent-0.18.2/plugins/platforms/matrix/plugin.yaml +41 -0
- fableforge_agent-0.18.2/plugins/platforms/mattermost/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/mattermost/adapter.py +1281 -0
- fableforge_agent-0.18.2/plugins/platforms/mattermost/plugin.yaml +49 -0
- fableforge_agent-0.18.2/plugins/platforms/ntfy/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/ntfy/adapter.py +593 -0
- fableforge_agent-0.18.2/plugins/platforms/ntfy/plugin.yaml +56 -0
- fableforge_agent-0.18.2/plugins/platforms/photon/__init__.py +4 -0
- fableforge_agent-0.18.2/plugins/platforms/photon/adapter.py +1795 -0
- fableforge_agent-0.18.2/plugins/platforms/photon/auth.py +1046 -0
- fableforge_agent-0.18.2/plugins/platforms/photon/cli.py +440 -0
- fableforge_agent-0.18.2/plugins/platforms/photon/plugin.yaml +88 -0
- fableforge_agent-0.18.2/plugins/platforms/raft/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/raft/adapter.py +850 -0
- fableforge_agent-0.18.2/plugins/platforms/raft/plugin.yaml +19 -0
- fableforge_agent-0.18.2/plugins/platforms/simplex/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/simplex/adapter.py +1313 -0
- fableforge_agent-0.18.2/plugins/platforms/simplex/plugin.yaml +56 -0
- fableforge_agent-0.18.2/plugins/platforms/slack/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/slack/adapter.py +4574 -0
- fableforge_agent-0.18.2/plugins/platforms/slack/block_kit.py +512 -0
- fableforge_agent-0.18.2/plugins/platforms/slack/plugin.yaml +39 -0
- fableforge_agent-0.18.2/plugins/platforms/sms/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/sms/adapter.py +510 -0
- fableforge_agent-0.18.2/plugins/platforms/sms/plugin.yaml +32 -0
- fableforge_agent-0.18.2/plugins/platforms/teams/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/teams/adapter.py +1451 -0
- fableforge_agent-0.18.2/plugins/platforms/teams/plugin.yaml +48 -0
- fableforge_agent-0.18.2/plugins/platforms/telegram/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/telegram/adapter.py +8776 -0
- fableforge_agent-0.18.2/plugins/platforms/telegram/plugin.yaml +35 -0
- fableforge_agent-0.18.2/plugins/platforms/telegram/telegram_ids.py +51 -0
- fableforge_agent-0.18.2/plugins/platforms/telegram/telegram_network.py +259 -0
- fableforge_agent-0.18.2/plugins/platforms/wecom/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/wecom/adapter.py +1888 -0
- fableforge_agent-0.18.2/plugins/platforms/wecom/callback_adapter.py +438 -0
- fableforge_agent-0.18.2/plugins/platforms/wecom/plugin.yaml +52 -0
- fableforge_agent-0.18.2/plugins/platforms/wecom/wecom_crypto.py +142 -0
- fableforge_agent-0.18.2/plugins/platforms/whatsapp/__init__.py +3 -0
- fableforge_agent-0.18.2/plugins/platforms/whatsapp/adapter.py +1767 -0
- fableforge_agent-0.18.2/plugins/platforms/whatsapp/plugin.yaml +33 -0
- fableforge_agent-0.18.2/plugins/plugin_utils.py +135 -0
- fableforge_agent-0.18.2/plugins/security-guidance/__init__.py +259 -0
- fableforge_agent-0.18.2/plugins/security-guidance/patterns.py +368 -0
- fableforge_agent-0.18.2/plugins/security-guidance/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/spotify/__init__.py +66 -0
- fableforge_agent-0.18.2/plugins/spotify/client.py +435 -0
- fableforge_agent-0.18.2/plugins/spotify/plugin.yaml +13 -0
- fableforge_agent-0.18.2/plugins/spotify/tools.py +454 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/__init__.py +23 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/cli.py +461 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/meetings.py +333 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/models.py +350 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/pipeline.py +699 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/plugin.yaml +9 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/runtime.py +135 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/store.py +193 -0
- fableforge_agent-0.18.2/plugins/teams_pipeline/subscriptions.py +249 -0
- fableforge_agent-0.18.2/plugins/video_gen/fal/__init__.py +620 -0
- fableforge_agent-0.18.2/plugins/video_gen/fal/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/video_gen/xai/__init__.py +925 -0
- fableforge_agent-0.18.2/plugins/video_gen/xai/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/__init__.py +7 -0
- fableforge_agent-0.18.2/plugins/web/brave_free/__init__.py +14 -0
- fableforge_agent-0.18.2/plugins/web/brave_free/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/brave_free/provider.py +141 -0
- fableforge_agent-0.18.2/plugins/web/ddgs/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/web/ddgs/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/ddgs/provider.py +158 -0
- fableforge_agent-0.18.2/plugins/web/exa/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/web/exa/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/exa/provider.py +216 -0
- fableforge_agent-0.18.2/plugins/web/firecrawl/__init__.py +28 -0
- fableforge_agent-0.18.2/plugins/web/firecrawl/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/firecrawl/provider.py +617 -0
- fableforge_agent-0.18.2/plugins/web/parallel/__init__.py +16 -0
- fableforge_agent-0.18.2/plugins/web/parallel/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/parallel/provider.py +297 -0
- fableforge_agent-0.18.2/plugins/web/searxng/__init__.py +15 -0
- fableforge_agent-0.18.2/plugins/web/searxng/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/searxng/provider.py +153 -0
- fableforge_agent-0.18.2/plugins/web/tavily/__init__.py +10 -0
- fableforge_agent-0.18.2/plugins/web/tavily/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/tavily/provider.py +224 -0
- fableforge_agent-0.18.2/plugins/web/xai/__init__.py +14 -0
- fableforge_agent-0.18.2/plugins/web/xai/plugin.yaml +7 -0
- fableforge_agent-0.18.2/plugins/web/xai/provider.py +557 -0
- fableforge_agent-0.18.2/providers/__init__.py +191 -0
- fableforge_agent-0.18.2/providers/base.py +217 -0
- fableforge_agent-0.18.2/pyproject.toml +399 -0
- fableforge_agent-0.18.2/run_agent.py +6016 -0
- fableforge_agent-0.18.2/setup.py +89 -0
- fableforge_agent-0.18.2/skills/creative/architecture-diagram/templates/template.html +319 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/animatediff_video.json +64 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/flux_dev_txt2img.json +78 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/sd15_txt2img.json +49 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/sdxl_img2img.json +54 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/sdxl_inpaint.json +59 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/sdxl_txt2img.json +49 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/upscale_4x.json +27 -0
- fableforge_agent-0.18.2/skills/creative/comfyui/workflows/wan_video_t2v.json +69 -0
- fableforge_agent-0.18.2/skills/creative/humanizer/LICENSE +21 -0
- fableforge_agent-0.18.2/skills/creative/p5js/templates/viewer.html +395 -0
- fableforge_agent-0.18.2/skills/creative/pretext/templates/donut-orbit.html +1468 -0
- fableforge_agent-0.18.2/skills/creative/pretext/templates/hello-orb-flow.html +95 -0
- fableforge_agent-0.18.2/skills/index-cache/anthropics_skills_skills_.json +1 -0
- fableforge_agent-0.18.2/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
- fableforge_agent-0.18.2/skills/index-cache/lobehub_index.json +1 -0
- fableforge_agent-0.18.2/skills/index-cache/openai_skills_skills_.json +1 -0
- fableforge_agent-0.18.2/skills/productivity/powerpoint/LICENSE.txt +30 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
- fableforge_agent-0.18.2/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
- fableforge_agent-0.18.2/tools/__init__.py +25 -0
- fableforge_agent-0.18.2/tools/ansi_strip.py +44 -0
- fableforge_agent-0.18.2/tools/approval.py +3242 -0
- fableforge_agent-0.18.2/tools/async_delegation.py +604 -0
- fableforge_agent-0.18.2/tools/binary_extensions.py +42 -0
- fableforge_agent-0.18.2/tools/blueprints.py +325 -0
- fableforge_agent-0.18.2/tools/browser_camofox.py +949 -0
- fableforge_agent-0.18.2/tools/browser_camofox_state.py +47 -0
- fableforge_agent-0.18.2/tools/browser_cdp_tool.py +681 -0
- fableforge_agent-0.18.2/tools/browser_dialog_tool.py +148 -0
- fableforge_agent-0.18.2/tools/browser_supervisor.py +1513 -0
- fableforge_agent-0.18.2/tools/browser_tool.py +4803 -0
- fableforge_agent-0.18.2/tools/budget_config.py +114 -0
- fableforge_agent-0.18.2/tools/checkpoint_manager.py +1675 -0
- fableforge_agent-0.18.2/tools/clarify_gateway.py +315 -0
- fableforge_agent-0.18.2/tools/clarify_tool.py +191 -0
- fableforge_agent-0.18.2/tools/close_terminal_tool.py +71 -0
- fableforge_agent-0.18.2/tools/code_execution_tool.py +1910 -0
- fableforge_agent-0.18.2/tools/computer_use/__init__.py +43 -0
- fableforge_agent-0.18.2/tools/computer_use/backend.py +171 -0
- fableforge_agent-0.18.2/tools/computer_use/cua_backend.py +2102 -0
- fableforge_agent-0.18.2/tools/computer_use/doctor.py +288 -0
- fableforge_agent-0.18.2/tools/computer_use/permissions.py +200 -0
- fableforge_agent-0.18.2/tools/computer_use/schema.py +222 -0
- fableforge_agent-0.18.2/tools/computer_use/tool.py +917 -0
- fableforge_agent-0.18.2/tools/computer_use/vision_routing.py +204 -0
- fableforge_agent-0.18.2/tools/computer_use_tool.py +39 -0
- fableforge_agent-0.18.2/tools/credential_files.py +481 -0
- fableforge_agent-0.18.2/tools/cronjob_tools.py +1147 -0
- fableforge_agent-0.18.2/tools/daemon_pool.py +64 -0
- fableforge_agent-0.18.2/tools/debug_helpers.py +105 -0
- fableforge_agent-0.18.2/tools/delegate_tool.py +3481 -0
- fableforge_agent-0.18.2/tools/discord_tool.py +1119 -0
- fableforge_agent-0.18.2/tools/env_passthrough.py +184 -0
- fableforge_agent-0.18.2/tools/env_probe.py +275 -0
- fableforge_agent-0.18.2/tools/environments/__init__.py +14 -0
- fableforge_agent-0.18.2/tools/environments/base.py +959 -0
- fableforge_agent-0.18.2/tools/environments/daytona.py +270 -0
- fableforge_agent-0.18.2/tools/environments/docker.py +1460 -0
- fableforge_agent-0.18.2/tools/environments/file_sync.py +465 -0
- fableforge_agent-0.18.2/tools/environments/local.py +1207 -0
- fableforge_agent-0.18.2/tools/environments/managed_modal.py +282 -0
- fableforge_agent-0.18.2/tools/environments/modal.py +478 -0
- fableforge_agent-0.18.2/tools/environments/modal_utils.py +204 -0
- fableforge_agent-0.18.2/tools/environments/singularity.py +265 -0
- fableforge_agent-0.18.2/tools/environments/ssh.py +375 -0
- fableforge_agent-0.18.2/tools/fal_common.py +163 -0
- fableforge_agent-0.18.2/tools/feishu_doc_tool.py +138 -0
- fableforge_agent-0.18.2/tools/feishu_drive_tool.py +431 -0
- fableforge_agent-0.18.2/tools/file_operations.py +2497 -0
- fableforge_agent-0.18.2/tools/file_state.py +332 -0
- fableforge_agent-0.18.2/tools/file_tools.py +2173 -0
- fableforge_agent-0.18.2/tools/fuzzy_match.py +950 -0
- fableforge_agent-0.18.2/tools/homeassistant_tool.py +513 -0
- fableforge_agent-0.18.2/tools/hook_output_spill.py +236 -0
- fableforge_agent-0.18.2/tools/image_generation_tool.py +1680 -0
- fableforge_agent-0.18.2/tools/image_source.py +338 -0
- fableforge_agent-0.18.2/tools/interrupt.py +113 -0
- fableforge_agent-0.18.2/tools/kanban_tools.py +1672 -0
- fableforge_agent-0.18.2/tools/lazy_deps.py +970 -0
- fableforge_agent-0.18.2/tools/managed_tool_gateway.py +192 -0
- fableforge_agent-0.18.2/tools/mcp_oauth.py +948 -0
- fableforge_agent-0.18.2/tools/mcp_oauth_manager.py +720 -0
- fableforge_agent-0.18.2/tools/mcp_stdio_watchdog.py +184 -0
- fableforge_agent-0.18.2/tools/mcp_tool.py +5627 -0
- fableforge_agent-0.18.2/tools/memory_tool.py +1152 -0
- fableforge_agent-0.18.2/tools/microsoft_graph_auth.py +245 -0
- fableforge_agent-0.18.2/tools/microsoft_graph_client.py +408 -0
- fableforge_agent-0.18.2/tools/neutts_synth.py +104 -0
- fableforge_agent-0.18.2/tools/openrouter_client.py +33 -0
- fableforge_agent-0.18.2/tools/osv_check.py +169 -0
- fableforge_agent-0.18.2/tools/patch_parser.py +622 -0
- fableforge_agent-0.18.2/tools/path_security.py +43 -0
- fableforge_agent-0.18.2/tools/process_registry.py +2257 -0
- fableforge_agent-0.18.2/tools/project_tools.py +189 -0
- fableforge_agent-0.18.2/tools/read_extract.py +248 -0
- fableforge_agent-0.18.2/tools/read_terminal_tool.py +94 -0
- fableforge_agent-0.18.2/tools/registry.py +766 -0
- fableforge_agent-0.18.2/tools/schema_sanitizer.py +501 -0
- fableforge_agent-0.18.2/tools/send_message_tool.py +1796 -0
- fableforge_agent-0.18.2/tools/session_search_tool.py +921 -0
- fableforge_agent-0.18.2/tools/skill_manager_tool.py +1559 -0
- fableforge_agent-0.18.2/tools/skill_provenance.py +78 -0
- fableforge_agent-0.18.2/tools/skill_usage.py +947 -0
- fableforge_agent-0.18.2/tools/skills_ast_audit.py +133 -0
- fableforge_agent-0.18.2/tools/skills_guard.py +1086 -0
- fableforge_agent-0.18.2/tools/skills_hub.py +4109 -0
- fableforge_agent-0.18.2/tools/skills_sync.py +1182 -0
- fableforge_agent-0.18.2/tools/skills_tool.py +1681 -0
- fableforge_agent-0.18.2/tools/slash_confirm.py +167 -0
- fableforge_agent-0.18.2/tools/terminal_tool.py +3029 -0
- fableforge_agent-0.18.2/tools/thread_context.py +120 -0
- fableforge_agent-0.18.2/tools/threat_patterns.py +284 -0
- fableforge_agent-0.18.2/tools/tirith_security.py +871 -0
- fableforge_agent-0.18.2/tools/todo_tool.py +330 -0
- fableforge_agent-0.18.2/tools/tool_backend_helpers.py +182 -0
- fableforge_agent-0.18.2/tools/tool_output_limits.py +110 -0
- fableforge_agent-0.18.2/tools/tool_result_storage.py +254 -0
- fableforge_agent-0.18.2/tools/tool_search.py +735 -0
- fableforge_agent-0.18.2/tools/transcription_tools.py +1799 -0
- fableforge_agent-0.18.2/tools/tts_tool.py +2870 -0
- fableforge_agent-0.18.2/tools/url_safety.py +503 -0
- fableforge_agent-0.18.2/tools/video_generation_tool.py +585 -0
- fableforge_agent-0.18.2/tools/vision_tools.py +1897 -0
- fableforge_agent-0.18.2/tools/voice_mode.py +1218 -0
- fableforge_agent-0.18.2/tools/web_tools.py +1183 -0
- fableforge_agent-0.18.2/tools/website_policy.py +283 -0
- fableforge_agent-0.18.2/tools/write_approval.py +493 -0
- fableforge_agent-0.18.2/tools/x_search_tool.py +525 -0
- fableforge_agent-0.18.2/tools/xai_http.py +277 -0
- fableforge_agent-0.18.2/tools/xai_video_tools.py +209 -0
- fableforge_agent-0.18.2/tools/yuanbao_tools.py +737 -0
- fableforge_agent-0.18.2/toolset_distributions.py +358 -0
- fableforge_agent-0.18.2/toolsets.py +971 -0
- fableforge_agent-0.18.2/trajectory_compressor.py +1574 -0
- fableforge_agent-0.18.2/trust/__init__.py +25 -0
- fableforge_agent-0.18.2/trust/core.py +183 -0
- fableforge_agent-0.18.2/utils.py +546 -0
- fableforge_agent-0.1.0/PKG-INFO +0 -109
- fableforge_agent-0.1.0/README.md +0 -90
- fableforge_agent-0.1.0/pyproject.toml +0 -36
- fableforge_agent-0.1.0/src/fableforge_agent/__init__.py +0 -63
- fableforge_agent-0.1.0/src/fableforge_agent/cli.py +0 -184
- fableforge_agent-0.1.0/src/fableforge_agent/control_plane/__init__.py +0 -37
- fableforge_agent-0.1.0/src/fableforge_agent/control_plane/auth.py +0 -152
- fableforge_agent-0.1.0/src/fableforge_agent/control_plane/core.py +0 -303
- fableforge_agent-0.1.0/src/fableforge_agent/observability/__init__.py +0 -29
- fableforge_agent-0.1.0/src/fableforge_agent/observability/core.py +0 -229
- fableforge_agent-0.1.0/src/fableforge_agent/trust/__init__.py +0 -27
- fableforge_agent-0.1.0/src/fableforge_agent/trust/core.py +0 -190
- fableforge_agent-0.1.0/src/fableforge_agent.egg-info/PKG-INFO +0 -109
- fableforge_agent-0.1.0/src/fableforge_agent.egg-info/SOURCES.txt +0 -17
- fableforge_agent-0.1.0/src/fableforge_agent.egg-info/entry_points.txt +0 -2
- fableforge_agent-0.1.0/src/fableforge_agent.egg-info/requires.txt +0 -8
- fableforge_agent-0.1.0/src/fableforge_agent.egg-info/top_level.txt +0 -1
- {fableforge_agent-0.1.0/src → fableforge_agent-0.18.2}/fableforge_agent.egg-info/dependency_links.txt +0 -0
- {fableforge_agent-0.1.0 → fableforge_agent-0.18.2}/setup.cfg +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Nous Research
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
graft skills
|
|
2
|
+
graft optional-skills
|
|
3
|
+
graft optional-mcps
|
|
4
|
+
graft locales
|
|
5
|
+
# Bundled plugin manifests (plugin.yaml / plugin.yml). Without these the
|
|
6
|
+
# PluginManager scan (hermes_cli/plugins.py) finds zero plugins on installs
|
|
7
|
+
# built from the sdist (e.g. Homebrew, downstream packagers). package-data
|
|
8
|
+
# below covers the wheel; this covers the sdist. See #34034 / #28149.
|
|
9
|
+
recursive-include plugins plugin.yaml plugin.yml
|
|
10
|
+
# Gateway assets include images plus YAML catalogs such as status_phrases.yaml.
|
|
11
|
+
recursive-include gateway/assets *
|
|
12
|
+
global-exclude __pycache__
|
|
13
|
+
global-exclude *.py[cod]
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fableforge-agent
|
|
3
|
+
Version: 0.18.2
|
|
4
|
+
Summary: FableForge Agent — a fork of Hermes Agent (NousResearch). A self-improving AI agent that creates skills from experience, improves them during use, and runs anywhere
|
|
5
|
+
Author: KingLabsA
|
|
6
|
+
Author-email: KingLabsA <kinglabsa@users.noreply.github.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/KingLabsA/llm-training-platform
|
|
9
|
+
Project-URL: Source, https://github.com/KingLabsA/llm-training-platform
|
|
10
|
+
Requires-Python: <3.14,>=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: openai==2.24.0
|
|
14
|
+
Requires-Dist: certifi==2026.5.20
|
|
15
|
+
Requires-Dist: python-dotenv==1.2.2
|
|
16
|
+
Requires-Dist: fire==0.7.1
|
|
17
|
+
Requires-Dist: httpx[socks]==0.28.1
|
|
18
|
+
Requires-Dist: rich==14.3.3
|
|
19
|
+
Requires-Dist: tenacity==9.1.4
|
|
20
|
+
Requires-Dist: pyyaml==6.0.3
|
|
21
|
+
Requires-Dist: ruamel.yaml==0.18.17
|
|
22
|
+
Requires-Dist: requests==2.33.0
|
|
23
|
+
Requires-Dist: jinja2==3.1.6
|
|
24
|
+
Requires-Dist: pydantic==2.13.4
|
|
25
|
+
Requires-Dist: prompt_toolkit==3.0.52
|
|
26
|
+
Requires-Dist: croniter==6.0.0
|
|
27
|
+
Requires-Dist: packaging==26.0
|
|
28
|
+
Requires-Dist: Markdown==3.10.2
|
|
29
|
+
Requires-Dist: PyJWT[crypto]==2.13.0
|
|
30
|
+
Requires-Dist: urllib3<3,>=2.7.0
|
|
31
|
+
Requires-Dist: cryptography==46.0.7
|
|
32
|
+
Requires-Dist: tzdata==2025.3; sys_platform == "win32"
|
|
33
|
+
Requires-Dist: psutil==7.2.2
|
|
34
|
+
Requires-Dist: websockets==15.0.1
|
|
35
|
+
Requires-Dist: pathspec==1.1.1
|
|
36
|
+
Requires-Dist: fastapi<1,>=0.104.0
|
|
37
|
+
Requires-Dist: uvicorn[standard]<1,>=0.24.0
|
|
38
|
+
Requires-Dist: python-multipart<1,>=0.0.9
|
|
39
|
+
Requires-Dist: ptyprocess<1,>=0.7.0; sys_platform != "win32"
|
|
40
|
+
Requires-Dist: pywinpty<3,>=2.0.0; sys_platform == "win32"
|
|
41
|
+
Requires-Dist: Pillow==12.2.0
|
|
42
|
+
Requires-Dist: concurrent-log-handler==0.9.29; sys_platform == "win32"
|
|
43
|
+
Provides-Extra: anthropic
|
|
44
|
+
Requires-Dist: anthropic==0.87.0; extra == "anthropic"
|
|
45
|
+
Provides-Extra: exa
|
|
46
|
+
Requires-Dist: exa-py==2.10.2; extra == "exa"
|
|
47
|
+
Provides-Extra: firecrawl
|
|
48
|
+
Requires-Dist: firecrawl-py==4.17.0; extra == "firecrawl"
|
|
49
|
+
Provides-Extra: parallel-web
|
|
50
|
+
Requires-Dist: parallel-web==0.4.2; extra == "parallel-web"
|
|
51
|
+
Provides-Extra: fal
|
|
52
|
+
Requires-Dist: fal-client==0.13.1; extra == "fal"
|
|
53
|
+
Provides-Extra: edge-tts
|
|
54
|
+
Requires-Dist: edge-tts==7.2.7; extra == "edge-tts"
|
|
55
|
+
Provides-Extra: modal
|
|
56
|
+
Requires-Dist: modal==1.3.4; extra == "modal"
|
|
57
|
+
Provides-Extra: daytona
|
|
58
|
+
Requires-Dist: daytona==0.155.0; extra == "daytona"
|
|
59
|
+
Provides-Extra: hindsight
|
|
60
|
+
Requires-Dist: hindsight-client==0.6.1; extra == "hindsight"
|
|
61
|
+
Provides-Extra: dev
|
|
62
|
+
Requires-Dist: debugpy==1.8.20; extra == "dev"
|
|
63
|
+
Requires-Dist: pytest==9.0.2; extra == "dev"
|
|
64
|
+
Requires-Dist: pytest-asyncio==1.3.0; extra == "dev"
|
|
65
|
+
Requires-Dist: mcp==1.26.0; extra == "dev"
|
|
66
|
+
Requires-Dist: starlette==1.0.1; extra == "dev"
|
|
67
|
+
Requires-Dist: ty==0.0.21; extra == "dev"
|
|
68
|
+
Requires-Dist: ruff==0.15.10; extra == "dev"
|
|
69
|
+
Requires-Dist: setuptools==81.0.0; extra == "dev"
|
|
70
|
+
Provides-Extra: messaging
|
|
71
|
+
Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "messaging"
|
|
72
|
+
Requires-Dist: discord.py[voice]==2.7.1; extra == "messaging"
|
|
73
|
+
Requires-Dist: aiohttp==3.14.1; extra == "messaging"
|
|
74
|
+
Requires-Dist: brotlicffi==1.2.0.1; extra == "messaging"
|
|
75
|
+
Requires-Dist: slack-bolt==1.27.0; extra == "messaging"
|
|
76
|
+
Requires-Dist: slack-sdk==3.40.1; extra == "messaging"
|
|
77
|
+
Requires-Dist: qrcode==7.4.2; extra == "messaging"
|
|
78
|
+
Provides-Extra: cron
|
|
79
|
+
Provides-Extra: slack
|
|
80
|
+
Requires-Dist: slack-bolt==1.27.0; extra == "slack"
|
|
81
|
+
Requires-Dist: slack-sdk==3.40.1; extra == "slack"
|
|
82
|
+
Requires-Dist: aiohttp==3.14.1; extra == "slack"
|
|
83
|
+
Provides-Extra: matrix
|
|
84
|
+
Requires-Dist: mautrix[encryption]==0.21.0; extra == "matrix"
|
|
85
|
+
Requires-Dist: aiosqlite==0.22.1; extra == "matrix"
|
|
86
|
+
Requires-Dist: asyncpg==0.31.0; extra == "matrix"
|
|
87
|
+
Requires-Dist: aiohttp-socks==0.11.0; extra == "matrix"
|
|
88
|
+
Requires-Dist: aiohttp==3.14.1; extra == "matrix"
|
|
89
|
+
Provides-Extra: wecom
|
|
90
|
+
Requires-Dist: defusedxml==0.7.1; extra == "wecom"
|
|
91
|
+
Provides-Extra: cli
|
|
92
|
+
Requires-Dist: simple-term-menu==1.6.6; extra == "cli"
|
|
93
|
+
Provides-Extra: tts-premium
|
|
94
|
+
Requires-Dist: elevenlabs==1.59.0; extra == "tts-premium"
|
|
95
|
+
Provides-Extra: voice
|
|
96
|
+
Requires-Dist: faster-whisper==1.2.1; extra == "voice"
|
|
97
|
+
Requires-Dist: sounddevice==0.5.5; extra == "voice"
|
|
98
|
+
Requires-Dist: numpy==2.4.3; extra == "voice"
|
|
99
|
+
Provides-Extra: pty
|
|
100
|
+
Provides-Extra: honcho
|
|
101
|
+
Requires-Dist: honcho-ai==2.0.1; extra == "honcho"
|
|
102
|
+
Provides-Extra: supermemory
|
|
103
|
+
Requires-Dist: supermemory==3.50.0; extra == "supermemory"
|
|
104
|
+
Provides-Extra: mem0
|
|
105
|
+
Requires-Dist: mem0ai==2.0.10; extra == "mem0"
|
|
106
|
+
Provides-Extra: vision
|
|
107
|
+
Provides-Extra: mcp
|
|
108
|
+
Requires-Dist: mcp==1.26.0; extra == "mcp"
|
|
109
|
+
Requires-Dist: starlette==1.0.1; extra == "mcp"
|
|
110
|
+
Provides-Extra: nemo-relay
|
|
111
|
+
Requires-Dist: nemo-relay==0.3; extra == "nemo-relay"
|
|
112
|
+
Provides-Extra: homeassistant
|
|
113
|
+
Requires-Dist: aiohttp==3.14.1; extra == "homeassistant"
|
|
114
|
+
Provides-Extra: sms
|
|
115
|
+
Requires-Dist: aiohttp==3.14.1; extra == "sms"
|
|
116
|
+
Provides-Extra: teams
|
|
117
|
+
Requires-Dist: microsoft-teams-apps==2.0.13.4; extra == "teams"
|
|
118
|
+
Requires-Dist: aiohttp==3.14.1; extra == "teams"
|
|
119
|
+
Provides-Extra: computer-use
|
|
120
|
+
Requires-Dist: mcp==1.26.0; extra == "computer-use"
|
|
121
|
+
Requires-Dist: starlette==1.0.1; extra == "computer-use"
|
|
122
|
+
Provides-Extra: acp
|
|
123
|
+
Requires-Dist: agent-client-protocol==0.9.0; extra == "acp"
|
|
124
|
+
Provides-Extra: mistral
|
|
125
|
+
Requires-Dist: mistralai==2.4.8; extra == "mistral"
|
|
126
|
+
Provides-Extra: bedrock
|
|
127
|
+
Requires-Dist: boto3==1.42.89; extra == "bedrock"
|
|
128
|
+
Provides-Extra: vertex
|
|
129
|
+
Requires-Dist: google-auth==2.55.1; extra == "vertex"
|
|
130
|
+
Provides-Extra: azure-identity
|
|
131
|
+
Requires-Dist: azure-identity==1.25.3; extra == "azure-identity"
|
|
132
|
+
Provides-Extra: termux
|
|
133
|
+
Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "termux"
|
|
134
|
+
Requires-Dist: fableforge-agent[cron]; extra == "termux"
|
|
135
|
+
Requires-Dist: fableforge-agent[cli]; extra == "termux"
|
|
136
|
+
Requires-Dist: fableforge-agent[pty]; extra == "termux"
|
|
137
|
+
Requires-Dist: fableforge-agent[mcp]; extra == "termux"
|
|
138
|
+
Requires-Dist: fableforge-agent[honcho]; extra == "termux"
|
|
139
|
+
Requires-Dist: fableforge-agent[acp]; extra == "termux"
|
|
140
|
+
Provides-Extra: termux-all
|
|
141
|
+
Requires-Dist: fableforge-agent[termux]; extra == "termux-all"
|
|
142
|
+
Requires-Dist: fableforge-agent[google]; extra == "termux-all"
|
|
143
|
+
Requires-Dist: fableforge-agent[homeassistant]; extra == "termux-all"
|
|
144
|
+
Requires-Dist: fableforge-agent[sms]; extra == "termux-all"
|
|
145
|
+
Requires-Dist: fableforge-agent[web]; extra == "termux-all"
|
|
146
|
+
Provides-Extra: dingtalk
|
|
147
|
+
Requires-Dist: dingtalk-stream==0.24.3; extra == "dingtalk"
|
|
148
|
+
Requires-Dist: alibabacloud-dingtalk==2.2.42; extra == "dingtalk"
|
|
149
|
+
Requires-Dist: qrcode==7.4.2; extra == "dingtalk"
|
|
150
|
+
Provides-Extra: feishu
|
|
151
|
+
Requires-Dist: lark-oapi==1.5.3; extra == "feishu"
|
|
152
|
+
Requires-Dist: qrcode==7.4.2; extra == "feishu"
|
|
153
|
+
Provides-Extra: google
|
|
154
|
+
Requires-Dist: google-api-python-client==2.194.0; extra == "google"
|
|
155
|
+
Requires-Dist: google-auth-oauthlib==1.3.1; extra == "google"
|
|
156
|
+
Requires-Dist: google-auth-httplib2==0.3.1; extra == "google"
|
|
157
|
+
Provides-Extra: youtube
|
|
158
|
+
Requires-Dist: youtube-transcript-api==1.2.4; extra == "youtube"
|
|
159
|
+
Provides-Extra: web
|
|
160
|
+
Requires-Dist: fastapi==0.133.1; extra == "web"
|
|
161
|
+
Requires-Dist: uvicorn[standard]==0.41.0; extra == "web"
|
|
162
|
+
Requires-Dist: starlette==1.0.1; extra == "web"
|
|
163
|
+
Requires-Dist: python-multipart==0.0.27; extra == "web"
|
|
164
|
+
Provides-Extra: all
|
|
165
|
+
Requires-Dist: fableforge-agent[cron]; extra == "all"
|
|
166
|
+
Requires-Dist: fableforge-agent[cli]; extra == "all"
|
|
167
|
+
Requires-Dist: fableforge-agent[pty]; extra == "all"
|
|
168
|
+
Requires-Dist: fableforge-agent[mcp]; extra == "all"
|
|
169
|
+
Requires-Dist: fableforge-agent[homeassistant]; extra == "all"
|
|
170
|
+
Requires-Dist: fableforge-agent[sms]; extra == "all"
|
|
171
|
+
Requires-Dist: fableforge-agent[acp]; extra == "all"
|
|
172
|
+
Requires-Dist: fableforge-agent[google]; extra == "all"
|
|
173
|
+
Requires-Dist: fableforge-agent[web]; extra == "all"
|
|
174
|
+
Requires-Dist: fableforge-agent[youtube]; extra == "all"
|
|
175
|
+
Dynamic: author
|
|
176
|
+
Dynamic: license-file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""ACP (Agent Communication Protocol) adapter for fableforge-agent."""
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"""ACP auth helpers — detect and advertise FableForge authentication methods."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Any, Optional
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
TERMINAL_SETUP_AUTH_METHOD_ID = "fableforge-setup"
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def detect_provider() -> Optional[str]:
|
|
12
|
+
"""Resolve the active FableForge runtime provider, or None if unavailable.
|
|
13
|
+
|
|
14
|
+
Treats a ``Callable`` ``api_key`` (Azure Foundry Entra ID bearer
|
|
15
|
+
token provider — see :mod:`agent.azure_identity_adapter`) as a valid
|
|
16
|
+
credential. Without this, ACP sessions for Entra-configured Foundry
|
|
17
|
+
deployments silently default to ``"openrouter"`` and the ACP auth
|
|
18
|
+
handshake rejects the legitimate provider.
|
|
19
|
+
"""
|
|
20
|
+
try:
|
|
21
|
+
from fableforge_cli.runtime_provider import resolve_runtime_provider
|
|
22
|
+
runtime = resolve_runtime_provider()
|
|
23
|
+
api_key = runtime.get("api_key")
|
|
24
|
+
provider = runtime.get("provider")
|
|
25
|
+
if not isinstance(provider, str) or not provider.strip():
|
|
26
|
+
return None
|
|
27
|
+
is_string_key = isinstance(api_key, str) and api_key.strip()
|
|
28
|
+
is_callable_provider = callable(api_key) and not isinstance(api_key, str)
|
|
29
|
+
if is_string_key or is_callable_provider:
|
|
30
|
+
return provider.strip().lower()
|
|
31
|
+
except Exception:
|
|
32
|
+
return None
|
|
33
|
+
return None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def has_provider() -> bool:
|
|
37
|
+
"""Return True if FableForge can resolve any runtime provider credentials."""
|
|
38
|
+
return detect_provider() is not None
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def build_auth_methods() -> list[Any]:
|
|
42
|
+
"""Return registry-compatible ACP auth methods for FableForge.
|
|
43
|
+
|
|
44
|
+
The official ACP registry validates that agents advertise at least one
|
|
45
|
+
usable auth method during the initial handshake. A fresh Zed install may
|
|
46
|
+
not have FableForge provider credentials configured yet, so FableForge always
|
|
47
|
+
advertises a terminal setup method. When credentials are already present,
|
|
48
|
+
it also advertises the resolved provider as the default agent-managed
|
|
49
|
+
runtime credential method.
|
|
50
|
+
"""
|
|
51
|
+
from acp.schema import AuthMethodAgent, TerminalAuthMethod
|
|
52
|
+
|
|
53
|
+
methods: list[Any] = []
|
|
54
|
+
provider = detect_provider()
|
|
55
|
+
if provider:
|
|
56
|
+
methods.append(
|
|
57
|
+
AuthMethodAgent(
|
|
58
|
+
id=provider,
|
|
59
|
+
name=f"{provider} runtime credentials",
|
|
60
|
+
description=(
|
|
61
|
+
"Authenticate FableForge using the currently configured "
|
|
62
|
+
f"{provider} runtime credentials."
|
|
63
|
+
),
|
|
64
|
+
)
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
methods.append(
|
|
68
|
+
TerminalAuthMethod(
|
|
69
|
+
id=TERMINAL_SETUP_AUTH_METHOD_ID,
|
|
70
|
+
name="Configure FableForge provider",
|
|
71
|
+
description=(
|
|
72
|
+
"Open FableForge' interactive model/provider setup in a terminal. "
|
|
73
|
+
"Use this when FableForge has not been configured on this machine yet."
|
|
74
|
+
),
|
|
75
|
+
type="terminal",
|
|
76
|
+
args=["--setup"],
|
|
77
|
+
)
|
|
78
|
+
)
|
|
79
|
+
return methods
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
"""Pre-execution ACP edit approval helpers.
|
|
2
|
+
|
|
3
|
+
This module is intentionally isolated from the generic tool registry. ACP binds
|
|
4
|
+
an edit approval requester in a ContextVar for the duration of one ACP agent run;
|
|
5
|
+
CLI, gateway, and other sessions leave it unset and therefore bypass this guard.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
import asyncio
|
|
11
|
+
import json
|
|
12
|
+
import logging
|
|
13
|
+
import re
|
|
14
|
+
import tempfile
|
|
15
|
+
from concurrent.futures import TimeoutError as FutureTimeout
|
|
16
|
+
from contextvars import ContextVar, Token
|
|
17
|
+
from dataclasses import dataclass
|
|
18
|
+
from itertools import count
|
|
19
|
+
from pathlib import Path
|
|
20
|
+
from typing import Any, Callable
|
|
21
|
+
|
|
22
|
+
logger = logging.getLogger(__name__)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
@dataclass(frozen=True)
|
|
26
|
+
class EditProposal:
|
|
27
|
+
"""A proposed single-file edit that can be shown to an ACP client."""
|
|
28
|
+
|
|
29
|
+
tool_name: str
|
|
30
|
+
path: str
|
|
31
|
+
old_text: str | None
|
|
32
|
+
new_text: str
|
|
33
|
+
arguments: dict[str, Any]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
EditApprovalRequester = Callable[[EditProposal], bool]
|
|
37
|
+
|
|
38
|
+
_EDIT_APPROVAL_REQUESTER: ContextVar[EditApprovalRequester | None] = ContextVar(
|
|
39
|
+
"ACP_EDIT_APPROVAL_REQUESTER",
|
|
40
|
+
default=None,
|
|
41
|
+
)
|
|
42
|
+
_PERMISSION_REQUEST_IDS = count(1)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
SENSITIVE_AUTO_APPROVE_NAMES = {".env", ".env.local", ".env.production", "id_rsa", "id_ed25519"}
|
|
46
|
+
AUTO_APPROVE_ASK = "ask"
|
|
47
|
+
AUTO_APPROVE_WORKSPACE = "workspace_session"
|
|
48
|
+
AUTO_APPROVE_SESSION = "session"
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def set_edit_approval_requester(requester: EditApprovalRequester | None) -> Token:
|
|
52
|
+
"""Bind an ACP edit approval requester for the current context."""
|
|
53
|
+
|
|
54
|
+
return _EDIT_APPROVAL_REQUESTER.set(requester)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
def reset_edit_approval_requester(token: Token) -> None:
|
|
58
|
+
"""Restore a previous edit approval requester binding."""
|
|
59
|
+
|
|
60
|
+
_EDIT_APPROVAL_REQUESTER.reset(token)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
def clear_edit_approval_requester() -> None:
|
|
64
|
+
"""Clear the current requester; primarily used by tests."""
|
|
65
|
+
|
|
66
|
+
_EDIT_APPROVAL_REQUESTER.set(None)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def get_edit_approval_requester() -> EditApprovalRequester | None:
|
|
70
|
+
return _EDIT_APPROVAL_REQUESTER.get()
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _read_text_if_exists(path: str) -> str | None:
|
|
74
|
+
p = Path(path).expanduser()
|
|
75
|
+
if not p.exists():
|
|
76
|
+
return None
|
|
77
|
+
if not p.is_file():
|
|
78
|
+
raise OSError(f"Cannot edit non-file path: {path}")
|
|
79
|
+
return p.read_text(encoding="utf-8", errors="replace")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
def _proposal_for_write_file(arguments: dict[str, Any]) -> EditProposal:
|
|
83
|
+
path = str(arguments.get("path") or "")
|
|
84
|
+
if not path:
|
|
85
|
+
raise ValueError("path required")
|
|
86
|
+
content = arguments.get("content")
|
|
87
|
+
if content is None:
|
|
88
|
+
raise ValueError("content required")
|
|
89
|
+
return EditProposal(
|
|
90
|
+
tool_name="write_file",
|
|
91
|
+
path=path,
|
|
92
|
+
old_text=_read_text_if_exists(path),
|
|
93
|
+
new_text=str(content),
|
|
94
|
+
arguments=dict(arguments),
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def _proposal_for_patch_replace(arguments: dict[str, Any]) -> EditProposal:
|
|
99
|
+
path = str(arguments.get("path") or "")
|
|
100
|
+
if not path:
|
|
101
|
+
raise ValueError("path required")
|
|
102
|
+
old_string = arguments.get("old_string")
|
|
103
|
+
new_string = arguments.get("new_string")
|
|
104
|
+
if old_string is None or new_string is None:
|
|
105
|
+
raise ValueError("old_string and new_string required")
|
|
106
|
+
|
|
107
|
+
old_text = _read_text_if_exists(path)
|
|
108
|
+
if old_text is None:
|
|
109
|
+
raise ValueError(f"Failed to read file: {path}")
|
|
110
|
+
|
|
111
|
+
from tools.fuzzy_match import fuzzy_find_and_replace
|
|
112
|
+
|
|
113
|
+
new_text, match_count, _strategy, error = fuzzy_find_and_replace(
|
|
114
|
+
old_text,
|
|
115
|
+
str(old_string),
|
|
116
|
+
str(new_string),
|
|
117
|
+
bool(arguments.get("replace_all", False)),
|
|
118
|
+
)
|
|
119
|
+
if error or match_count == 0:
|
|
120
|
+
raise ValueError(error or f"Could not find match for old_string in {path}")
|
|
121
|
+
|
|
122
|
+
return EditProposal(
|
|
123
|
+
tool_name="patch",
|
|
124
|
+
path=path,
|
|
125
|
+
old_text=old_text,
|
|
126
|
+
new_text=new_text,
|
|
127
|
+
arguments=dict(arguments),
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def _extract_v4a_patch_paths(patch_body: str) -> list[str]:
|
|
132
|
+
paths: list[str] = []
|
|
133
|
+
for match in re.finditer(
|
|
134
|
+
r'^\*\*\*\s+(?:Update|Add|Delete)\s+File:\s*(.+)$',
|
|
135
|
+
patch_body,
|
|
136
|
+
re.MULTILINE,
|
|
137
|
+
):
|
|
138
|
+
path = match.group(1).strip()
|
|
139
|
+
if path:
|
|
140
|
+
paths.append(path)
|
|
141
|
+
for match in re.finditer(
|
|
142
|
+
r'^\*\*\*\s+Move\s+File:\s*(.+?)\s*->\s*(.+)$',
|
|
143
|
+
patch_body,
|
|
144
|
+
re.MULTILINE,
|
|
145
|
+
):
|
|
146
|
+
src = match.group(1).strip()
|
|
147
|
+
dst = match.group(2).strip()
|
|
148
|
+
if src:
|
|
149
|
+
paths.append(src)
|
|
150
|
+
if dst:
|
|
151
|
+
paths.append(dst)
|
|
152
|
+
return paths
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
def _proposal_for_patch_v4a(arguments: dict[str, Any]) -> EditProposal:
|
|
156
|
+
patch_body = arguments.get("patch")
|
|
157
|
+
if not isinstance(patch_body, str) or not patch_body:
|
|
158
|
+
raise ValueError("patch content required")
|
|
159
|
+
|
|
160
|
+
paths = _extract_v4a_patch_paths(patch_body)
|
|
161
|
+
if not paths:
|
|
162
|
+
raise ValueError("no file paths found in V4A patch")
|
|
163
|
+
|
|
164
|
+
proposal_path = paths[0] if len(paths) == 1 else ", ".join(paths)
|
|
165
|
+
old_text = _read_text_if_exists(paths[0]) if len(paths) == 1 else None
|
|
166
|
+
return EditProposal(
|
|
167
|
+
tool_name="patch",
|
|
168
|
+
path=proposal_path,
|
|
169
|
+
old_text=old_text,
|
|
170
|
+
# ACP only supports a single diff payload here. Surface the exact V4A
|
|
171
|
+
# patch content before execution so patch-mode calls are permissioned
|
|
172
|
+
# and denied patches cannot mutate.
|
|
173
|
+
new_text=patch_body,
|
|
174
|
+
arguments=dict(arguments),
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
def build_edit_proposal(tool_name: str, arguments: dict[str, Any]) -> EditProposal | None:
|
|
179
|
+
"""Return an edit proposal for supported file mutation calls."""
|
|
180
|
+
|
|
181
|
+
if tool_name == "write_file":
|
|
182
|
+
return _proposal_for_write_file(arguments)
|
|
183
|
+
if tool_name == "patch":
|
|
184
|
+
mode = arguments.get("mode", "replace")
|
|
185
|
+
if mode == "replace":
|
|
186
|
+
return _proposal_for_patch_replace(arguments)
|
|
187
|
+
if mode == "patch":
|
|
188
|
+
return _proposal_for_patch_v4a(arguments)
|
|
189
|
+
return None
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def _is_sensitive_auto_approve_path(path: str) -> bool:
|
|
193
|
+
parts = Path(path).expanduser().parts
|
|
194
|
+
lowered = {part.lower() for part in parts}
|
|
195
|
+
if ".git" in lowered or ".ssh" in lowered:
|
|
196
|
+
return True
|
|
197
|
+
return Path(path).name.lower() in SENSITIVE_AUTO_APPROVE_NAMES
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
def should_auto_approve_edit(proposal: EditProposal, policy: str, cwd: str | None = None) -> bool:
|
|
201
|
+
"""Return whether an ACP edit proposal may bypass the prompt for this session.
|
|
202
|
+
|
|
203
|
+
This is intentionally session-scoped and conservative: sensitive paths still
|
|
204
|
+
ask even under autonomous policies.
|
|
205
|
+
"""
|
|
206
|
+
|
|
207
|
+
policy = str(policy or AUTO_APPROVE_ASK).strip()
|
|
208
|
+
if policy == AUTO_APPROVE_ASK or _is_sensitive_auto_approve_path(proposal.path):
|
|
209
|
+
return False
|
|
210
|
+
path = Path(proposal.path).expanduser().resolve(strict=False)
|
|
211
|
+
if policy == AUTO_APPROVE_SESSION:
|
|
212
|
+
return True
|
|
213
|
+
if policy == AUTO_APPROVE_WORKSPACE:
|
|
214
|
+
# `/tmp` is the POSIX path but tempfile.gettempdir() is the real one on
|
|
215
|
+
# every platform: `/private/tmp` on macOS (because `/tmp` is a symlink
|
|
216
|
+
# and Path.resolve() follows it) and the per-user Temp dir on Windows.
|
|
217
|
+
tmp_root = Path(tempfile.gettempdir()).resolve(strict=False)
|
|
218
|
+
try:
|
|
219
|
+
path.relative_to(tmp_root)
|
|
220
|
+
return True
|
|
221
|
+
except ValueError:
|
|
222
|
+
pass
|
|
223
|
+
if cwd:
|
|
224
|
+
root = Path(cwd).expanduser().resolve(strict=False)
|
|
225
|
+
try:
|
|
226
|
+
path.relative_to(root)
|
|
227
|
+
return True
|
|
228
|
+
except ValueError:
|
|
229
|
+
return False
|
|
230
|
+
return False
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
def maybe_require_edit_approval(tool_name: str, arguments: dict[str, Any]) -> str | None:
|
|
234
|
+
"""Run ACP edit approval if bound.
|
|
235
|
+
|
|
236
|
+
Returns a JSON tool-error string when the edit must be blocked, otherwise
|
|
237
|
+
``None`` so dispatch can continue. Requester exceptions deny by default.
|
|
238
|
+
"""
|
|
239
|
+
|
|
240
|
+
requester = get_edit_approval_requester()
|
|
241
|
+
if requester is None:
|
|
242
|
+
return None
|
|
243
|
+
|
|
244
|
+
try:
|
|
245
|
+
proposal = build_edit_proposal(tool_name, arguments)
|
|
246
|
+
except Exception as exc:
|
|
247
|
+
logger.warning("Could not build ACP edit approval proposal for %s: %s", tool_name, exc)
|
|
248
|
+
return json.dumps({"error": f"Edit approval denied: could not prepare diff ({exc})"}, ensure_ascii=False)
|
|
249
|
+
|
|
250
|
+
if proposal is None:
|
|
251
|
+
return None
|
|
252
|
+
|
|
253
|
+
try:
|
|
254
|
+
approved = bool(requester(proposal))
|
|
255
|
+
except Exception as exc:
|
|
256
|
+
logger.warning("ACP edit approval requester failed: %s", exc)
|
|
257
|
+
approved = False
|
|
258
|
+
|
|
259
|
+
if approved:
|
|
260
|
+
return None
|
|
261
|
+
return json.dumps({"error": "Edit approval denied by ACP client; file was not modified."}, ensure_ascii=False)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
def build_acp_edit_tool_call(proposal: EditProposal):
|
|
265
|
+
"""Build the ToolCallUpdate payload for ACP request_permission."""
|
|
266
|
+
|
|
267
|
+
import acp
|
|
268
|
+
|
|
269
|
+
tool_call_id = f"edit-approval-{next(_PERMISSION_REQUEST_IDS)}"
|
|
270
|
+
return acp.update_tool_call(
|
|
271
|
+
tool_call_id,
|
|
272
|
+
title=f"Approve edit: {proposal.path}",
|
|
273
|
+
kind="edit",
|
|
274
|
+
status="pending",
|
|
275
|
+
content=[
|
|
276
|
+
acp.tool_diff_content(
|
|
277
|
+
path=proposal.path,
|
|
278
|
+
old_text=proposal.old_text,
|
|
279
|
+
new_text=proposal.new_text,
|
|
280
|
+
)
|
|
281
|
+
],
|
|
282
|
+
raw_input={"tool": proposal.tool_name, "arguments": proposal.arguments},
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
def make_acp_edit_approval_requester(
|
|
287
|
+
request_permission_fn: Callable,
|
|
288
|
+
loop: asyncio.AbstractEventLoop,
|
|
289
|
+
session_id: str,
|
|
290
|
+
timeout: float = 60.0,
|
|
291
|
+
auto_approve_getter: Callable[[], tuple[str, str | None]] | None = None,
|
|
292
|
+
) -> EditApprovalRequester:
|
|
293
|
+
"""Return a sync requester that bridges edit proposals to ACP permissions."""
|
|
294
|
+
|
|
295
|
+
def _requester(proposal: EditProposal) -> bool:
|
|
296
|
+
from acp.schema import PermissionOption
|
|
297
|
+
from agent.async_utils import safe_schedule_threadsafe
|
|
298
|
+
|
|
299
|
+
if auto_approve_getter is not None:
|
|
300
|
+
try:
|
|
301
|
+
policy, cwd = auto_approve_getter()
|
|
302
|
+
if should_auto_approve_edit(proposal, policy, cwd):
|
|
303
|
+
logger.info("Auto-approved ACP edit under policy %s: %s", policy, proposal.path)
|
|
304
|
+
return True
|
|
305
|
+
except Exception:
|
|
306
|
+
logger.debug("ACP edit auto-approval policy check failed", exc_info=True)
|
|
307
|
+
|
|
308
|
+
options = [
|
|
309
|
+
PermissionOption(option_id="allow_once", kind="allow_once", name="Allow edit"),
|
|
310
|
+
PermissionOption(option_id="deny", kind="reject_once", name="Deny"),
|
|
311
|
+
]
|
|
312
|
+
tool_call = build_acp_edit_tool_call(proposal)
|
|
313
|
+
coro = request_permission_fn(
|
|
314
|
+
session_id=session_id,
|
|
315
|
+
tool_call=tool_call,
|
|
316
|
+
options=options,
|
|
317
|
+
)
|
|
318
|
+
future = safe_schedule_threadsafe(
|
|
319
|
+
coro,
|
|
320
|
+
loop,
|
|
321
|
+
logger=logger,
|
|
322
|
+
log_message="Edit approval request: failed to schedule on loop",
|
|
323
|
+
)
|
|
324
|
+
if future is None:
|
|
325
|
+
return False
|
|
326
|
+
try:
|
|
327
|
+
response = future.result(timeout=timeout)
|
|
328
|
+
except (FutureTimeout, Exception) as exc:
|
|
329
|
+
future.cancel()
|
|
330
|
+
logger.warning("Edit approval request timed out or failed: %s", exc)
|
|
331
|
+
return False
|
|
332
|
+
outcome = getattr(response, "outcome", None)
|
|
333
|
+
return (
|
|
334
|
+
getattr(outcome, "outcome", None) == "selected"
|
|
335
|
+
and getattr(outcome, "option_id", None) == "allow_once"
|
|
336
|
+
)
|
|
337
|
+
|
|
338
|
+
return _requester
|