fableforge-agent 0.1.0__tar.gz → 0.18.3__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.
Files changed (1443) hide show
  1. fableforge_agent-0.18.3/LICENSE +21 -0
  2. fableforge_agent-0.18.3/MANIFEST.in +13 -0
  3. fableforge_agent-0.18.3/PKG-INFO +177 -0
  4. fableforge_agent-0.18.3/acp_adapter/__init__.py +1 -0
  5. fableforge_agent-0.18.3/acp_adapter/__main__.py +5 -0
  6. fableforge_agent-0.18.3/acp_adapter/auth.py +79 -0
  7. fableforge_agent-0.18.3/acp_adapter/edit_approval.py +338 -0
  8. fableforge_agent-0.18.3/acp_adapter/entry.py +271 -0
  9. fableforge_agent-0.18.3/acp_adapter/events.py +279 -0
  10. fableforge_agent-0.18.3/acp_adapter/permissions.py +168 -0
  11. fableforge_agent-0.18.3/acp_adapter/provenance.py +127 -0
  12. fableforge_agent-0.18.3/acp_adapter/server.py +2065 -0
  13. fableforge_agent-0.18.3/acp_adapter/session.py +664 -0
  14. fableforge_agent-0.18.3/acp_adapter/tools.py +1291 -0
  15. fableforge_agent-0.18.3/agent/__init__.py +8 -0
  16. fableforge_agent-0.18.3/agent/account_usage.py +696 -0
  17. fableforge_agent-0.18.3/agent/agent_init.py +2103 -0
  18. fableforge_agent-0.18.3/agent/agent_runtime_helpers.py +3209 -0
  19. fableforge_agent-0.18.3/agent/anthropic_adapter.py +2789 -0
  20. fableforge_agent-0.18.3/agent/async_utils.py +68 -0
  21. fableforge_agent-0.18.3/agent/auxiliary_client.py +7469 -0
  22. fableforge_agent-0.18.3/agent/azure_identity_adapter.py +555 -0
  23. fableforge_agent-0.18.3/agent/background_review.py +960 -0
  24. fableforge_agent-0.18.3/agent/bedrock_adapter.py +1342 -0
  25. fableforge_agent-0.18.3/agent/billing_view.py +295 -0
  26. fableforge_agent-0.18.3/agent/bounded_response.py +148 -0
  27. fableforge_agent-0.18.3/agent/browser_provider.py +175 -0
  28. fableforge_agent-0.18.3/agent/browser_registry.py +192 -0
  29. fableforge_agent-0.18.3/agent/chat_completion_helpers.py +3103 -0
  30. fableforge_agent-0.18.3/agent/codex_responses_adapter.py +1353 -0
  31. fableforge_agent-0.18.3/agent/codex_runtime.py +930 -0
  32. fableforge_agent-0.18.3/agent/coding_context.py +883 -0
  33. fableforge_agent-0.18.3/agent/context_breakdown.py +156 -0
  34. fableforge_agent-0.18.3/agent/context_compressor.py +3168 -0
  35. fableforge_agent-0.18.3/agent/context_engine.py +231 -0
  36. fableforge_agent-0.18.3/agent/context_references.py +598 -0
  37. fableforge_agent-0.18.3/agent/conversation_compression.py +1367 -0
  38. fableforge_agent-0.18.3/agent/conversation_loop.py +5312 -0
  39. fableforge_agent-0.18.3/agent/copilot_acp_client.py +752 -0
  40. fableforge_agent-0.18.3/agent/credential_persistence.py +174 -0
  41. fableforge_agent-0.18.3/agent/credential_pool.py +2384 -0
  42. fableforge_agent-0.18.3/agent/credential_sources.py +443 -0
  43. fableforge_agent-0.18.3/agent/credits_tracker.py +794 -0
  44. fableforge_agent-0.18.3/agent/curator.py +1976 -0
  45. fableforge_agent-0.18.3/agent/curator_backup.py +711 -0
  46. fableforge_agent-0.18.3/agent/display.py +1440 -0
  47. fableforge_agent-0.18.3/agent/error_classifier.py +1598 -0
  48. fableforge_agent-0.18.3/agent/errors.py +3 -0
  49. fableforge_agent-0.18.3/agent/file_safety.py +660 -0
  50. fableforge_agent-0.18.3/agent/gemini_native_adapter.py +1021 -0
  51. fableforge_agent-0.18.3/agent/gemini_schema.py +99 -0
  52. fableforge_agent-0.18.3/agent/i18n.py +302 -0
  53. fableforge_agent-0.18.3/agent/image_gen_provider.py +393 -0
  54. fableforge_agent-0.18.3/agent/image_gen_registry.py +145 -0
  55. fableforge_agent-0.18.3/agent/image_routing.py +765 -0
  56. fableforge_agent-0.18.3/agent/insights.py +921 -0
  57. fableforge_agent-0.18.3/agent/iteration_budget.py +62 -0
  58. fableforge_agent-0.18.3/agent/jiter_preload.py +39 -0
  59. fableforge_agent-0.18.3/agent/learn_prompt.py +150 -0
  60. fableforge_agent-0.18.3/agent/learning_graph.py +328 -0
  61. fableforge_agent-0.18.3/agent/learning_graph_render.py +659 -0
  62. fableforge_agent-0.18.3/agent/learning_mutations.py +206 -0
  63. fableforge_agent-0.18.3/agent/lmstudio_reasoning.py +48 -0
  64. fableforge_agent-0.18.3/agent/lsp/__init__.py +106 -0
  65. fableforge_agent-0.18.3/agent/lsp/cli.py +299 -0
  66. fableforge_agent-0.18.3/agent/lsp/client.py +951 -0
  67. fableforge_agent-0.18.3/agent/lsp/eventlog.py +213 -0
  68. fableforge_agent-0.18.3/agent/lsp/install.py +406 -0
  69. fableforge_agent-0.18.3/agent/lsp/manager.py +639 -0
  70. fableforge_agent-0.18.3/agent/lsp/protocol.py +196 -0
  71. fableforge_agent-0.18.3/agent/lsp/range_shift.py +149 -0
  72. fableforge_agent-0.18.3/agent/lsp/reporter.py +130 -0
  73. fableforge_agent-0.18.3/agent/lsp/servers.py +1187 -0
  74. fableforge_agent-0.18.3/agent/lsp/workspace.py +223 -0
  75. fableforge_agent-0.18.3/agent/manual_compression_feedback.py +49 -0
  76. fableforge_agent-0.18.3/agent/markdown_tables.py +309 -0
  77. fableforge_agent-0.18.3/agent/memory_manager.py +1086 -0
  78. fableforge_agent-0.18.3/agent/memory_provider.py +315 -0
  79. fableforge_agent-0.18.3/agent/message_content.py +50 -0
  80. fableforge_agent-0.18.3/agent/message_sanitization.py +477 -0
  81. fableforge_agent-0.18.3/agent/moa_loop.py +1073 -0
  82. fableforge_agent-0.18.3/agent/moa_trace.py +167 -0
  83. fableforge_agent-0.18.3/agent/model_metadata.py +2443 -0
  84. fableforge_agent-0.18.3/agent/models_dev.py +725 -0
  85. fableforge_agent-0.18.3/agent/moonshot_schema.py +238 -0
  86. fableforge_agent-0.18.3/agent/nous_rate_guard.py +325 -0
  87. fableforge_agent-0.18.3/agent/onboarding.py +253 -0
  88. fableforge_agent-0.18.3/agent/oneshot.py +158 -0
  89. fableforge_agent-0.18.3/agent/pet/__init__.py +51 -0
  90. fableforge_agent-0.18.3/agent/pet/constants.py +167 -0
  91. fableforge_agent-0.18.3/agent/pet/generate/__init__.py +29 -0
  92. fableforge_agent-0.18.3/agent/pet/generate/atlas.py +1183 -0
  93. fableforge_agent-0.18.3/agent/pet/generate/imagegen.py +251 -0
  94. fableforge_agent-0.18.3/agent/pet/generate/orchestrate.py +358 -0
  95. fableforge_agent-0.18.3/agent/pet/generate/prompts.py +183 -0
  96. fableforge_agent-0.18.3/agent/pet/manifest.py +165 -0
  97. fableforge_agent-0.18.3/agent/pet/render.py +682 -0
  98. fableforge_agent-0.18.3/agent/pet/state.py +81 -0
  99. fableforge_agent-0.18.3/agent/pet/store.py +503 -0
  100. fableforge_agent-0.18.3/agent/plugin_llm.py +1046 -0
  101. fableforge_agent-0.18.3/agent/portal_tags.py +64 -0
  102. fableforge_agent-0.18.3/agent/process_bootstrap.py +227 -0
  103. fableforge_agent-0.18.3/agent/prompt_builder.py +1966 -0
  104. fableforge_agent-0.18.3/agent/prompt_caching.py +119 -0
  105. fableforge_agent-0.18.3/agent/rate_limit_tracker.py +246 -0
  106. fableforge_agent-0.18.3/agent/reasoning_timeouts.py +216 -0
  107. fableforge_agent-0.18.3/agent/redact.py +811 -0
  108. fableforge_agent-0.18.3/agent/replay_cleanup.py +257 -0
  109. fableforge_agent-0.18.3/agent/retry_utils.py +154 -0
  110. fableforge_agent-0.18.3/agent/runtime_cwd.py +62 -0
  111. fableforge_agent-0.18.3/agent/secret_scope.py +205 -0
  112. fableforge_agent-0.18.3/agent/secret_sources/__init__.py +41 -0
  113. fableforge_agent-0.18.3/agent/secret_sources/_cache.py +213 -0
  114. fableforge_agent-0.18.3/agent/secret_sources/base.py +274 -0
  115. fableforge_agent-0.18.3/agent/secret_sources/bitwarden.py +729 -0
  116. fableforge_agent-0.18.3/agent/secret_sources/onepassword.py +643 -0
  117. fableforge_agent-0.18.3/agent/secret_sources/registry.py +370 -0
  118. fableforge_agent-0.18.3/agent/shell_hooks.py +928 -0
  119. fableforge_agent-0.18.3/agent/skill_bundles.py +438 -0
  120. fableforge_agent-0.18.3/agent/skill_commands.py +732 -0
  121. fableforge_agent-0.18.3/agent/skill_preprocessing.py +144 -0
  122. fableforge_agent-0.18.3/agent/skill_utils.py +824 -0
  123. fableforge_agent-0.18.3/agent/ssl_guard.py +94 -0
  124. fableforge_agent-0.18.3/agent/ssl_verify.py +63 -0
  125. fableforge_agent-0.18.3/agent/stream_diag.py +280 -0
  126. fableforge_agent-0.18.3/agent/subdirectory_hints.py +270 -0
  127. fableforge_agent-0.18.3/agent/system_prompt.py +570 -0
  128. fableforge_agent-0.18.3/agent/think_scrubber.py +386 -0
  129. fableforge_agent-0.18.3/agent/thinking_timeout_guidance.py +136 -0
  130. fableforge_agent-0.18.3/agent/thread_scoped_output.py +147 -0
  131. fableforge_agent-0.18.3/agent/title_generator.py +204 -0
  132. fableforge_agent-0.18.3/agent/tool_dispatch_helpers.py +503 -0
  133. fableforge_agent-0.18.3/agent/tool_executor.py +1646 -0
  134. fableforge_agent-0.18.3/agent/tool_guardrails.py +475 -0
  135. fableforge_agent-0.18.3/agent/tool_result_classification.py +26 -0
  136. fableforge_agent-0.18.3/agent/trace_upload.py +398 -0
  137. fableforge_agent-0.18.3/agent/trajectory.py +56 -0
  138. fableforge_agent-0.18.3/agent/transcription_provider.py +193 -0
  139. fableforge_agent-0.18.3/agent/transcription_registry.py +122 -0
  140. fableforge_agent-0.18.3/agent/transports/__init__.py +68 -0
  141. fableforge_agent-0.18.3/agent/transports/anthropic.py +251 -0
  142. fableforge_agent-0.18.3/agent/transports/base.py +89 -0
  143. fableforge_agent-0.18.3/agent/transports/bedrock.py +154 -0
  144. fableforge_agent-0.18.3/agent/transports/chat_completions.py +744 -0
  145. fableforge_agent-0.18.3/agent/transports/codex.py +469 -0
  146. fableforge_agent-0.18.3/agent/transports/codex_app_server.py +413 -0
  147. fableforge_agent-0.18.3/agent/transports/codex_app_server_session.py +1072 -0
  148. fableforge_agent-0.18.3/agent/transports/codex_event_projector.py +314 -0
  149. fableforge_agent-0.18.3/agent/transports/fableforge_tools_mcp_server.py +233 -0
  150. fableforge_agent-0.18.3/agent/transports/types.py +174 -0
  151. fableforge_agent-0.18.3/agent/tts_provider.py +274 -0
  152. fableforge_agent-0.18.3/agent/tts_registry.py +133 -0
  153. fableforge_agent-0.18.3/agent/turn_context.py +565 -0
  154. fableforge_agent-0.18.3/agent/turn_finalizer.py +507 -0
  155. fableforge_agent-0.18.3/agent/turn_retry_state.py +80 -0
  156. fableforge_agent-0.18.3/agent/usage_pricing.py +981 -0
  157. fableforge_agent-0.18.3/agent/verification_evidence.py +618 -0
  158. fableforge_agent-0.18.3/agent/verification_stop.py +313 -0
  159. fableforge_agent-0.18.3/agent/verify_hooks.py +69 -0
  160. fableforge_agent-0.18.3/agent/vertex_adapter.py +228 -0
  161. fableforge_agent-0.18.3/agent/video_gen_provider.py +299 -0
  162. fableforge_agent-0.18.3/agent/video_gen_registry.py +117 -0
  163. fableforge_agent-0.18.3/agent/web_search_provider.py +211 -0
  164. fableforge_agent-0.18.3/agent/web_search_registry.py +304 -0
  165. fableforge_agent-0.18.3/batch_runner.py +1321 -0
  166. fableforge_agent-0.18.3/cli.py +16194 -0
  167. fableforge_agent-0.18.3/control_plane/__init__.py +33 -0
  168. fableforge_agent-0.18.3/control_plane/auth.py +96 -0
  169. fableforge_agent-0.18.3/control_plane/core.py +255 -0
  170. fableforge_agent-0.18.3/fableforge_agent.egg-info/PKG-INFO +177 -0
  171. fableforge_agent-0.18.3/fableforge_agent.egg-info/SOURCES.txt +1424 -0
  172. fableforge_agent-0.18.3/fableforge_agent.egg-info/entry_points.txt +5 -0
  173. fableforge_agent-0.18.3/fableforge_agent.egg-info/requires.txt +209 -0
  174. fableforge_agent-0.18.3/fableforge_agent.egg-info/top_level.txt +24 -0
  175. fableforge_agent-0.18.3/fableforge_bootstrap.py +195 -0
  176. fableforge_agent-0.18.3/fableforge_cli/__init__.py +98 -0
  177. fableforge_agent-0.18.3/fableforge_cli/_parser.py +423 -0
  178. fableforge_agent-0.18.3/fableforge_cli/_subprocess_compat.py +234 -0
  179. fableforge_agent-0.18.3/fableforge_cli/active_sessions.py +357 -0
  180. fableforge_agent-0.18.3/fableforge_cli/auth.py +8290 -0
  181. fableforge_agent-0.18.3/fableforge_cli/auth_commands.py +780 -0
  182. fableforge_agent-0.18.3/fableforge_cli/azure_detect.py +406 -0
  183. fableforge_agent-0.18.3/fableforge_cli/backup.py +1376 -0
  184. fableforge_agent-0.18.3/fableforge_cli/banner.py +937 -0
  185. fableforge_agent-0.18.3/fableforge_cli/blueprint_cmd.py +318 -0
  186. fableforge_agent-0.18.3/fableforge_cli/browser_connect.py +349 -0
  187. fableforge_agent-0.18.3/fableforge_cli/build_info.py +51 -0
  188. fableforge_agent-0.18.3/fableforge_cli/bundles.py +229 -0
  189. fableforge_agent-0.18.3/fableforge_cli/callbacks.py +242 -0
  190. fableforge_agent-0.18.3/fableforge_cli/checkpoints.py +244 -0
  191. fableforge_agent-0.18.3/fableforge_cli/claw.py +809 -0
  192. fableforge_agent-0.18.3/fableforge_cli/cli.py +93 -0
  193. fableforge_agent-0.18.3/fableforge_cli/cli_agent_setup_mixin.py +689 -0
  194. fableforge_agent-0.18.3/fableforge_cli/cli_commands_mixin.py +2736 -0
  195. fableforge_agent-0.18.3/fableforge_cli/cli_output.py +77 -0
  196. fableforge_agent-0.18.3/fableforge_cli/clipboard.py +494 -0
  197. fableforge_agent-0.18.3/fableforge_cli/codex_models.py +206 -0
  198. fableforge_agent-0.18.3/fableforge_cli/codex_runtime_plugin_migration.py +757 -0
  199. fableforge_agent-0.18.3/fableforge_cli/codex_runtime_switch.py +279 -0
  200. fableforge_agent-0.18.3/fableforge_cli/colors.py +38 -0
  201. fableforge_agent-0.18.3/fableforge_cli/commands.py +2147 -0
  202. fableforge_agent-0.18.3/fableforge_cli/completion.py +319 -0
  203. fableforge_agent-0.18.3/fableforge_cli/config.py +8409 -0
  204. fableforge_agent-0.18.3/fableforge_cli/console_engine.py +1876 -0
  205. fableforge_agent-0.18.3/fableforge_cli/container_boot.py +576 -0
  206. fableforge_agent-0.18.3/fableforge_cli/context_switch_guard.py +169 -0
  207. fableforge_agent-0.18.3/fableforge_cli/copilot_auth.py +458 -0
  208. fableforge_agent-0.18.3/fableforge_cli/cron.py +456 -0
  209. fableforge_agent-0.18.3/fableforge_cli/curator.py +698 -0
  210. fableforge_agent-0.18.3/fableforge_cli/curses_ui.py +872 -0
  211. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/__init__.py +48 -0
  212. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/audit.py +89 -0
  213. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/base.py +300 -0
  214. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/cookies.py +300 -0
  215. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/login_page.py +534 -0
  216. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/middleware.py +461 -0
  217. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/prefix.py +232 -0
  218. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/public_paths.py +55 -0
  219. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/registry.py +81 -0
  220. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/routes.py +634 -0
  221. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/token_auth.py +194 -0
  222. fableforge_agent-0.18.3/fableforge_cli/dashboard_auth/ws_tickets.py +161 -0
  223. fableforge_agent-0.18.3/fableforge_cli/dashboard_register.py +427 -0
  224. fableforge_agent-0.18.3/fableforge_cli/debug.py +1013 -0
  225. fableforge_agent-0.18.3/fableforge_cli/default_soul.py +76 -0
  226. fableforge_agent-0.18.3/fableforge_cli/dep_ensure.py +163 -0
  227. fableforge_agent-0.18.3/fableforge_cli/diagnostics_upload.py +138 -0
  228. fableforge_agent-0.18.3/fableforge_cli/dingtalk_auth.py +291 -0
  229. fableforge_agent-0.18.3/fableforge_cli/doctor.py +2412 -0
  230. fableforge_agent-0.18.3/fableforge_cli/dump.py +444 -0
  231. fableforge_agent-0.18.3/fableforge_cli/env_loader.py +396 -0
  232. fableforge_agent-0.18.3/fableforge_cli/fallback_cmd.py +354 -0
  233. fableforge_agent-0.18.3/fableforge_cli/fallback_config.py +72 -0
  234. fableforge_agent-0.18.3/fableforge_cli/gateway.py +7064 -0
  235. fableforge_agent-0.18.3/fableforge_cli/gateway_enroll.py +277 -0
  236. fableforge_agent-0.18.3/fableforge_cli/gateway_windows.py +1682 -0
  237. fableforge_agent-0.18.3/fableforge_cli/goals.py +1765 -0
  238. fableforge_agent-0.18.3/fableforge_cli/gui_uninstall.py +285 -0
  239. fableforge_agent-0.18.3/fableforge_cli/hooks.py +394 -0
  240. fableforge_agent-0.18.3/fableforge_cli/inventory.py +525 -0
  241. fableforge_agent-0.18.3/fableforge_cli/journey.py +357 -0
  242. fableforge_agent-0.18.3/fableforge_cli/kanban.py +2845 -0
  243. fableforge_agent-0.18.3/fableforge_cli/kanban_db.py +8723 -0
  244. fableforge_agent-0.18.3/fableforge_cli/kanban_decompose.py +477 -0
  245. fableforge_agent-0.18.3/fableforge_cli/kanban_diagnostics.py +1107 -0
  246. fableforge_agent-0.18.3/fableforge_cli/kanban_specify.py +273 -0
  247. fableforge_agent-0.18.3/fableforge_cli/kanban_swarm.py +278 -0
  248. fableforge_agent-0.18.3/fableforge_cli/logs.py +397 -0
  249. fableforge_agent-0.18.3/fableforge_cli/main.py +14643 -0
  250. fableforge_agent-0.18.3/fableforge_cli/managed_scope.py +214 -0
  251. fableforge_agent-0.18.3/fableforge_cli/managed_uv.py +254 -0
  252. fableforge_agent-0.18.3/fableforge_cli/mcp_catalog.py +778 -0
  253. fableforge_agent-0.18.3/fableforge_cli/mcp_config.py +1081 -0
  254. fableforge_agent-0.18.3/fableforge_cli/mcp_picker.py +322 -0
  255. fableforge_agent-0.18.3/fableforge_cli/mcp_security.py +181 -0
  256. fableforge_agent-0.18.3/fableforge_cli/mcp_startup.py +130 -0
  257. fableforge_agent-0.18.3/fableforge_cli/memory_oauth.py +83 -0
  258. fableforge_agent-0.18.3/fableforge_cli/memory_providers.py +149 -0
  259. fableforge_agent-0.18.3/fableforge_cli/memory_setup.py +501 -0
  260. fableforge_agent-0.18.3/fableforge_cli/middleware.py +313 -0
  261. fableforge_agent-0.18.3/fableforge_cli/migrate.py +115 -0
  262. fableforge_agent-0.18.3/fableforge_cli/moa_cmd.py +135 -0
  263. fableforge_agent-0.18.3/fableforge_cli/moa_config.py +276 -0
  264. fableforge_agent-0.18.3/fableforge_cli/model_catalog.py +394 -0
  265. fableforge_agent-0.18.3/fableforge_cli/model_cost_guard.py +134 -0
  266. fableforge_agent-0.18.3/fableforge_cli/model_normalize.py +473 -0
  267. fableforge_agent-0.18.3/fableforge_cli/model_setup_flows.py +2983 -0
  268. fableforge_agent-0.18.3/fableforge_cli/model_switch.py +2452 -0
  269. fableforge_agent-0.18.3/fableforge_cli/models.py +4297 -0
  270. fableforge_agent-0.18.3/fableforge_cli/nous_account.py +789 -0
  271. fableforge_agent-0.18.3/fableforge_cli/nous_auth_keepalive.py +189 -0
  272. fableforge_agent-0.18.3/fableforge_cli/nous_billing.py +406 -0
  273. fableforge_agent-0.18.3/fableforge_cli/nous_subscription.py +1285 -0
  274. fableforge_agent-0.18.3/fableforge_cli/onepassword_secrets_cli.py +432 -0
  275. fableforge_agent-0.18.3/fableforge_cli/oneshot.py +434 -0
  276. fableforge_agent-0.18.3/fableforge_cli/pairing.py +115 -0
  277. fableforge_agent-0.18.3/fableforge_cli/partial_compress.py +324 -0
  278. fableforge_agent-0.18.3/fableforge_cli/pets.py +502 -0
  279. fableforge_agent-0.18.3/fableforge_cli/platforms.py +84 -0
  280. fableforge_agent-0.18.3/fableforge_cli/plugins.py +2464 -0
  281. fableforge_agent-0.18.3/fableforge_cli/plugins_cmd.py +2017 -0
  282. fableforge_agent-0.18.3/fableforge_cli/portal_cli.py +245 -0
  283. fableforge_agent-0.18.3/fableforge_cli/profile_describer.py +298 -0
  284. fableforge_agent-0.18.3/fableforge_cli/profile_distribution.py +726 -0
  285. fableforge_agent-0.18.3/fableforge_cli/profiles.py +2225 -0
  286. fableforge_agent-0.18.3/fableforge_cli/projects_cmd.py +335 -0
  287. fableforge_agent-0.18.3/fableforge_cli/projects_db.py +727 -0
  288. fableforge_agent-0.18.3/fableforge_cli/prompt_size.py +161 -0
  289. fableforge_agent-0.18.3/fableforge_cli/provider_catalog.py +181 -0
  290. fableforge_agent-0.18.3/fableforge_cli/providers.py +770 -0
  291. fableforge_agent-0.18.3/fableforge_cli/proxy/__init__.py +20 -0
  292. fableforge_agent-0.18.3/fableforge_cli/proxy/adapters/__init__.py +37 -0
  293. fableforge_agent-0.18.3/fableforge_cli/proxy/adapters/base.py +108 -0
  294. fableforge_agent-0.18.3/fableforge_cli/proxy/adapters/nous_portal.py +199 -0
  295. fableforge_agent-0.18.3/fableforge_cli/proxy/adapters/xai.py +145 -0
  296. fableforge_agent-0.18.3/fableforge_cli/proxy/cli.py +142 -0
  297. fableforge_agent-0.18.3/fableforge_cli/proxy/server.py +300 -0
  298. fableforge_agent-0.18.3/fableforge_cli/psutil_android.py +108 -0
  299. fableforge_agent-0.18.3/fableforge_cli/pt_input_extras.py +120 -0
  300. fableforge_agent-0.18.3/fableforge_cli/pty_bridge.py +286 -0
  301. fableforge_agent-0.18.3/fableforge_cli/pty_session.py +195 -0
  302. fableforge_agent-0.18.3/fableforge_cli/relaunch.py +205 -0
  303. fableforge_agent-0.18.3/fableforge_cli/runtime_provider.py +2058 -0
  304. fableforge_agent-0.18.3/fableforge_cli/secret_prompt.py +126 -0
  305. fableforge_agent-0.18.3/fableforge_cli/secrets_cli.py +600 -0
  306. fableforge_agent-0.18.3/fableforge_cli/security_advisories.py +453 -0
  307. fableforge_agent-0.18.3/fableforge_cli/security_audit.py +576 -0
  308. fableforge_agent-0.18.3/fableforge_cli/security_audit_startup.py +282 -0
  309. fableforge_agent-0.18.3/fableforge_cli/send_cmd.py +471 -0
  310. fableforge_agent-0.18.3/fableforge_cli/service_manager.py +1123 -0
  311. fableforge_agent-0.18.3/fableforge_cli/session_export.py +317 -0
  312. fableforge_agent-0.18.3/fableforge_cli/session_export_html.py +849 -0
  313. fableforge_agent-0.18.3/fableforge_cli/session_export_md.py +279 -0
  314. fableforge_agent-0.18.3/fableforge_cli/session_filters.py +208 -0
  315. fableforge_agent-0.18.3/fableforge_cli/session_listing.py +113 -0
  316. fableforge_agent-0.18.3/fableforge_cli/session_recap.py +316 -0
  317. fableforge_agent-0.18.3/fableforge_cli/setup.py +3405 -0
  318. fableforge_agent-0.18.3/fableforge_cli/setup_whatsapp_cloud.py +541 -0
  319. fableforge_agent-0.18.3/fableforge_cli/skills_config.py +183 -0
  320. fableforge_agent-0.18.3/fableforge_cli/skills_hub.py +1997 -0
  321. fableforge_agent-0.18.3/fableforge_cli/skin_engine.py +926 -0
  322. fableforge_agent-0.18.3/fableforge_cli/slack_cli.py +194 -0
  323. fableforge_agent-0.18.3/fableforge_cli/sqlite_util.py +49 -0
  324. fableforge_agent-0.18.3/fableforge_cli/status.py +620 -0
  325. fableforge_agent-0.18.3/fableforge_cli/stdio.py +251 -0
  326. fableforge_agent-0.18.3/fableforge_cli/subcommands/__init__.py +18 -0
  327. fableforge_agent-0.18.3/fableforge_cli/subcommands/_shared.py +29 -0
  328. fableforge_agent-0.18.3/fableforge_cli/subcommands/acp.py +52 -0
  329. fableforge_agent-0.18.3/fableforge_cli/subcommands/auth.py +98 -0
  330. fableforge_agent-0.18.3/fableforge_cli/subcommands/backup.py +38 -0
  331. fableforge_agent-0.18.3/fableforge_cli/subcommands/claw.py +92 -0
  332. fableforge_agent-0.18.3/fableforge_cli/subcommands/config.py +49 -0
  333. fableforge_agent-0.18.3/fableforge_cli/subcommands/console.py +18 -0
  334. fableforge_agent-0.18.3/fableforge_cli/subcommands/cron.py +163 -0
  335. fableforge_agent-0.18.3/fableforge_cli/subcommands/dashboard.py +200 -0
  336. fableforge_agent-0.18.3/fableforge_cli/subcommands/debug.py +100 -0
  337. fableforge_agent-0.18.3/fableforge_cli/subcommands/doctor.py +35 -0
  338. fableforge_agent-0.18.3/fableforge_cli/subcommands/dump.py +28 -0
  339. fableforge_agent-0.18.3/fableforge_cli/subcommands/gateway.py +345 -0
  340. fableforge_agent-0.18.3/fableforge_cli/subcommands/gui.py +63 -0
  341. fableforge_agent-0.18.3/fableforge_cli/subcommands/hooks.py +77 -0
  342. fableforge_agent-0.18.3/fableforge_cli/subcommands/import_cmd.py +31 -0
  343. fableforge_agent-0.18.3/fableforge_cli/subcommands/insights.py +25 -0
  344. fableforge_agent-0.18.3/fableforge_cli/subcommands/login.py +78 -0
  345. fableforge_agent-0.18.3/fableforge_cli/subcommands/logout.py +28 -0
  346. fableforge_agent-0.18.3/fableforge_cli/subcommands/logs.py +78 -0
  347. fableforge_agent-0.18.3/fableforge_cli/subcommands/mcp.py +126 -0
  348. fableforge_agent-0.18.3/fableforge_cli/subcommands/memory.py +53 -0
  349. fableforge_agent-0.18.3/fableforge_cli/subcommands/model.py +62 -0
  350. fableforge_agent-0.18.3/fableforge_cli/subcommands/pairing.py +36 -0
  351. fableforge_agent-0.18.3/fableforge_cli/subcommands/plugins.py +106 -0
  352. fableforge_agent-0.18.3/fableforge_cli/subcommands/postinstall.py +23 -0
  353. fableforge_agent-0.18.3/fableforge_cli/subcommands/profile.py +203 -0
  354. fableforge_agent-0.18.3/fableforge_cli/subcommands/prompt_size.py +36 -0
  355. fableforge_agent-0.18.3/fableforge_cli/subcommands/security.py +62 -0
  356. fableforge_agent-0.18.3/fableforge_cli/subcommands/setup.py +58 -0
  357. fableforge_agent-0.18.3/fableforge_cli/subcommands/skills.py +315 -0
  358. fableforge_agent-0.18.3/fableforge_cli/subcommands/slack.py +68 -0
  359. fableforge_agent-0.18.3/fableforge_cli/subcommands/status.py +28 -0
  360. fableforge_agent-0.18.3/fableforge_cli/subcommands/tools.py +95 -0
  361. fableforge_agent-0.18.3/fableforge_cli/subcommands/uninstall.py +46 -0
  362. fableforge_agent-0.18.3/fableforge_cli/subcommands/update.py +76 -0
  363. fableforge_agent-0.18.3/fableforge_cli/subcommands/version.py +18 -0
  364. fableforge_agent-0.18.3/fableforge_cli/subcommands/webhook.py +83 -0
  365. fableforge_agent-0.18.3/fableforge_cli/subcommands/whatsapp.py +22 -0
  366. fableforge_agent-0.18.3/fableforge_cli/suggestions_cmd.py +153 -0
  367. fableforge_agent-0.18.3/fableforge_cli/telegram_managed_bot.py +358 -0
  368. fableforge_agent-0.18.3/fableforge_cli/timeouts.py +82 -0
  369. fableforge_agent-0.18.3/fableforge_cli/tips.py +485 -0
  370. fableforge_agent-0.18.3/fableforge_cli/tools_config.py +4505 -0
  371. fableforge_agent-0.18.3/fableforge_cli/toolset_validation.py +74 -0
  372. fableforge_agent-0.18.3/fableforge_cli/uninstall.py +962 -0
  373. fableforge_agent-0.18.3/fableforge_cli/voice.py +846 -0
  374. fableforge_agent-0.18.3/fableforge_cli/web_git.py +646 -0
  375. fableforge_agent-0.18.3/fableforge_cli/web_server.py +17107 -0
  376. fableforge_agent-0.18.3/fableforge_cli/webhook.py +306 -0
  377. fableforge_agent-0.18.3/fableforge_cli/win_pty_bridge.py +179 -0
  378. fableforge_agent-0.18.3/fableforge_cli/write_approval_commands.py +209 -0
  379. fableforge_agent-0.18.3/fableforge_cli/xai_retirement.py +256 -0
  380. fableforge_agent-0.18.3/fableforge_constants.py +988 -0
  381. fableforge_agent-0.18.3/fableforge_logging.py +789 -0
  382. fableforge_agent-0.18.3/fableforge_state.py +6459 -0
  383. fableforge_agent-0.18.3/fableforge_time.py +135 -0
  384. fableforge_agent-0.18.3/gateway/__init__.py +35 -0
  385. fableforge_agent-0.18.3/gateway/authz_mixin.py +710 -0
  386. fableforge_agent-0.18.3/gateway/builtin_hooks/__init__.py +1 -0
  387. fableforge_agent-0.18.3/gateway/cgroup_cleanup.py +81 -0
  388. fableforge_agent-0.18.3/gateway/channel_directory.py +496 -0
  389. fableforge_agent-0.18.3/gateway/code_skew.py +64 -0
  390. fableforge_agent-0.18.3/gateway/config.py +2277 -0
  391. fableforge_agent-0.18.3/gateway/cwd_placeholder.py +49 -0
  392. fableforge_agent-0.18.3/gateway/dead_targets.py +143 -0
  393. fableforge_agent-0.18.3/gateway/delivery.py +557 -0
  394. fableforge_agent-0.18.3/gateway/display_config.py +277 -0
  395. fableforge_agent-0.18.3/gateway/drain_control.py +273 -0
  396. fableforge_agent-0.18.3/gateway/hooks.py +227 -0
  397. fableforge_agent-0.18.3/gateway/kanban_watchers.py +1286 -0
  398. fableforge_agent-0.18.3/gateway/memory_monitor.py +230 -0
  399. fableforge_agent-0.18.3/gateway/message_timestamps.py +166 -0
  400. fableforge_agent-0.18.3/gateway/mirror.py +206 -0
  401. fableforge_agent-0.18.3/gateway/pairing.py +661 -0
  402. fableforge_agent-0.18.3/gateway/platform_registry.py +332 -0
  403. fableforge_agent-0.18.3/gateway/platforms/__init__.py +45 -0
  404. fableforge_agent-0.18.3/gateway/platforms/_http_client_limits.py +84 -0
  405. fableforge_agent-0.18.3/gateway/platforms/api_server.py +4917 -0
  406. fableforge_agent-0.18.3/gateway/platforms/base.py +5627 -0
  407. fableforge_agent-0.18.3/gateway/platforms/bluebubbles.py +1048 -0
  408. fableforge_agent-0.18.3/gateway/platforms/helpers.py +403 -0
  409. fableforge_agent-0.18.3/gateway/platforms/msgraph_webhook.py +441 -0
  410. fableforge_agent-0.18.3/gateway/platforms/qqbot/__init__.py +91 -0
  411. fableforge_agent-0.18.3/gateway/platforms/qqbot/adapter.py +3221 -0
  412. fableforge_agent-0.18.3/gateway/platforms/qqbot/chunked_upload.py +602 -0
  413. fableforge_agent-0.18.3/gateway/platforms/qqbot/constants.py +74 -0
  414. fableforge_agent-0.18.3/gateway/platforms/qqbot/crypto.py +45 -0
  415. fableforge_agent-0.18.3/gateway/platforms/qqbot/keyboards.py +473 -0
  416. fableforge_agent-0.18.3/gateway/platforms/qqbot/onboard.py +220 -0
  417. fableforge_agent-0.18.3/gateway/platforms/qqbot/utils.py +71 -0
  418. fableforge_agent-0.18.3/gateway/platforms/signal.py +1701 -0
  419. fableforge_agent-0.18.3/gateway/platforms/signal_format.py +140 -0
  420. fableforge_agent-0.18.3/gateway/platforms/signal_rate_limit.py +369 -0
  421. fableforge_agent-0.18.3/gateway/platforms/webhook.py +1266 -0
  422. fableforge_agent-0.18.3/gateway/platforms/webhook_filters.py +302 -0
  423. fableforge_agent-0.18.3/gateway/platforms/weixin.py +2379 -0
  424. fableforge_agent-0.18.3/gateway/platforms/whatsapp_cloud.py +2037 -0
  425. fableforge_agent-0.18.3/gateway/platforms/whatsapp_common.py +510 -0
  426. fableforge_agent-0.18.3/gateway/platforms/yuanbao.py +5557 -0
  427. fableforge_agent-0.18.3/gateway/platforms/yuanbao_media.py +665 -0
  428. fableforge_agent-0.18.3/gateway/platforms/yuanbao_proto.py +1418 -0
  429. fableforge_agent-0.18.3/gateway/platforms/yuanbao_sticker.py +558 -0
  430. fableforge_agent-0.18.3/gateway/relay/__init__.py +835 -0
  431. fableforge_agent-0.18.3/gateway/relay/adapter.py +546 -0
  432. fableforge_agent-0.18.3/gateway/relay/auth.py +168 -0
  433. fableforge_agent-0.18.3/gateway/relay/descriptor.py +118 -0
  434. fableforge_agent-0.18.3/gateway/relay/transport.py +143 -0
  435. fableforge_agent-0.18.3/gateway/relay/ws_transport.py +718 -0
  436. fableforge_agent-0.18.3/gateway/response_filters.py +106 -0
  437. fableforge_agent-0.18.3/gateway/restart.py +26 -0
  438. fableforge_agent-0.18.3/gateway/restart_loop_guard.py +150 -0
  439. fableforge_agent-0.18.3/gateway/rich_sent_store.py +83 -0
  440. fableforge_agent-0.18.3/gateway/run.py +20851 -0
  441. fableforge_agent-0.18.3/gateway/runtime_footer.py +149 -0
  442. fableforge_agent-0.18.3/gateway/scale_to_zero.py +124 -0
  443. fableforge_agent-0.18.3/gateway/session.py +2432 -0
  444. fableforge_agent-0.18.3/gateway/session_context.py +346 -0
  445. fableforge_agent-0.18.3/gateway/shutdown_forensics.py +462 -0
  446. fableforge_agent-0.18.3/gateway/slash_access.py +229 -0
  447. fableforge_agent-0.18.3/gateway/slash_commands.py +4642 -0
  448. fableforge_agent-0.18.3/gateway/status.py +1541 -0
  449. fableforge_agent-0.18.3/gateway/status_phrases.py +227 -0
  450. fableforge_agent-0.18.3/gateway/sticker_cache.py +124 -0
  451. fableforge_agent-0.18.3/gateway/stream_consumer.py +1800 -0
  452. fableforge_agent-0.18.3/gateway/stream_dispatch.py +132 -0
  453. fableforge_agent-0.18.3/gateway/stream_events.py +171 -0
  454. fableforge_agent-0.18.3/gateway/whatsapp_identity.py +206 -0
  455. fableforge_agent-0.18.3/locales/af.yaml +402 -0
  456. fableforge_agent-0.18.3/locales/de.yaml +402 -0
  457. fableforge_agent-0.18.3/locales/en.yaml +414 -0
  458. fableforge_agent-0.18.3/locales/es.yaml +399 -0
  459. fableforge_agent-0.18.3/locales/fr.yaml +402 -0
  460. fableforge_agent-0.18.3/locales/ga.yaml +406 -0
  461. fableforge_agent-0.18.3/locales/hu.yaml +402 -0
  462. fableforge_agent-0.18.3/locales/it.yaml +402 -0
  463. fableforge_agent-0.18.3/locales/ja.yaml +402 -0
  464. fableforge_agent-0.18.3/locales/ko.yaml +402 -0
  465. fableforge_agent-0.18.3/locales/pt.yaml +402 -0
  466. fableforge_agent-0.18.3/locales/ru.yaml +402 -0
  467. fableforge_agent-0.18.3/locales/tr.yaml +402 -0
  468. fableforge_agent-0.18.3/locales/uk.yaml +402 -0
  469. fableforge_agent-0.18.3/locales/zh-hant.yaml +402 -0
  470. fableforge_agent-0.18.3/locales/zh.yaml +402 -0
  471. fableforge_agent-0.18.3/mcp_serve.py +990 -0
  472. fableforge_agent-0.18.3/model_tools.py +1375 -0
  473. fableforge_agent-0.18.3/observability/__init__.py +27 -0
  474. fableforge_agent-0.18.3/observability/core.py +207 -0
  475. fableforge_agent-0.18.3/optional-mcps/linear/manifest.yaml +38 -0
  476. fableforge_agent-0.18.3/optional-mcps/n8n/manifest.yaml +77 -0
  477. fableforge_agent-0.18.3/optional-mcps/unreal-engine/manifest.yaml +54 -0
  478. fableforge_agent-0.18.3/optional-skills/DESCRIPTION.md +24 -0
  479. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
  480. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md +241 -0
  481. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/antigravity-cli/references/cli-docs.md +64 -0
  482. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +144 -0
  483. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/grok/SKILL.md +301 -0
  484. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/honcho/SKILL.md +431 -0
  485. fableforge_agent-0.18.3/optional-skills/autonomous-ai-agents/openhands/SKILL.md +149 -0
  486. fableforge_agent-0.18.3/optional-skills/blockchain/evm/SKILL.md +211 -0
  487. fableforge_agent-0.18.3/optional-skills/blockchain/evm/scripts/evm_client.py +1508 -0
  488. fableforge_agent-0.18.3/optional-skills/blockchain/hyperliquid/SKILL.md +211 -0
  489. fableforge_agent-0.18.3/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1660 -0
  490. fableforge_agent-0.18.3/optional-skills/blockchain/solana/SKILL.md +208 -0
  491. fableforge_agent-0.18.3/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
  492. fableforge_agent-0.18.3/optional-skills/communication/DESCRIPTION.md +1 -0
  493. fableforge_agent-0.18.3/optional-skills/communication/one-three-one-rule/SKILL.md +104 -0
  494. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/PORT_NOTES.md +48 -0
  495. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/SKILL.md +207 -0
  496. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/prompts/system.md +32 -0
  497. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/palettes/macaron.md +33 -0
  498. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/palettes/mono-ink.md +42 -0
  499. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/palettes/neon.md +33 -0
  500. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/palettes/warm.md +32 -0
  501. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/prompt-construction.md +426 -0
  502. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/style-presets.md +80 -0
  503. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/blueprint.md +57 -0
  504. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/chalkboard.md +62 -0
  505. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/editorial.md +59 -0
  506. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/elegant.md +56 -0
  507. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/fantasy-animation.md +58 -0
  508. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/flat-doodle.md +61 -0
  509. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/flat.md +59 -0
  510. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/ink-notes.md +90 -0
  511. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/intuition-machine.md +57 -0
  512. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/minimal.md +58 -0
  513. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/nature.md +58 -0
  514. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/notion.md +58 -0
  515. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/pixel-art.md +57 -0
  516. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/playful.md +59 -0
  517. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/retro.md +59 -0
  518. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/scientific.md +59 -0
  519. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/screen-print.md +70 -0
  520. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/sketch-notes.md +56 -0
  521. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/sketch.md +57 -0
  522. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/vector-illustration.md +57 -0
  523. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/vintage.md +59 -0
  524. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/warm.md +58 -0
  525. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles/watercolor.md +58 -0
  526. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/styles.md +224 -0
  527. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/usage.md +50 -0
  528. fableforge_agent-0.18.3/optional-skills/creative/baoyu-article-illustrator/references/workflow.md +332 -0
  529. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/PORT_NOTES.md +77 -0
  530. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/SKILL.md +247 -0
  531. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/analysis-framework.md +176 -0
  532. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/chalk.md +101 -0
  533. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/ink-brush.md +97 -0
  534. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/ligne-claire.md +75 -0
  535. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/manga.md +93 -0
  536. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/minimalist.md +84 -0
  537. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/art-styles/realistic.md +89 -0
  538. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/auto-selection.md +71 -0
  539. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/base-prompt.md +98 -0
  540. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/character-template.md +180 -0
  541. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/cinematic.md +23 -0
  542. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/dense.md +23 -0
  543. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/four-panel.md +40 -0
  544. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/mixed.md +23 -0
  545. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/splash.md +23 -0
  546. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/standard.md +23 -0
  547. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/layouts/webtoon.md +30 -0
  548. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/ohmsha-guide.md +85 -0
  549. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/partial-workflows.md +106 -0
  550. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/presets/concept-story.md +121 -0
  551. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/presets/four-panel.md +107 -0
  552. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/presets/ohmsha.md +114 -0
  553. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/presets/shoujo.md +116 -0
  554. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/presets/wuxia.md +110 -0
  555. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/storyboard-template.md +143 -0
  556. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/action.md +110 -0
  557. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/dramatic.md +95 -0
  558. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/energetic.md +105 -0
  559. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/neutral.md +63 -0
  560. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/romantic.md +100 -0
  561. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/vintage.md +104 -0
  562. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/tones/warm.md +94 -0
  563. fableforge_agent-0.18.3/optional-skills/creative/baoyu-comic/references/workflow.md +401 -0
  564. fableforge_agent-0.18.3/optional-skills/creative/blender-mcp/SKILL.md +117 -0
  565. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/SKILL.md +362 -0
  566. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
  567. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
  568. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
  569. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
  570. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
  571. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
  572. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
  573. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
  574. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
  575. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
  576. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
  577. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
  578. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
  579. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
  580. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
  581. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
  582. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
  583. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
  584. fableforge_agent-0.18.3/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
  585. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/SKILL.md +177 -0
  586. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/anti-slop.md +106 -0
  587. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/exercises.md +71 -0
  588. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/full-prompt-library.md +180 -0
  589. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/heuristics.md +85 -0
  590. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/method-catalog.md +88 -0
  591. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/affinity-diagrams.md +67 -0
  592. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/analogy-and-blending.md +83 -0
  593. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/biomimicry.md +58 -0
  594. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/chance-and-remix.md +75 -0
  595. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/compression-progress.md +64 -0
  596. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/creative-discipline.md +82 -0
  597. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/defamiliarization.md +58 -0
  598. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/derive-and-mapping.md +76 -0
  599. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/first-principles.md +63 -0
  600. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/jobs-to-be-done.md +73 -0
  601. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/lateral-provocations.md +81 -0
  602. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/leverage-points.md +70 -0
  603. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/oblique-strategies.md +87 -0
  604. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/oulipo.md +75 -0
  605. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/pataphysics.md +64 -0
  606. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/pattern-languages.md +78 -0
  607. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/polya.md +77 -0
  608. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/premortem-and-inversion.md +71 -0
  609. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/scamper.md +63 -0
  610. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/story-skeletons.md +100 -0
  611. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/triz-principles.md +95 -0
  612. fableforge_agent-0.18.3/optional-skills/creative/creative-ideation/references/methods/volume-generation.md +74 -0
  613. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/SKILL.md +191 -0
  614. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/cli.md +185 -0
  615. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/composition.md +129 -0
  616. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/features.md +289 -0
  617. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/gsap.md +136 -0
  618. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/troubleshooting.md +137 -0
  619. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/references/website-to-video.md +145 -0
  620. fableforge_agent-0.18.3/optional-skills/creative/hyperframes/scripts/setup.sh +135 -0
  621. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/SKILL.md +208 -0
  622. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/assets/brief.md.tmpl +79 -0
  623. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +186 -0
  624. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/assets/soul.md.tmpl +38 -0
  625. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/examples.md +227 -0
  626. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/intake.md +166 -0
  627. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +278 -0
  628. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/monitoring.md +180 -0
  629. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/role-archetypes.md +300 -0
  630. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +302 -0
  631. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/scripts/bootstrap_pipeline.py +499 -0
  632. fableforge_agent-0.18.3/optional-skills/creative/kanban-video-orchestrator/scripts/monitor.py +195 -0
  633. fableforge_agent-0.18.3/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
  634. fableforge_agent-0.18.3/optional-skills/creative/meme-generation/SKILL.md +130 -0
  635. fableforge_agent-0.18.3/optional-skills/creative/meme-generation/scripts/.gitignore +1 -0
  636. fableforge_agent-0.18.3/optional-skills/creative/meme-generation/scripts/generate_meme.py +470 -0
  637. fableforge_agent-0.18.3/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
  638. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/ATTRIBUTION.md +54 -0
  639. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/SKILL.md +218 -0
  640. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/references/palettes.md +49 -0
  641. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/scripts/__init__.py +0 -0
  642. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/scripts/palettes.py +167 -0
  643. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/scripts/pixel_art.py +162 -0
  644. fableforge_agent-0.18.3/optional-skills/creative/pixel-art/scripts/pixel_art_video.py +345 -0
  645. fableforge_agent-0.18.3/optional-skills/devops/cli/SKILL.md +156 -0
  646. fableforge_agent-0.18.3/optional-skills/devops/cli/references/app-discovery.md +112 -0
  647. fableforge_agent-0.18.3/optional-skills/devops/cli/references/authentication.md +59 -0
  648. fableforge_agent-0.18.3/optional-skills/devops/cli/references/cli-reference.md +104 -0
  649. fableforge_agent-0.18.3/optional-skills/devops/cli/references/running-apps.md +171 -0
  650. fableforge_agent-0.18.3/optional-skills/devops/docker-management/SKILL.md +281 -0
  651. fableforge_agent-0.18.3/optional-skills/devops/hermes-s6-container-supervision/SKILL.md +178 -0
  652. fableforge_agent-0.18.3/optional-skills/devops/pinggy-tunnel/SKILL.md +309 -0
  653. fableforge_agent-0.18.3/optional-skills/devops/watchers/SKILL.md +112 -0
  654. fableforge_agent-0.18.3/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
  655. fableforge_agent-0.18.3/optional-skills/devops/watchers/scripts/watch_github.py +169 -0
  656. fableforge_agent-0.18.3/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
  657. fableforge_agent-0.18.3/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
  658. fableforge_agent-0.18.3/optional-skills/dogfood/DESCRIPTION.md +3 -0
  659. fableforge_agent-0.18.3/optional-skills/dogfood/adversarial-ux-test/SKILL.md +191 -0
  660. fableforge_agent-0.18.3/optional-skills/email/agentmail/SKILL.md +126 -0
  661. fableforge_agent-0.18.3/optional-skills/finance/3-statement-model/SKILL.md +433 -0
  662. fableforge_agent-0.18.3/optional-skills/finance/3-statement-model/references/formatting.md +118 -0
  663. fableforge_agent-0.18.3/optional-skills/finance/3-statement-model/references/formulas.md +292 -0
  664. fableforge_agent-0.18.3/optional-skills/finance/3-statement-model/references/sec-filings.md +125 -0
  665. fableforge_agent-0.18.3/optional-skills/finance/comps-analysis/SKILL.md +662 -0
  666. fableforge_agent-0.18.3/optional-skills/finance/dcf-model/SKILL.md +1270 -0
  667. fableforge_agent-0.18.3/optional-skills/finance/dcf-model/TROUBLESHOOTING.md +40 -0
  668. fableforge_agent-0.18.3/optional-skills/finance/dcf-model/requirements.txt +7 -0
  669. fableforge_agent-0.18.3/optional-skills/finance/dcf-model/scripts/validate_dcf.py +291 -0
  670. fableforge_agent-0.18.3/optional-skills/finance/excel-author/SKILL.md +244 -0
  671. fableforge_agent-0.18.3/optional-skills/finance/excel-author/scripts/recalc.py +88 -0
  672. fableforge_agent-0.18.3/optional-skills/finance/lbo-model/SKILL.md +291 -0
  673. fableforge_agent-0.18.3/optional-skills/finance/merger-model/SKILL.md +144 -0
  674. fableforge_agent-0.18.3/optional-skills/finance/pptx-author/SKILL.md +173 -0
  675. fableforge_agent-0.18.3/optional-skills/finance/stocks/SKILL.md +95 -0
  676. fableforge_agent-0.18.3/optional-skills/finance/stocks/scripts/stocks_client.py +755 -0
  677. fableforge_agent-0.18.3/optional-skills/gaming/DESCRIPTION.md +3 -0
  678. fableforge_agent-0.18.3/optional-skills/gaming/minecraft-modpack-server/SKILL.md +187 -0
  679. fableforge_agent-0.18.3/optional-skills/gaming/pokemon-player/SKILL.md +216 -0
  680. fableforge_agent-0.18.3/optional-skills/health/DESCRIPTION.md +1 -0
  681. fableforge_agent-0.18.3/optional-skills/health/fitness-nutrition/SKILL.md +256 -0
  682. fableforge_agent-0.18.3/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
  683. fableforge_agent-0.18.3/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
  684. fableforge_agent-0.18.3/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +85 -0
  685. fableforge_agent-0.18.3/optional-skills/health/neuroskill-bci/SKILL.md +459 -0
  686. fableforge_agent-0.18.3/optional-skills/health/neuroskill-bci/references/api.md +286 -0
  687. fableforge_agent-0.18.3/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
  688. fableforge_agent-0.18.3/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
  689. fableforge_agent-0.18.3/optional-skills/mcp/DESCRIPTION.md +3 -0
  690. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/SKILL.md +300 -0
  691. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
  692. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
  693. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
  694. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
  695. fableforge_agent-0.18.3/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
  696. fableforge_agent-0.18.3/optional-skills/mcp/mcporter/SKILL.md +123 -0
  697. fableforge_agent-0.18.3/optional-skills/migration/DESCRIPTION.md +2 -0
  698. fableforge_agent-0.18.3/optional-skills/migration/openclaw-migration/SKILL.md +298 -0
  699. fableforge_agent-0.18.3/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
  700. fableforge_agent-0.18.3/optional-skills/mlops/accelerate/SKILL.md +336 -0
  701. fableforge_agent-0.18.3/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
  702. fableforge_agent-0.18.3/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
  703. fableforge_agent-0.18.3/optional-skills/mlops/accelerate/references/performance.md +525 -0
  704. fableforge_agent-0.18.3/optional-skills/mlops/chroma/SKILL.md +410 -0
  705. fableforge_agent-0.18.3/optional-skills/mlops/chroma/references/integration.md +38 -0
  706. fableforge_agent-0.18.3/optional-skills/mlops/clip/SKILL.md +257 -0
  707. fableforge_agent-0.18.3/optional-skills/mlops/clip/references/applications.md +207 -0
  708. fableforge_agent-0.18.3/optional-skills/mlops/faiss/SKILL.md +225 -0
  709. fableforge_agent-0.18.3/optional-skills/mlops/faiss/references/index_types.md +280 -0
  710. fableforge_agent-0.18.3/optional-skills/mlops/flash-attention/SKILL.md +367 -0
  711. fableforge_agent-0.18.3/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
  712. fableforge_agent-0.18.3/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
  713. fableforge_agent-0.18.3/optional-skills/mlops/guidance/SKILL.md +576 -0
  714. fableforge_agent-0.18.3/optional-skills/mlops/guidance/references/backends.md +554 -0
  715. fableforge_agent-0.18.3/optional-skills/mlops/guidance/references/constraints.md +674 -0
  716. fableforge_agent-0.18.3/optional-skills/mlops/guidance/references/examples.md +767 -0
  717. fableforge_agent-0.18.3/optional-skills/mlops/huggingface-tokenizers/SKILL.md +520 -0
  718. fableforge_agent-0.18.3/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
  719. fableforge_agent-0.18.3/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
  720. fableforge_agent-0.18.3/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
  721. fableforge_agent-0.18.3/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
  722. fableforge_agent-0.18.3/optional-skills/mlops/inference/outlines/SKILL.md +656 -0
  723. fableforge_agent-0.18.3/optional-skills/mlops/inference/outlines/references/backends.md +615 -0
  724. fableforge_agent-0.18.3/optional-skills/mlops/inference/outlines/references/examples.md +773 -0
  725. fableforge_agent-0.18.3/optional-skills/mlops/inference/outlines/references/json_generation.md +652 -0
  726. fableforge_agent-0.18.3/optional-skills/mlops/instructor/SKILL.md +744 -0
  727. fableforge_agent-0.18.3/optional-skills/mlops/instructor/references/examples.md +107 -0
  728. fableforge_agent-0.18.3/optional-skills/mlops/instructor/references/providers.md +70 -0
  729. fableforge_agent-0.18.3/optional-skills/mlops/instructor/references/validation.md +606 -0
  730. fableforge_agent-0.18.3/optional-skills/mlops/lambda-labs/SKILL.md +549 -0
  731. fableforge_agent-0.18.3/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
  732. fableforge_agent-0.18.3/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
  733. fableforge_agent-0.18.3/optional-skills/mlops/llava/SKILL.md +308 -0
  734. fableforge_agent-0.18.3/optional-skills/mlops/llava/references/training.md +197 -0
  735. fableforge_agent-0.18.3/optional-skills/mlops/modal/SKILL.md +345 -0
  736. fableforge_agent-0.18.3/optional-skills/mlops/modal/references/advanced-usage.md +503 -0
  737. fableforge_agent-0.18.3/optional-skills/mlops/modal/references/troubleshooting.md +494 -0
  738. fableforge_agent-0.18.3/optional-skills/mlops/nemo-curator/SKILL.md +387 -0
  739. fableforge_agent-0.18.3/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
  740. fableforge_agent-0.18.3/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
  741. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/SKILL.md +342 -0
  742. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/references/analysis-modules.md +166 -0
  743. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/references/methods-guide.md +141 -0
  744. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/templates/abliteration-config.yaml +33 -0
  745. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/templates/analysis-study.yaml +40 -0
  746. fableforge_agent-0.18.3/optional-skills/mlops/obliteratus/templates/batch-abliteration.yaml +41 -0
  747. fableforge_agent-0.18.3/optional-skills/mlops/peft/SKILL.md +435 -0
  748. fableforge_agent-0.18.3/optional-skills/mlops/peft/references/advanced-usage.md +514 -0
  749. fableforge_agent-0.18.3/optional-skills/mlops/peft/references/troubleshooting.md +480 -0
  750. fableforge_agent-0.18.3/optional-skills/mlops/pinecone/SKILL.md +362 -0
  751. fableforge_agent-0.18.3/optional-skills/mlops/pinecone/references/deployment.md +181 -0
  752. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-fsdp/SKILL.md +130 -0
  753. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-fsdp/references/index.md +7 -0
  754. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-fsdp/references/other.md +4261 -0
  755. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-lightning/SKILL.md +350 -0
  756. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
  757. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
  758. fableforge_agent-0.18.3/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
  759. fableforge_agent-0.18.3/optional-skills/mlops/qdrant/SKILL.md +497 -0
  760. fableforge_agent-0.18.3/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
  761. fableforge_agent-0.18.3/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
  762. fableforge_agent-0.18.3/optional-skills/mlops/research/DESCRIPTION.md +3 -0
  763. fableforge_agent-0.18.3/optional-skills/mlops/research/dspy/SKILL.md +594 -0
  764. fableforge_agent-0.18.3/optional-skills/mlops/research/dspy/references/examples.md +663 -0
  765. fableforge_agent-0.18.3/optional-skills/mlops/research/dspy/references/modules.md +475 -0
  766. fableforge_agent-0.18.3/optional-skills/mlops/research/dspy/references/optimizers.md +566 -0
  767. fableforge_agent-0.18.3/optional-skills/mlops/saelens/SKILL.md +390 -0
  768. fableforge_agent-0.18.3/optional-skills/mlops/saelens/references/README.md +69 -0
  769. fableforge_agent-0.18.3/optional-skills/mlops/saelens/references/api.md +333 -0
  770. fableforge_agent-0.18.3/optional-skills/mlops/saelens/references/tutorials.md +318 -0
  771. fableforge_agent-0.18.3/optional-skills/mlops/simpo/SKILL.md +223 -0
  772. fableforge_agent-0.18.3/optional-skills/mlops/simpo/references/datasets.md +478 -0
  773. fableforge_agent-0.18.3/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
  774. fableforge_agent-0.18.3/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
  775. fableforge_agent-0.18.3/optional-skills/mlops/slime/SKILL.md +468 -0
  776. fableforge_agent-0.18.3/optional-skills/mlops/slime/references/api-reference.md +392 -0
  777. fableforge_agent-0.18.3/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
  778. fableforge_agent-0.18.3/optional-skills/mlops/stable-diffusion/SKILL.md +523 -0
  779. fableforge_agent-0.18.3/optional-skills/mlops/stable-diffusion/references/advanced-usage.md +716 -0
  780. fableforge_agent-0.18.3/optional-skills/mlops/stable-diffusion/references/troubleshooting.md +555 -0
  781. fableforge_agent-0.18.3/optional-skills/mlops/tensorrt-llm/SKILL.md +191 -0
  782. fableforge_agent-0.18.3/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
  783. fableforge_agent-0.18.3/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
  784. fableforge_agent-0.18.3/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
  785. fableforge_agent-0.18.3/optional-skills/mlops/torchtitan/SKILL.md +362 -0
  786. fableforge_agent-0.18.3/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
  787. fableforge_agent-0.18.3/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
  788. fableforge_agent-0.18.3/optional-skills/mlops/torchtitan/references/float8.md +133 -0
  789. fableforge_agent-0.18.3/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
  790. fableforge_agent-0.18.3/optional-skills/mlops/training/axolotl/SKILL.md +166 -0
  791. fableforge_agent-0.18.3/optional-skills/mlops/training/axolotl/references/api.md +5548 -0
  792. fableforge_agent-0.18.3/optional-skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
  793. fableforge_agent-0.18.3/optional-skills/mlops/training/axolotl/references/index.md +15 -0
  794. fableforge_agent-0.18.3/optional-skills/mlops/training/axolotl/references/other.md +3563 -0
  795. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/SKILL.md +463 -0
  796. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
  797. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/references/grpo-training.md +504 -0
  798. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
  799. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
  800. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
  801. fableforge_agent-0.18.3/optional-skills/mlops/training/trl-fine-tuning/templates/basic_grpo_training.py +228 -0
  802. fableforge_agent-0.18.3/optional-skills/mlops/training/unsloth/SKILL.md +84 -0
  803. fableforge_agent-0.18.3/optional-skills/mlops/training/unsloth/references/index.md +7 -0
  804. fableforge_agent-0.18.3/optional-skills/mlops/training/unsloth/references/llms-full.md +16799 -0
  805. fableforge_agent-0.18.3/optional-skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
  806. fableforge_agent-0.18.3/optional-skills/mlops/training/unsloth/references/llms.md +82 -0
  807. fableforge_agent-0.18.3/optional-skills/mlops/whisper/SKILL.md +321 -0
  808. fableforge_agent-0.18.3/optional-skills/mlops/whisper/references/languages.md +189 -0
  809. fableforge_agent-0.18.3/optional-skills/payments/mpp-agent/SKILL.md +124 -0
  810. fableforge_agent-0.18.3/optional-skills/payments/stripe-link-cli/SKILL.md +184 -0
  811. fableforge_agent-0.18.3/optional-skills/payments/stripe-projects/SKILL.md +120 -0
  812. fableforge_agent-0.18.3/optional-skills/productivity/canvas/SKILL.md +98 -0
  813. fableforge_agent-0.18.3/optional-skills/productivity/canvas/scripts/canvas_api.py +160 -0
  814. fableforge_agent-0.18.3/optional-skills/productivity/here-now/SKILL.md +217 -0
  815. fableforge_agent-0.18.3/optional-skills/productivity/here-now/scripts/drive.sh +406 -0
  816. fableforge_agent-0.18.3/optional-skills/productivity/here-now/scripts/publish.sh +445 -0
  817. fableforge_agent-0.18.3/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
  818. fableforge_agent-0.18.3/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
  819. fableforge_agent-0.18.3/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
  820. fableforge_agent-0.18.3/optional-skills/productivity/shop/SKILL.md +224 -0
  821. fableforge_agent-0.18.3/optional-skills/productivity/shop/references/catalog-mcp.md +236 -0
  822. fableforge_agent-0.18.3/optional-skills/productivity/shop/references/direct-api.md +278 -0
  823. fableforge_agent-0.18.3/optional-skills/productivity/shop/references/legal.md +3 -0
  824. fableforge_agent-0.18.3/optional-skills/productivity/shop/references/safety.md +36 -0
  825. fableforge_agent-0.18.3/optional-skills/productivity/shopify/SKILL.md +373 -0
  826. fableforge_agent-0.18.3/optional-skills/productivity/siyuan/SKILL.md +298 -0
  827. fableforge_agent-0.18.3/optional-skills/productivity/telephony/SKILL.md +418 -0
  828. fableforge_agent-0.18.3/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
  829. fableforge_agent-0.18.3/optional-skills/research/bioinformatics/SKILL.md +235 -0
  830. fableforge_agent-0.18.3/optional-skills/research/darwinian-evolver/SKILL.md +199 -0
  831. fableforge_agent-0.18.3/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
  832. fableforge_agent-0.18.3/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +92 -0
  833. fableforge_agent-0.18.3/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
  834. fableforge_agent-0.18.3/optional-skills/research/domain-intel/SKILL.md +97 -0
  835. fableforge_agent-0.18.3/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
  836. fableforge_agent-0.18.3/optional-skills/research/drug-discovery/SKILL.md +227 -0
  837. fableforge_agent-0.18.3/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
  838. fableforge_agent-0.18.3/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
  839. fableforge_agent-0.18.3/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
  840. fableforge_agent-0.18.3/optional-skills/research/duckduckgo-search/SKILL.md +238 -0
  841. fableforge_agent-0.18.3/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
  842. fableforge_agent-0.18.3/optional-skills/research/gitnexus-explorer/SKILL.md +214 -0
  843. fableforge_agent-0.18.3/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
  844. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/SKILL.md +277 -0
  845. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/courtlistener.md +98 -0
  846. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/gdelt.md +104 -0
  847. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/icij-offshore.md +104 -0
  848. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/nyc-acris.md +90 -0
  849. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/ofac-sdn.md +92 -0
  850. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/opencorporates.md +103 -0
  851. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/sec-edgar.md +83 -0
  852. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/senate-ld.md +89 -0
  853. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/usaspending.md +97 -0
  854. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/wayback.md +93 -0
  855. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/references/sources/wikipedia.md +107 -0
  856. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/_http.py +82 -0
  857. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/_normalize.py +67 -0
  858. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/build_findings.py +221 -0
  859. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/entity_resolution.py +228 -0
  860. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_courtlistener.py +149 -0
  861. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_gdelt.py +161 -0
  862. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_icij_offshore.py +234 -0
  863. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_nyc_acris.py +203 -0
  864. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_ofac_sdn.py +175 -0
  865. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_opencorporates.py +191 -0
  866. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_sec_edgar.py +184 -0
  867. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_senate_ld.py +146 -0
  868. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_usaspending.py +170 -0
  869. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_wayback.py +142 -0
  870. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/fetch_wikipedia.py +266 -0
  871. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/scripts/timing_analysis.py +252 -0
  872. fableforge_agent-0.18.3/optional-skills/research/osint-investigation/templates/source-template.md +59 -0
  873. fableforge_agent-0.18.3/optional-skills/research/parallel-cli/SKILL.md +391 -0
  874. fableforge_agent-0.18.3/optional-skills/research/qmd/SKILL.md +441 -0
  875. fableforge_agent-0.18.3/optional-skills/research/scrapling/SKILL.md +336 -0
  876. fableforge_agent-0.18.3/optional-skills/research/searxng-search/SKILL.md +212 -0
  877. fableforge_agent-0.18.3/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
  878. fableforge_agent-0.18.3/optional-skills/security/1password/SKILL.md +163 -0
  879. fableforge_agent-0.18.3/optional-skills/security/1password/references/cli-examples.md +31 -0
  880. fableforge_agent-0.18.3/optional-skills/security/1password/references/get-started.md +21 -0
  881. fableforge_agent-0.18.3/optional-skills/security/DESCRIPTION.md +3 -0
  882. fableforge_agent-0.18.3/optional-skills/security/godmode/SKILL.md +403 -0
  883. fableforge_agent-0.18.3/optional-skills/security/godmode/references/jailbreak-templates.md +128 -0
  884. fableforge_agent-0.18.3/optional-skills/security/godmode/references/refusal-detection.md +142 -0
  885. fableforge_agent-0.18.3/optional-skills/security/godmode/scripts/auto_jailbreak.py +771 -0
  886. fableforge_agent-0.18.3/optional-skills/security/godmode/scripts/godmode_race.py +530 -0
  887. fableforge_agent-0.18.3/optional-skills/security/godmode/scripts/load_godmode.py +45 -0
  888. fableforge_agent-0.18.3/optional-skills/security/godmode/scripts/parseltongue.py +550 -0
  889. fableforge_agent-0.18.3/optional-skills/security/godmode/templates/prefill-subtle.json +10 -0
  890. fableforge_agent-0.18.3/optional-skills/security/godmode/templates/prefill.json +18 -0
  891. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/SKILL.md +423 -0
  892. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
  893. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
  894. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
  895. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
  896. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
  897. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
  898. fableforge_agent-0.18.3/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
  899. fableforge_agent-0.18.3/optional-skills/security/sherlock/SKILL.md +193 -0
  900. fableforge_agent-0.18.3/optional-skills/security/unbroker/README.md +164 -0
  901. fableforge_agent-0.18.3/optional-skills/security/unbroker/SKILL.md +317 -0
  902. fableforge_agent-0.18.3/optional-skills/security/unbroker/assets/unbroker.png +0 -0
  903. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/addresses.json +52 -0
  904. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/advancedbackgroundchecks.json +50 -0
  905. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/beenverified.json +56 -0
  906. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/clustal.json +47 -0
  907. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/clustrmaps.json +52 -0
  908. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/cyberbackgroundchecks.json +53 -0
  909. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/familytreenow.json +50 -0
  910. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/fastpeoplesearch.json +44 -0
  911. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/intelius.json +99 -0
  912. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/mylife.json +35 -0
  913. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/nuwber.json +52 -0
  914. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/peekyou.json +53 -0
  915. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/peoplefinders.json +53 -0
  916. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/radaris.json +58 -0
  917. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/rehold.json +48 -0
  918. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/searchpeoplefree.json +53 -0
  919. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/socialcatfish.json +52 -0
  920. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/spokeo.json +56 -0
  921. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/thatsthem.json +46 -0
  922. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/truepeoplesearch.json +44 -0
  923. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/usphonebook.json +53 -0
  924. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/brokers/whitepages.json +57 -0
  925. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/legal/ccpa.md +27 -0
  926. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/legal/drop.md +34 -0
  927. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/legal/gdpr.md +20 -0
  928. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/methods.md +361 -0
  929. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/site-playbooks.md +56 -0
  930. fableforge_agent-0.18.3/optional-skills/security/unbroker/references/state-machine.md +56 -0
  931. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/autopilot.py +417 -0
  932. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/badbool.py +177 -0
  933. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/brokers.py +77 -0
  934. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/cdp.py +159 -0
  935. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/config.py +144 -0
  936. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/crypto.py +88 -0
  937. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/dossier.py +135 -0
  938. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/email_modes.py +76 -0
  939. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/emailer.py +342 -0
  940. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/ledger.py +170 -0
  941. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/legal.py +63 -0
  942. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/paths.py +79 -0
  943. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/pdd.py +914 -0
  944. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/registry.py +293 -0
  945. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/report.py +161 -0
  946. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/scan.py +32 -0
  947. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/storage.py +138 -0
  948. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/tiers.py +283 -0
  949. fableforge_agent-0.18.3/optional-skills/security/unbroker/scripts/vectors.py +53 -0
  950. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/consent/authorization.md +15 -0
  951. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/emails/ccpa-authorized-agent.txt +24 -0
  952. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/emails/ccpa-deletion.txt +22 -0
  953. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/emails/ccpa-indirect-deletion.txt +30 -0
  954. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/emails/gdpr-erasure.txt +19 -0
  955. fableforge_agent-0.18.3/optional-skills/security/unbroker/templates/emails/generic-optout.txt +15 -0
  956. fableforge_agent-0.18.3/optional-skills/security/web-pentest/SKILL.md +333 -0
  957. fableforge_agent-0.18.3/optional-skills/security/web-pentest/references/bypass-techniques.md +133 -0
  958. fableforge_agent-0.18.3/optional-skills/security/web-pentest/references/exploitation-techniques.md +204 -0
  959. fableforge_agent-0.18.3/optional-skills/security/web-pentest/references/scope-enforcement.md +110 -0
  960. fableforge_agent-0.18.3/optional-skills/security/web-pentest/references/vuln-taxonomy.md +81 -0
  961. fableforge_agent-0.18.3/optional-skills/security/web-pentest/scripts/recon-scan.sh +126 -0
  962. fableforge_agent-0.18.3/optional-skills/security/web-pentest/templates/authorization.md +69 -0
  963. fableforge_agent-0.18.3/optional-skills/security/web-pentest/templates/exploitation-queue.json +34 -0
  964. fableforge_agent-0.18.3/optional-skills/security/web-pentest/templates/pentest-report.md +178 -0
  965. fableforge_agent-0.18.3/optional-skills/software-development/code-wiki/SKILL.md +445 -0
  966. fableforge_agent-0.18.3/optional-skills/software-development/code-wiki/templates/README.md +31 -0
  967. fableforge_agent-0.18.3/optional-skills/software-development/code-wiki/templates/architecture.md +30 -0
  968. fableforge_agent-0.18.3/optional-skills/software-development/code-wiki/templates/getting-started.md +47 -0
  969. fableforge_agent-0.18.3/optional-skills/software-development/code-wiki/templates/module.md +38 -0
  970. fableforge_agent-0.18.3/optional-skills/software-development/rest-graphql-debug/SKILL.md +514 -0
  971. fableforge_agent-0.18.3/optional-skills/software-development/subagent-driven-development/SKILL.md +352 -0
  972. fableforge_agent-0.18.3/optional-skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
  973. fableforge_agent-0.18.3/optional-skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
  974. fableforge_agent-0.18.3/optional-skills/web-development/DESCRIPTION.md +5 -0
  975. fableforge_agent-0.18.3/optional-skills/web-development/cloudflare-temporary-deploy/SKILL.md +127 -0
  976. fableforge_agent-0.18.3/optional-skills/web-development/cloudflare-temporary-deploy/scripts/parse_deploy_output.py +122 -0
  977. fableforge_agent-0.18.3/optional-skills/web-development/page-agent/SKILL.md +190 -0
  978. fableforge_agent-0.18.3/plugins/__init__.py +1 -0
  979. fableforge_agent-0.18.3/plugins/browser/browser_use/__init__.py +14 -0
  980. fableforge_agent-0.18.3/plugins/browser/browser_use/plugin.yaml +7 -0
  981. fableforge_agent-0.18.3/plugins/browser/browser_use/provider.py +317 -0
  982. fableforge_agent-0.18.3/plugins/browser/browserbase/__init__.py +15 -0
  983. fableforge_agent-0.18.3/plugins/browser/browserbase/plugin.yaml +7 -0
  984. fableforge_agent-0.18.3/plugins/browser/browserbase/provider.py +297 -0
  985. fableforge_agent-0.18.3/plugins/browser/firecrawl/__init__.py +16 -0
  986. fableforge_agent-0.18.3/plugins/browser/firecrawl/plugin.yaml +7 -0
  987. fableforge_agent-0.18.3/plugins/browser/firecrawl/provider.py +171 -0
  988. fableforge_agent-0.18.3/plugins/context_engine/__init__.py +285 -0
  989. fableforge_agent-0.18.3/plugins/cron_providers/__init__.py +356 -0
  990. fableforge_agent-0.18.3/plugins/cron_providers/chronos/__init__.py +241 -0
  991. fableforge_agent-0.18.3/plugins/cron_providers/chronos/_nas_client.py +123 -0
  992. fableforge_agent-0.18.3/plugins/cron_providers/chronos/plugin.yaml +9 -0
  993. fableforge_agent-0.18.3/plugins/cron_providers/chronos/verify.py +103 -0
  994. fableforge_agent-0.18.3/plugins/dashboard_auth/basic/__init__.py +491 -0
  995. fableforge_agent-0.18.3/plugins/dashboard_auth/basic/plugin.yaml +7 -0
  996. fableforge_agent-0.18.3/plugins/dashboard_auth/drain/__init__.py +291 -0
  997. fableforge_agent-0.18.3/plugins/dashboard_auth/drain/plugin.yaml +7 -0
  998. fableforge_agent-0.18.3/plugins/dashboard_auth/nous/__init__.py +667 -0
  999. fableforge_agent-0.18.3/plugins/dashboard_auth/nous/plugin.yaml +7 -0
  1000. fableforge_agent-0.18.3/plugins/dashboard_auth/self_hosted/__init__.py +858 -0
  1001. fableforge_agent-0.18.3/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
  1002. fableforge_agent-0.18.3/plugins/disk-cleanup/__init__.py +316 -0
  1003. fableforge_agent-0.18.3/plugins/disk-cleanup/disk_cleanup.py +588 -0
  1004. fableforge_agent-0.18.3/plugins/disk-cleanup/plugin.yaml +7 -0
  1005. fableforge_agent-0.18.3/plugins/fableforge-achievements/dashboard/manifest.json +11 -0
  1006. fableforge_agent-0.18.3/plugins/fableforge-achievements/dashboard/plugin_api.py +1061 -0
  1007. fableforge_agent-0.18.3/plugins/google_meet/__init__.py +103 -0
  1008. fableforge_agent-0.18.3/plugins/google_meet/audio_bridge.py +248 -0
  1009. fableforge_agent-0.18.3/plugins/google_meet/cli.py +476 -0
  1010. fableforge_agent-0.18.3/plugins/google_meet/meet_bot.py +858 -0
  1011. fableforge_agent-0.18.3/plugins/google_meet/node/__init__.py +54 -0
  1012. fableforge_agent-0.18.3/plugins/google_meet/node/cli.py +125 -0
  1013. fableforge_agent-0.18.3/plugins/google_meet/node/client.py +107 -0
  1014. fableforge_agent-0.18.3/plugins/google_meet/node/protocol.py +124 -0
  1015. fableforge_agent-0.18.3/plugins/google_meet/node/registry.py +112 -0
  1016. fableforge_agent-0.18.3/plugins/google_meet/node/server.py +200 -0
  1017. fableforge_agent-0.18.3/plugins/google_meet/plugin.yaml +16 -0
  1018. fableforge_agent-0.18.3/plugins/google_meet/process_manager.py +323 -0
  1019. fableforge_agent-0.18.3/plugins/google_meet/realtime/__init__.py +10 -0
  1020. fableforge_agent-0.18.3/plugins/google_meet/realtime/openai_client.py +332 -0
  1021. fableforge_agent-0.18.3/plugins/google_meet/tools.py +348 -0
  1022. fableforge_agent-0.18.3/plugins/image_gen/fal/__init__.py +211 -0
  1023. fableforge_agent-0.18.3/plugins/image_gen/fal/plugin.yaml +7 -0
  1024. fableforge_agent-0.18.3/plugins/image_gen/krea/__init__.py +743 -0
  1025. fableforge_agent-0.18.3/plugins/image_gen/krea/plugin.yaml +7 -0
  1026. fableforge_agent-0.18.3/plugins/image_gen/openai/__init__.py +417 -0
  1027. fableforge_agent-0.18.3/plugins/image_gen/openai/plugin.yaml +7 -0
  1028. fableforge_agent-0.18.3/plugins/image_gen/openai-codex/__init__.py +596 -0
  1029. fableforge_agent-0.18.3/plugins/image_gen/openai-codex/plugin.yaml +5 -0
  1030. fableforge_agent-0.18.3/plugins/image_gen/openrouter/__init__.py +526 -0
  1031. fableforge_agent-0.18.3/plugins/image_gen/openrouter/plugin.yaml +7 -0
  1032. fableforge_agent-0.18.3/plugins/image_gen/xai/__init__.py +494 -0
  1033. fableforge_agent-0.18.3/plugins/image_gen/xai/plugin.yaml +7 -0
  1034. fableforge_agent-0.18.3/plugins/kanban/dashboard/manifest.json +14 -0
  1035. fableforge_agent-0.18.3/plugins/kanban/dashboard/plugin_api.py +2454 -0
  1036. fableforge_agent-0.18.3/plugins/memory/__init__.py +450 -0
  1037. fableforge_agent-0.18.3/plugins/memory/byterover/__init__.py +449 -0
  1038. fableforge_agent-0.18.3/plugins/memory/byterover/plugin.yaml +9 -0
  1039. fableforge_agent-0.18.3/plugins/memory/hindsight/__init__.py +1968 -0
  1040. fableforge_agent-0.18.3/plugins/memory/hindsight/plugin.yaml +8 -0
  1041. fableforge_agent-0.18.3/plugins/memory/holographic/__init__.py +419 -0
  1042. fableforge_agent-0.18.3/plugins/memory/holographic/holographic.py +203 -0
  1043. fableforge_agent-0.18.3/plugins/memory/holographic/plugin.yaml +5 -0
  1044. fableforge_agent-0.18.3/plugins/memory/holographic/retrieval.py +654 -0
  1045. fableforge_agent-0.18.3/plugins/memory/holographic/store.py +585 -0
  1046. fableforge_agent-0.18.3/plugins/memory/honcho/__init__.py +1432 -0
  1047. fableforge_agent-0.18.3/plugins/memory/honcho/cli.py +1864 -0
  1048. fableforge_agent-0.18.3/plugins/memory/honcho/client.py +920 -0
  1049. fableforge_agent-0.18.3/plugins/memory/honcho/oauth.py +371 -0
  1050. fableforge_agent-0.18.3/plugins/memory/honcho/oauth_flow.py +431 -0
  1051. fableforge_agent-0.18.3/plugins/memory/honcho/plugin.yaml +7 -0
  1052. fableforge_agent-0.18.3/plugins/memory/honcho/session.py +1344 -0
  1053. fableforge_agent-0.18.3/plugins/memory/mem0/__init__.py +627 -0
  1054. fableforge_agent-0.18.3/plugins/memory/mem0/_backend.py +298 -0
  1055. fableforge_agent-0.18.3/plugins/memory/mem0/_oss_providers.py +84 -0
  1056. fableforge_agent-0.18.3/plugins/memory/mem0/_setup.py +981 -0
  1057. fableforge_agent-0.18.3/plugins/memory/mem0/plugin.yaml +5 -0
  1058. fableforge_agent-0.18.3/plugins/memory/openviking/__init__.py +3725 -0
  1059. fableforge_agent-0.18.3/plugins/memory/openviking/plugin.yaml +8 -0
  1060. fableforge_agent-0.18.3/plugins/memory/retaindb/__init__.py +771 -0
  1061. fableforge_agent-0.18.3/plugins/memory/retaindb/plugin.yaml +7 -0
  1062. fableforge_agent-0.18.3/plugins/memory/supermemory/__init__.py +1021 -0
  1063. fableforge_agent-0.18.3/plugins/memory/supermemory/plugin.yaml +5 -0
  1064. fableforge_agent-0.18.3/plugins/model-providers/alibaba/__init__.py +13 -0
  1065. fableforge_agent-0.18.3/plugins/model-providers/alibaba/plugin.yaml +5 -0
  1066. fableforge_agent-0.18.3/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
  1067. fableforge_agent-0.18.3/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
  1068. fableforge_agent-0.18.3/plugins/model-providers/anthropic/__init__.py +53 -0
  1069. fableforge_agent-0.18.3/plugins/model-providers/anthropic/plugin.yaml +5 -0
  1070. fableforge_agent-0.18.3/plugins/model-providers/arcee/__init__.py +13 -0
  1071. fableforge_agent-0.18.3/plugins/model-providers/arcee/plugin.yaml +5 -0
  1072. fableforge_agent-0.18.3/plugins/model-providers/azure-foundry/__init__.py +21 -0
  1073. fableforge_agent-0.18.3/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
  1074. fableforge_agent-0.18.3/plugins/model-providers/bedrock/__init__.py +30 -0
  1075. fableforge_agent-0.18.3/plugins/model-providers/bedrock/plugin.yaml +5 -0
  1076. fableforge_agent-0.18.3/plugins/model-providers/copilot/__init__.py +58 -0
  1077. fableforge_agent-0.18.3/plugins/model-providers/copilot/plugin.yaml +5 -0
  1078. fableforge_agent-0.18.3/plugins/model-providers/copilot-acp/__init__.py +35 -0
  1079. fableforge_agent-0.18.3/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
  1080. fableforge_agent-0.18.3/plugins/model-providers/custom/__init__.py +94 -0
  1081. fableforge_agent-0.18.3/plugins/model-providers/custom/plugin.yaml +5 -0
  1082. fableforge_agent-0.18.3/plugins/model-providers/deepseek/__init__.py +100 -0
  1083. fableforge_agent-0.18.3/plugins/model-providers/deepseek/plugin.yaml +5 -0
  1084. fableforge_agent-0.18.3/plugins/model-providers/gemini/__init__.py +61 -0
  1085. fableforge_agent-0.18.3/plugins/model-providers/gemini/plugin.yaml +5 -0
  1086. fableforge_agent-0.18.3/plugins/model-providers/gmi/__init__.py +31 -0
  1087. fableforge_agent-0.18.3/plugins/model-providers/gmi/plugin.yaml +5 -0
  1088. fableforge_agent-0.18.3/plugins/model-providers/huggingface/__init__.py +20 -0
  1089. fableforge_agent-0.18.3/plugins/model-providers/huggingface/plugin.yaml +5 -0
  1090. fableforge_agent-0.18.3/plugins/model-providers/kilocode/__init__.py +14 -0
  1091. fableforge_agent-0.18.3/plugins/model-providers/kilocode/plugin.yaml +5 -0
  1092. fableforge_agent-0.18.3/plugins/model-providers/kimi-coding/__init__.py +80 -0
  1093. fableforge_agent-0.18.3/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
  1094. fableforge_agent-0.18.3/plugins/model-providers/minimax/__init__.py +97 -0
  1095. fableforge_agent-0.18.3/plugins/model-providers/minimax/plugin.yaml +5 -0
  1096. fableforge_agent-0.18.3/plugins/model-providers/nous/__init__.py +54 -0
  1097. fableforge_agent-0.18.3/plugins/model-providers/nous/plugin.yaml +5 -0
  1098. fableforge_agent-0.18.3/plugins/model-providers/novita/__init__.py +27 -0
  1099. fableforge_agent-0.18.3/plugins/model-providers/novita/plugin.yaml +5 -0
  1100. fableforge_agent-0.18.3/plugins/model-providers/nvidia/__init__.py +21 -0
  1101. fableforge_agent-0.18.3/plugins/model-providers/nvidia/plugin.yaml +5 -0
  1102. fableforge_agent-0.18.3/plugins/model-providers/ollama-cloud/__init__.py +73 -0
  1103. fableforge_agent-0.18.3/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
  1104. fableforge_agent-0.18.3/plugins/model-providers/openai-codex/__init__.py +15 -0
  1105. fableforge_agent-0.18.3/plugins/model-providers/openai-codex/plugin.yaml +5 -0
  1106. fableforge_agent-0.18.3/plugins/model-providers/opencode-zen/__init__.py +147 -0
  1107. fableforge_agent-0.18.3/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
  1108. fableforge_agent-0.18.3/plugins/model-providers/openrouter/__init__.py +188 -0
  1109. fableforge_agent-0.18.3/plugins/model-providers/openrouter/plugin.yaml +5 -0
  1110. fableforge_agent-0.18.3/plugins/model-providers/qwen-oauth/__init__.py +82 -0
  1111. fableforge_agent-0.18.3/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
  1112. fableforge_agent-0.18.3/plugins/model-providers/stepfun/__init__.py +14 -0
  1113. fableforge_agent-0.18.3/plugins/model-providers/stepfun/plugin.yaml +5 -0
  1114. fableforge_agent-0.18.3/plugins/model-providers/vertex/__init__.py +75 -0
  1115. fableforge_agent-0.18.3/plugins/model-providers/vertex/plugin.yaml +5 -0
  1116. fableforge_agent-0.18.3/plugins/model-providers/xai/__init__.py +15 -0
  1117. fableforge_agent-0.18.3/plugins/model-providers/xai/plugin.yaml +5 -0
  1118. fableforge_agent-0.18.3/plugins/model-providers/xiaomi/__init__.py +16 -0
  1119. fableforge_agent-0.18.3/plugins/model-providers/xiaomi/plugin.yaml +5 -0
  1120. fableforge_agent-0.18.3/plugins/model-providers/zai/__init__.py +127 -0
  1121. fableforge_agent-0.18.3/plugins/model-providers/zai/plugin.yaml +5 -0
  1122. fableforge_agent-0.18.3/plugins/observability/langfuse/__init__.py +1137 -0
  1123. fableforge_agent-0.18.3/plugins/observability/langfuse/plugin.yaml +14 -0
  1124. fableforge_agent-0.18.3/plugins/observability/nemo_relay/__init__.py +962 -0
  1125. fableforge_agent-0.18.3/plugins/observability/nemo_relay/plugin.yaml +20 -0
  1126. fableforge_agent-0.18.3/plugins/platforms/dingtalk/__init__.py +3 -0
  1127. fableforge_agent-0.18.3/plugins/platforms/dingtalk/adapter.py +1707 -0
  1128. fableforge_agent-0.18.3/plugins/platforms/dingtalk/plugin.yaml +39 -0
  1129. fableforge_agent-0.18.3/plugins/platforms/discord/__init__.py +3 -0
  1130. fableforge_agent-0.18.3/plugins/platforms/discord/adapter.py +8381 -0
  1131. fableforge_agent-0.18.3/plugins/platforms/discord/plugin.yaml +34 -0
  1132. fableforge_agent-0.18.3/plugins/platforms/discord/voice_mixer.py +379 -0
  1133. fableforge_agent-0.18.3/plugins/platforms/email/__init__.py +3 -0
  1134. fableforge_agent-0.18.3/plugins/platforms/email/adapter.py +1273 -0
  1135. fableforge_agent-0.18.3/plugins/platforms/email/plugin.yaml +39 -0
  1136. fableforge_agent-0.18.3/plugins/platforms/feishu/__init__.py +3 -0
  1137. fableforge_agent-0.18.3/plugins/platforms/feishu/adapter.py +5662 -0
  1138. fableforge_agent-0.18.3/plugins/platforms/feishu/feishu_comment.py +1382 -0
  1139. fableforge_agent-0.18.3/plugins/platforms/feishu/feishu_comment_rules.py +429 -0
  1140. fableforge_agent-0.18.3/plugins/platforms/feishu/feishu_meeting_invite.py +212 -0
  1141. fableforge_agent-0.18.3/plugins/platforms/feishu/plugin.yaml +44 -0
  1142. fableforge_agent-0.18.3/plugins/platforms/google_chat/__init__.py +3 -0
  1143. fableforge_agent-0.18.3/plugins/platforms/google_chat/adapter.py +3348 -0
  1144. fableforge_agent-0.18.3/plugins/platforms/google_chat/oauth.py +668 -0
  1145. fableforge_agent-0.18.3/plugins/platforms/google_chat/plugin.yaml +39 -0
  1146. fableforge_agent-0.18.3/plugins/platforms/homeassistant/__init__.py +3 -0
  1147. fableforge_agent-0.18.3/plugins/platforms/homeassistant/adapter.py +577 -0
  1148. fableforge_agent-0.18.3/plugins/platforms/homeassistant/plugin.yaml +22 -0
  1149. fableforge_agent-0.18.3/plugins/platforms/irc/__init__.py +3 -0
  1150. fableforge_agent-0.18.3/plugins/platforms/irc/adapter.py +971 -0
  1151. fableforge_agent-0.18.3/plugins/platforms/irc/plugin.yaml +54 -0
  1152. fableforge_agent-0.18.3/plugins/platforms/line/__init__.py +3 -0
  1153. fableforge_agent-0.18.3/plugins/platforms/line/adapter.py +1652 -0
  1154. fableforge_agent-0.18.3/plugins/platforms/line/plugin.yaml +65 -0
  1155. fableforge_agent-0.18.3/plugins/platforms/matrix/__init__.py +3 -0
  1156. fableforge_agent-0.18.3/plugins/platforms/matrix/adapter.py +4613 -0
  1157. fableforge_agent-0.18.3/plugins/platforms/matrix/plugin.yaml +41 -0
  1158. fableforge_agent-0.18.3/plugins/platforms/mattermost/__init__.py +3 -0
  1159. fableforge_agent-0.18.3/plugins/platforms/mattermost/adapter.py +1281 -0
  1160. fableforge_agent-0.18.3/plugins/platforms/mattermost/plugin.yaml +49 -0
  1161. fableforge_agent-0.18.3/plugins/platforms/ntfy/__init__.py +3 -0
  1162. fableforge_agent-0.18.3/plugins/platforms/ntfy/adapter.py +593 -0
  1163. fableforge_agent-0.18.3/plugins/platforms/ntfy/plugin.yaml +56 -0
  1164. fableforge_agent-0.18.3/plugins/platforms/photon/__init__.py +4 -0
  1165. fableforge_agent-0.18.3/plugins/platforms/photon/adapter.py +1795 -0
  1166. fableforge_agent-0.18.3/plugins/platforms/photon/auth.py +1046 -0
  1167. fableforge_agent-0.18.3/plugins/platforms/photon/cli.py +440 -0
  1168. fableforge_agent-0.18.3/plugins/platforms/photon/plugin.yaml +88 -0
  1169. fableforge_agent-0.18.3/plugins/platforms/raft/__init__.py +3 -0
  1170. fableforge_agent-0.18.3/plugins/platforms/raft/adapter.py +850 -0
  1171. fableforge_agent-0.18.3/plugins/platforms/raft/plugin.yaml +19 -0
  1172. fableforge_agent-0.18.3/plugins/platforms/simplex/__init__.py +3 -0
  1173. fableforge_agent-0.18.3/plugins/platforms/simplex/adapter.py +1313 -0
  1174. fableforge_agent-0.18.3/plugins/platforms/simplex/plugin.yaml +56 -0
  1175. fableforge_agent-0.18.3/plugins/platforms/slack/__init__.py +3 -0
  1176. fableforge_agent-0.18.3/plugins/platforms/slack/adapter.py +4574 -0
  1177. fableforge_agent-0.18.3/plugins/platforms/slack/block_kit.py +512 -0
  1178. fableforge_agent-0.18.3/plugins/platforms/slack/plugin.yaml +39 -0
  1179. fableforge_agent-0.18.3/plugins/platforms/sms/__init__.py +3 -0
  1180. fableforge_agent-0.18.3/plugins/platforms/sms/adapter.py +510 -0
  1181. fableforge_agent-0.18.3/plugins/platforms/sms/plugin.yaml +32 -0
  1182. fableforge_agent-0.18.3/plugins/platforms/teams/__init__.py +3 -0
  1183. fableforge_agent-0.18.3/plugins/platforms/teams/adapter.py +1451 -0
  1184. fableforge_agent-0.18.3/plugins/platforms/teams/plugin.yaml +48 -0
  1185. fableforge_agent-0.18.3/plugins/platforms/telegram/__init__.py +3 -0
  1186. fableforge_agent-0.18.3/plugins/platforms/telegram/adapter.py +8776 -0
  1187. fableforge_agent-0.18.3/plugins/platforms/telegram/plugin.yaml +35 -0
  1188. fableforge_agent-0.18.3/plugins/platforms/telegram/telegram_ids.py +51 -0
  1189. fableforge_agent-0.18.3/plugins/platforms/telegram/telegram_network.py +259 -0
  1190. fableforge_agent-0.18.3/plugins/platforms/wecom/__init__.py +3 -0
  1191. fableforge_agent-0.18.3/plugins/platforms/wecom/adapter.py +1888 -0
  1192. fableforge_agent-0.18.3/plugins/platforms/wecom/callback_adapter.py +438 -0
  1193. fableforge_agent-0.18.3/plugins/platforms/wecom/plugin.yaml +52 -0
  1194. fableforge_agent-0.18.3/plugins/platforms/wecom/wecom_crypto.py +142 -0
  1195. fableforge_agent-0.18.3/plugins/platforms/whatsapp/__init__.py +3 -0
  1196. fableforge_agent-0.18.3/plugins/platforms/whatsapp/adapter.py +1767 -0
  1197. fableforge_agent-0.18.3/plugins/platforms/whatsapp/plugin.yaml +33 -0
  1198. fableforge_agent-0.18.3/plugins/plugin_utils.py +135 -0
  1199. fableforge_agent-0.18.3/plugins/security-guidance/__init__.py +259 -0
  1200. fableforge_agent-0.18.3/plugins/security-guidance/patterns.py +368 -0
  1201. fableforge_agent-0.18.3/plugins/security-guidance/plugin.yaml +7 -0
  1202. fableforge_agent-0.18.3/plugins/spotify/__init__.py +66 -0
  1203. fableforge_agent-0.18.3/plugins/spotify/client.py +435 -0
  1204. fableforge_agent-0.18.3/plugins/spotify/plugin.yaml +13 -0
  1205. fableforge_agent-0.18.3/plugins/spotify/tools.py +454 -0
  1206. fableforge_agent-0.18.3/plugins/teams_pipeline/__init__.py +23 -0
  1207. fableforge_agent-0.18.3/plugins/teams_pipeline/cli.py +461 -0
  1208. fableforge_agent-0.18.3/plugins/teams_pipeline/meetings.py +333 -0
  1209. fableforge_agent-0.18.3/plugins/teams_pipeline/models.py +350 -0
  1210. fableforge_agent-0.18.3/plugins/teams_pipeline/pipeline.py +699 -0
  1211. fableforge_agent-0.18.3/plugins/teams_pipeline/plugin.yaml +9 -0
  1212. fableforge_agent-0.18.3/plugins/teams_pipeline/runtime.py +135 -0
  1213. fableforge_agent-0.18.3/plugins/teams_pipeline/store.py +193 -0
  1214. fableforge_agent-0.18.3/plugins/teams_pipeline/subscriptions.py +249 -0
  1215. fableforge_agent-0.18.3/plugins/video_gen/fal/__init__.py +620 -0
  1216. fableforge_agent-0.18.3/plugins/video_gen/fal/plugin.yaml +7 -0
  1217. fableforge_agent-0.18.3/plugins/video_gen/xai/__init__.py +925 -0
  1218. fableforge_agent-0.18.3/plugins/video_gen/xai/plugin.yaml +7 -0
  1219. fableforge_agent-0.18.3/plugins/web/__init__.py +7 -0
  1220. fableforge_agent-0.18.3/plugins/web/brave_free/__init__.py +14 -0
  1221. fableforge_agent-0.18.3/plugins/web/brave_free/plugin.yaml +7 -0
  1222. fableforge_agent-0.18.3/plugins/web/brave_free/provider.py +141 -0
  1223. fableforge_agent-0.18.3/plugins/web/ddgs/__init__.py +15 -0
  1224. fableforge_agent-0.18.3/plugins/web/ddgs/plugin.yaml +7 -0
  1225. fableforge_agent-0.18.3/plugins/web/ddgs/provider.py +158 -0
  1226. fableforge_agent-0.18.3/plugins/web/exa/__init__.py +15 -0
  1227. fableforge_agent-0.18.3/plugins/web/exa/plugin.yaml +7 -0
  1228. fableforge_agent-0.18.3/plugins/web/exa/provider.py +216 -0
  1229. fableforge_agent-0.18.3/plugins/web/firecrawl/__init__.py +28 -0
  1230. fableforge_agent-0.18.3/plugins/web/firecrawl/plugin.yaml +7 -0
  1231. fableforge_agent-0.18.3/plugins/web/firecrawl/provider.py +617 -0
  1232. fableforge_agent-0.18.3/plugins/web/parallel/__init__.py +16 -0
  1233. fableforge_agent-0.18.3/plugins/web/parallel/plugin.yaml +7 -0
  1234. fableforge_agent-0.18.3/plugins/web/parallel/provider.py +297 -0
  1235. fableforge_agent-0.18.3/plugins/web/searxng/__init__.py +15 -0
  1236. fableforge_agent-0.18.3/plugins/web/searxng/plugin.yaml +7 -0
  1237. fableforge_agent-0.18.3/plugins/web/searxng/provider.py +153 -0
  1238. fableforge_agent-0.18.3/plugins/web/tavily/__init__.py +10 -0
  1239. fableforge_agent-0.18.3/plugins/web/tavily/plugin.yaml +7 -0
  1240. fableforge_agent-0.18.3/plugins/web/tavily/provider.py +224 -0
  1241. fableforge_agent-0.18.3/plugins/web/xai/__init__.py +14 -0
  1242. fableforge_agent-0.18.3/plugins/web/xai/plugin.yaml +7 -0
  1243. fableforge_agent-0.18.3/plugins/web/xai/provider.py +557 -0
  1244. fableforge_agent-0.18.3/providers/__init__.py +191 -0
  1245. fableforge_agent-0.18.3/providers/base.py +217 -0
  1246. fableforge_agent-0.18.3/pyproject.toml +403 -0
  1247. fableforge_agent-0.18.3/run_agent.py +6016 -0
  1248. fableforge_agent-0.18.3/setup.py +89 -0
  1249. fableforge_agent-0.18.3/skills/creative/architecture-diagram/templates/template.html +319 -0
  1250. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/animatediff_video.json +64 -0
  1251. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/flux_dev_txt2img.json +78 -0
  1252. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/sd15_txt2img.json +49 -0
  1253. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/sdxl_img2img.json +54 -0
  1254. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/sdxl_inpaint.json +59 -0
  1255. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/sdxl_txt2img.json +49 -0
  1256. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/upscale_4x.json +27 -0
  1257. fableforge_agent-0.18.3/skills/creative/comfyui/workflows/wan_video_t2v.json +69 -0
  1258. fableforge_agent-0.18.3/skills/creative/humanizer/LICENSE +21 -0
  1259. fableforge_agent-0.18.3/skills/creative/p5js/templates/viewer.html +395 -0
  1260. fableforge_agent-0.18.3/skills/creative/pretext/templates/donut-orbit.html +1468 -0
  1261. fableforge_agent-0.18.3/skills/creative/pretext/templates/hello-orb-flow.html +95 -0
  1262. fableforge_agent-0.18.3/skills/index-cache/anthropics_skills_skills_.json +1 -0
  1263. fableforge_agent-0.18.3/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
  1264. fableforge_agent-0.18.3/skills/index-cache/lobehub_index.json +1 -0
  1265. fableforge_agent-0.18.3/skills/index-cache/openai_skills_skills_.json +1 -0
  1266. fableforge_agent-0.18.3/skills/productivity/powerpoint/LICENSE.txt +30 -0
  1267. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  1268. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  1269. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  1270. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  1271. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  1272. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
  1273. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
  1274. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  1275. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  1276. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
  1277. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
  1278. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  1279. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  1280. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  1281. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  1282. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  1283. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  1284. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
  1285. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
  1286. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  1287. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  1288. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  1289. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  1290. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  1291. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  1292. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  1293. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  1294. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
  1295. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  1296. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
  1297. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  1298. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
  1299. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  1300. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  1301. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
  1302. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  1303. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
  1304. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  1305. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
  1306. fableforge_agent-0.18.3/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
  1307. fableforge_agent-0.18.3/tools/__init__.py +25 -0
  1308. fableforge_agent-0.18.3/tools/ansi_strip.py +44 -0
  1309. fableforge_agent-0.18.3/tools/approval.py +3242 -0
  1310. fableforge_agent-0.18.3/tools/async_delegation.py +604 -0
  1311. fableforge_agent-0.18.3/tools/binary_extensions.py +42 -0
  1312. fableforge_agent-0.18.3/tools/blueprints.py +325 -0
  1313. fableforge_agent-0.18.3/tools/browser_camofox.py +949 -0
  1314. fableforge_agent-0.18.3/tools/browser_camofox_state.py +47 -0
  1315. fableforge_agent-0.18.3/tools/browser_cdp_tool.py +681 -0
  1316. fableforge_agent-0.18.3/tools/browser_dialog_tool.py +148 -0
  1317. fableforge_agent-0.18.3/tools/browser_supervisor.py +1513 -0
  1318. fableforge_agent-0.18.3/tools/browser_tool.py +4803 -0
  1319. fableforge_agent-0.18.3/tools/budget_config.py +114 -0
  1320. fableforge_agent-0.18.3/tools/checkpoint_manager.py +1675 -0
  1321. fableforge_agent-0.18.3/tools/clarify_gateway.py +315 -0
  1322. fableforge_agent-0.18.3/tools/clarify_tool.py +191 -0
  1323. fableforge_agent-0.18.3/tools/close_terminal_tool.py +71 -0
  1324. fableforge_agent-0.18.3/tools/code_execution_tool.py +1910 -0
  1325. fableforge_agent-0.18.3/tools/computer_use/__init__.py +43 -0
  1326. fableforge_agent-0.18.3/tools/computer_use/backend.py +171 -0
  1327. fableforge_agent-0.18.3/tools/computer_use/cua_backend.py +2102 -0
  1328. fableforge_agent-0.18.3/tools/computer_use/doctor.py +288 -0
  1329. fableforge_agent-0.18.3/tools/computer_use/permissions.py +200 -0
  1330. fableforge_agent-0.18.3/tools/computer_use/schema.py +222 -0
  1331. fableforge_agent-0.18.3/tools/computer_use/tool.py +917 -0
  1332. fableforge_agent-0.18.3/tools/computer_use/vision_routing.py +204 -0
  1333. fableforge_agent-0.18.3/tools/computer_use_tool.py +39 -0
  1334. fableforge_agent-0.18.3/tools/credential_files.py +481 -0
  1335. fableforge_agent-0.18.3/tools/cronjob_tools.py +1147 -0
  1336. fableforge_agent-0.18.3/tools/daemon_pool.py +64 -0
  1337. fableforge_agent-0.18.3/tools/debug_helpers.py +105 -0
  1338. fableforge_agent-0.18.3/tools/delegate_tool.py +3481 -0
  1339. fableforge_agent-0.18.3/tools/discord_tool.py +1119 -0
  1340. fableforge_agent-0.18.3/tools/env_passthrough.py +184 -0
  1341. fableforge_agent-0.18.3/tools/env_probe.py +275 -0
  1342. fableforge_agent-0.18.3/tools/environments/__init__.py +14 -0
  1343. fableforge_agent-0.18.3/tools/environments/base.py +959 -0
  1344. fableforge_agent-0.18.3/tools/environments/daytona.py +270 -0
  1345. fableforge_agent-0.18.3/tools/environments/docker.py +1460 -0
  1346. fableforge_agent-0.18.3/tools/environments/file_sync.py +465 -0
  1347. fableforge_agent-0.18.3/tools/environments/local.py +1207 -0
  1348. fableforge_agent-0.18.3/tools/environments/managed_modal.py +282 -0
  1349. fableforge_agent-0.18.3/tools/environments/modal.py +478 -0
  1350. fableforge_agent-0.18.3/tools/environments/modal_utils.py +204 -0
  1351. fableforge_agent-0.18.3/tools/environments/singularity.py +265 -0
  1352. fableforge_agent-0.18.3/tools/environments/ssh.py +375 -0
  1353. fableforge_agent-0.18.3/tools/fal_common.py +163 -0
  1354. fableforge_agent-0.18.3/tools/feishu_doc_tool.py +138 -0
  1355. fableforge_agent-0.18.3/tools/feishu_drive_tool.py +431 -0
  1356. fableforge_agent-0.18.3/tools/file_operations.py +2497 -0
  1357. fableforge_agent-0.18.3/tools/file_state.py +332 -0
  1358. fableforge_agent-0.18.3/tools/file_tools.py +2173 -0
  1359. fableforge_agent-0.18.3/tools/fuzzy_match.py +950 -0
  1360. fableforge_agent-0.18.3/tools/homeassistant_tool.py +513 -0
  1361. fableforge_agent-0.18.3/tools/hook_output_spill.py +236 -0
  1362. fableforge_agent-0.18.3/tools/image_generation_tool.py +1680 -0
  1363. fableforge_agent-0.18.3/tools/image_source.py +338 -0
  1364. fableforge_agent-0.18.3/tools/interrupt.py +113 -0
  1365. fableforge_agent-0.18.3/tools/kanban_tools.py +1672 -0
  1366. fableforge_agent-0.18.3/tools/lazy_deps.py +970 -0
  1367. fableforge_agent-0.18.3/tools/managed_tool_gateway.py +192 -0
  1368. fableforge_agent-0.18.3/tools/mcp_oauth.py +948 -0
  1369. fableforge_agent-0.18.3/tools/mcp_oauth_manager.py +720 -0
  1370. fableforge_agent-0.18.3/tools/mcp_stdio_watchdog.py +184 -0
  1371. fableforge_agent-0.18.3/tools/mcp_tool.py +5627 -0
  1372. fableforge_agent-0.18.3/tools/memory_tool.py +1152 -0
  1373. fableforge_agent-0.18.3/tools/microsoft_graph_auth.py +245 -0
  1374. fableforge_agent-0.18.3/tools/microsoft_graph_client.py +408 -0
  1375. fableforge_agent-0.18.3/tools/neutts_synth.py +104 -0
  1376. fableforge_agent-0.18.3/tools/openrouter_client.py +33 -0
  1377. fableforge_agent-0.18.3/tools/osv_check.py +169 -0
  1378. fableforge_agent-0.18.3/tools/patch_parser.py +622 -0
  1379. fableforge_agent-0.18.3/tools/path_security.py +43 -0
  1380. fableforge_agent-0.18.3/tools/process_registry.py +2257 -0
  1381. fableforge_agent-0.18.3/tools/project_tools.py +189 -0
  1382. fableforge_agent-0.18.3/tools/read_extract.py +248 -0
  1383. fableforge_agent-0.18.3/tools/read_terminal_tool.py +94 -0
  1384. fableforge_agent-0.18.3/tools/registry.py +766 -0
  1385. fableforge_agent-0.18.3/tools/schema_sanitizer.py +501 -0
  1386. fableforge_agent-0.18.3/tools/send_message_tool.py +1796 -0
  1387. fableforge_agent-0.18.3/tools/session_search_tool.py +921 -0
  1388. fableforge_agent-0.18.3/tools/skill_manager_tool.py +1559 -0
  1389. fableforge_agent-0.18.3/tools/skill_provenance.py +78 -0
  1390. fableforge_agent-0.18.3/tools/skill_usage.py +947 -0
  1391. fableforge_agent-0.18.3/tools/skills_ast_audit.py +133 -0
  1392. fableforge_agent-0.18.3/tools/skills_guard.py +1086 -0
  1393. fableforge_agent-0.18.3/tools/skills_hub.py +4109 -0
  1394. fableforge_agent-0.18.3/tools/skills_sync.py +1182 -0
  1395. fableforge_agent-0.18.3/tools/skills_tool.py +1681 -0
  1396. fableforge_agent-0.18.3/tools/slash_confirm.py +167 -0
  1397. fableforge_agent-0.18.3/tools/terminal_tool.py +3029 -0
  1398. fableforge_agent-0.18.3/tools/thread_context.py +120 -0
  1399. fableforge_agent-0.18.3/tools/threat_patterns.py +284 -0
  1400. fableforge_agent-0.18.3/tools/tirith_security.py +871 -0
  1401. fableforge_agent-0.18.3/tools/todo_tool.py +330 -0
  1402. fableforge_agent-0.18.3/tools/tool_backend_helpers.py +182 -0
  1403. fableforge_agent-0.18.3/tools/tool_output_limits.py +110 -0
  1404. fableforge_agent-0.18.3/tools/tool_result_storage.py +254 -0
  1405. fableforge_agent-0.18.3/tools/tool_search.py +735 -0
  1406. fableforge_agent-0.18.3/tools/transcription_tools.py +1799 -0
  1407. fableforge_agent-0.18.3/tools/tts_tool.py +2870 -0
  1408. fableforge_agent-0.18.3/tools/url_safety.py +503 -0
  1409. fableforge_agent-0.18.3/tools/video_generation_tool.py +585 -0
  1410. fableforge_agent-0.18.3/tools/vision_tools.py +1897 -0
  1411. fableforge_agent-0.18.3/tools/voice_mode.py +1218 -0
  1412. fableforge_agent-0.18.3/tools/web_tools.py +1183 -0
  1413. fableforge_agent-0.18.3/tools/website_policy.py +283 -0
  1414. fableforge_agent-0.18.3/tools/write_approval.py +493 -0
  1415. fableforge_agent-0.18.3/tools/x_search_tool.py +525 -0
  1416. fableforge_agent-0.18.3/tools/xai_http.py +277 -0
  1417. fableforge_agent-0.18.3/tools/xai_video_tools.py +209 -0
  1418. fableforge_agent-0.18.3/tools/yuanbao_tools.py +737 -0
  1419. fableforge_agent-0.18.3/toolset_distributions.py +358 -0
  1420. fableforge_agent-0.18.3/toolsets.py +971 -0
  1421. fableforge_agent-0.18.3/trajectory_compressor.py +1574 -0
  1422. fableforge_agent-0.18.3/trust/__init__.py +25 -0
  1423. fableforge_agent-0.18.3/trust/core.py +183 -0
  1424. fableforge_agent-0.18.3/utils.py +546 -0
  1425. fableforge_agent-0.1.0/PKG-INFO +0 -109
  1426. fableforge_agent-0.1.0/README.md +0 -90
  1427. fableforge_agent-0.1.0/pyproject.toml +0 -36
  1428. fableforge_agent-0.1.0/src/fableforge_agent/__init__.py +0 -63
  1429. fableforge_agent-0.1.0/src/fableforge_agent/cli.py +0 -184
  1430. fableforge_agent-0.1.0/src/fableforge_agent/control_plane/__init__.py +0 -37
  1431. fableforge_agent-0.1.0/src/fableforge_agent/control_plane/auth.py +0 -152
  1432. fableforge_agent-0.1.0/src/fableforge_agent/control_plane/core.py +0 -303
  1433. fableforge_agent-0.1.0/src/fableforge_agent/observability/__init__.py +0 -29
  1434. fableforge_agent-0.1.0/src/fableforge_agent/observability/core.py +0 -229
  1435. fableforge_agent-0.1.0/src/fableforge_agent/trust/__init__.py +0 -27
  1436. fableforge_agent-0.1.0/src/fableforge_agent/trust/core.py +0 -190
  1437. fableforge_agent-0.1.0/src/fableforge_agent.egg-info/PKG-INFO +0 -109
  1438. fableforge_agent-0.1.0/src/fableforge_agent.egg-info/SOURCES.txt +0 -17
  1439. fableforge_agent-0.1.0/src/fableforge_agent.egg-info/entry_points.txt +0 -2
  1440. fableforge_agent-0.1.0/src/fableforge_agent.egg-info/requires.txt +0 -8
  1441. fableforge_agent-0.1.0/src/fableforge_agent.egg-info/top_level.txt +0 -1
  1442. {fableforge_agent-0.1.0/src → fableforge_agent-0.18.3}/fableforge_agent.egg-info/dependency_links.txt +0 -0
  1443. {fableforge_agent-0.1.0 → fableforge_agent-0.18.3}/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,177 @@
1
+ Metadata-Version: 2.4
2
+ Name: fableforge-agent
3
+ Version: 0.18.3
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
+ Requires-Dist: closed-loop-training>=0.5.0
44
+ Provides-Extra: anthropic
45
+ Requires-Dist: anthropic==0.87.0; extra == "anthropic"
46
+ Provides-Extra: exa
47
+ Requires-Dist: exa-py==2.10.2; extra == "exa"
48
+ Provides-Extra: firecrawl
49
+ Requires-Dist: firecrawl-py==4.17.0; extra == "firecrawl"
50
+ Provides-Extra: parallel-web
51
+ Requires-Dist: parallel-web==0.4.2; extra == "parallel-web"
52
+ Provides-Extra: fal
53
+ Requires-Dist: fal-client==0.13.1; extra == "fal"
54
+ Provides-Extra: edge-tts
55
+ Requires-Dist: edge-tts==7.2.7; extra == "edge-tts"
56
+ Provides-Extra: modal
57
+ Requires-Dist: modal==1.3.4; extra == "modal"
58
+ Provides-Extra: daytona
59
+ Requires-Dist: daytona==0.155.0; extra == "daytona"
60
+ Provides-Extra: hindsight
61
+ Requires-Dist: hindsight-client==0.6.1; extra == "hindsight"
62
+ Provides-Extra: dev
63
+ Requires-Dist: debugpy==1.8.20; extra == "dev"
64
+ Requires-Dist: pytest==9.0.2; extra == "dev"
65
+ Requires-Dist: pytest-asyncio==1.3.0; extra == "dev"
66
+ Requires-Dist: mcp==1.26.0; extra == "dev"
67
+ Requires-Dist: starlette==1.0.1; extra == "dev"
68
+ Requires-Dist: ty==0.0.21; extra == "dev"
69
+ Requires-Dist: ruff==0.15.10; extra == "dev"
70
+ Requires-Dist: setuptools==81.0.0; extra == "dev"
71
+ Provides-Extra: messaging
72
+ Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "messaging"
73
+ Requires-Dist: discord.py[voice]==2.7.1; extra == "messaging"
74
+ Requires-Dist: aiohttp==3.14.1; extra == "messaging"
75
+ Requires-Dist: brotlicffi==1.2.0.1; extra == "messaging"
76
+ Requires-Dist: slack-bolt==1.27.0; extra == "messaging"
77
+ Requires-Dist: slack-sdk==3.40.1; extra == "messaging"
78
+ Requires-Dist: qrcode==7.4.2; extra == "messaging"
79
+ Provides-Extra: cron
80
+ Provides-Extra: slack
81
+ Requires-Dist: slack-bolt==1.27.0; extra == "slack"
82
+ Requires-Dist: slack-sdk==3.40.1; extra == "slack"
83
+ Requires-Dist: aiohttp==3.14.1; extra == "slack"
84
+ Provides-Extra: matrix
85
+ Requires-Dist: mautrix[encryption]==0.21.0; extra == "matrix"
86
+ Requires-Dist: aiosqlite==0.22.1; extra == "matrix"
87
+ Requires-Dist: asyncpg==0.31.0; extra == "matrix"
88
+ Requires-Dist: aiohttp-socks==0.11.0; extra == "matrix"
89
+ Requires-Dist: aiohttp==3.14.1; extra == "matrix"
90
+ Provides-Extra: wecom
91
+ Requires-Dist: defusedxml==0.7.1; extra == "wecom"
92
+ Provides-Extra: cli
93
+ Requires-Dist: simple-term-menu==1.6.6; extra == "cli"
94
+ Provides-Extra: tts-premium
95
+ Requires-Dist: elevenlabs==1.59.0; extra == "tts-premium"
96
+ Provides-Extra: voice
97
+ Requires-Dist: faster-whisper==1.2.1; extra == "voice"
98
+ Requires-Dist: sounddevice==0.5.5; extra == "voice"
99
+ Requires-Dist: numpy==2.4.3; extra == "voice"
100
+ Provides-Extra: pty
101
+ Provides-Extra: honcho
102
+ Requires-Dist: honcho-ai==2.0.1; extra == "honcho"
103
+ Provides-Extra: supermemory
104
+ Requires-Dist: supermemory==3.50.0; extra == "supermemory"
105
+ Provides-Extra: mem0
106
+ Requires-Dist: mem0ai==2.0.10; extra == "mem0"
107
+ Provides-Extra: vision
108
+ Provides-Extra: mcp
109
+ Requires-Dist: mcp==1.26.0; extra == "mcp"
110
+ Requires-Dist: starlette==1.0.1; extra == "mcp"
111
+ Provides-Extra: nemo-relay
112
+ Requires-Dist: nemo-relay==0.3; extra == "nemo-relay"
113
+ Provides-Extra: homeassistant
114
+ Requires-Dist: aiohttp==3.14.1; extra == "homeassistant"
115
+ Provides-Extra: sms
116
+ Requires-Dist: aiohttp==3.14.1; extra == "sms"
117
+ Provides-Extra: teams
118
+ Requires-Dist: microsoft-teams-apps==2.0.13.4; extra == "teams"
119
+ Requires-Dist: aiohttp==3.14.1; extra == "teams"
120
+ Provides-Extra: computer-use
121
+ Requires-Dist: mcp==1.26.0; extra == "computer-use"
122
+ Requires-Dist: starlette==1.0.1; extra == "computer-use"
123
+ Provides-Extra: acp
124
+ Requires-Dist: agent-client-protocol==0.9.0; extra == "acp"
125
+ Provides-Extra: mistral
126
+ Requires-Dist: mistralai==2.4.8; extra == "mistral"
127
+ Provides-Extra: bedrock
128
+ Requires-Dist: boto3==1.42.89; extra == "bedrock"
129
+ Provides-Extra: vertex
130
+ Requires-Dist: google-auth==2.55.1; extra == "vertex"
131
+ Provides-Extra: azure-identity
132
+ Requires-Dist: azure-identity==1.25.3; extra == "azure-identity"
133
+ Provides-Extra: termux
134
+ Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "termux"
135
+ Requires-Dist: fableforge-agent[cron]; extra == "termux"
136
+ Requires-Dist: fableforge-agent[cli]; extra == "termux"
137
+ Requires-Dist: fableforge-agent[pty]; extra == "termux"
138
+ Requires-Dist: fableforge-agent[mcp]; extra == "termux"
139
+ Requires-Dist: fableforge-agent[honcho]; extra == "termux"
140
+ Requires-Dist: fableforge-agent[acp]; extra == "termux"
141
+ Provides-Extra: termux-all
142
+ Requires-Dist: fableforge-agent[termux]; extra == "termux-all"
143
+ Requires-Dist: fableforge-agent[google]; extra == "termux-all"
144
+ Requires-Dist: fableforge-agent[homeassistant]; extra == "termux-all"
145
+ Requires-Dist: fableforge-agent[sms]; extra == "termux-all"
146
+ Requires-Dist: fableforge-agent[web]; extra == "termux-all"
147
+ Provides-Extra: dingtalk
148
+ Requires-Dist: dingtalk-stream==0.24.3; extra == "dingtalk"
149
+ Requires-Dist: alibabacloud-dingtalk==2.2.42; extra == "dingtalk"
150
+ Requires-Dist: qrcode==7.4.2; extra == "dingtalk"
151
+ Provides-Extra: feishu
152
+ Requires-Dist: lark-oapi==1.5.3; extra == "feishu"
153
+ Requires-Dist: qrcode==7.4.2; extra == "feishu"
154
+ Provides-Extra: google
155
+ Requires-Dist: google-api-python-client==2.194.0; extra == "google"
156
+ Requires-Dist: google-auth-oauthlib==1.3.1; extra == "google"
157
+ Requires-Dist: google-auth-httplib2==0.3.1; extra == "google"
158
+ Provides-Extra: youtube
159
+ Requires-Dist: youtube-transcript-api==1.2.4; extra == "youtube"
160
+ Provides-Extra: web
161
+ Requires-Dist: fastapi==0.133.1; extra == "web"
162
+ Requires-Dist: uvicorn[standard]==0.41.0; extra == "web"
163
+ Requires-Dist: starlette==1.0.1; extra == "web"
164
+ Requires-Dist: python-multipart==0.0.27; extra == "web"
165
+ Provides-Extra: all
166
+ Requires-Dist: fableforge-agent[cron]; extra == "all"
167
+ Requires-Dist: fableforge-agent[cli]; extra == "all"
168
+ Requires-Dist: fableforge-agent[pty]; extra == "all"
169
+ Requires-Dist: fableforge-agent[mcp]; extra == "all"
170
+ Requires-Dist: fableforge-agent[homeassistant]; extra == "all"
171
+ Requires-Dist: fableforge-agent[sms]; extra == "all"
172
+ Requires-Dist: fableforge-agent[acp]; extra == "all"
173
+ Requires-Dist: fableforge-agent[google]; extra == "all"
174
+ Requires-Dist: fableforge-agent[web]; extra == "all"
175
+ Requires-Dist: fableforge-agent[youtube]; extra == "all"
176
+ Dynamic: author
177
+ Dynamic: license-file
@@ -0,0 +1 @@
1
+ """ACP (Agent Communication Protocol) adapter for fableforge-agent."""
@@ -0,0 +1,5 @@
1
+ """Allow running the ACP adapter as ``python -m acp_adapter``."""
2
+
3
+ from .entry import main
4
+
5
+ main()
@@ -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