agentspecs 0.0.7__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 (421) hide show
  1. agentspecs-0.0.7/.github/workflows/ci.yaml +76 -0
  2. agentspecs-0.0.7/.github/workflows/release.yaml +56 -0
  3. agentspecs-0.0.7/.gitignore +136 -0
  4. agentspecs-0.0.7/.licenserc.yaml +18 -0
  5. agentspecs-0.0.7/.pre-commit-config.yaml +38 -0
  6. agentspecs-0.0.7/.vscode/settings.json +9 -0
  7. agentspecs-0.0.7/CHANGELOG.md +7 -0
  8. agentspecs-0.0.7/Dockerfile +19 -0
  9. agentspecs-0.0.7/LICENSE +29 -0
  10. agentspecs-0.0.7/Makefile +82 -0
  11. agentspecs-0.0.7/PKG-INFO +342 -0
  12. agentspecs-0.0.7/README.md +279 -0
  13. agentspecs-0.0.7/RELEASE.md +49 -0
  14. agentspecs-0.0.7/agentspecs/__init__.py +15 -0
  15. agentspecs-0.0.7/agentspecs/__version__.py +7 -0
  16. agentspecs-0.0.7/agentspecs/agents/example-a2a-researcher.yaml +57 -0
  17. agentspecs-0.0.7/agentspecs/agents/example-a2a-writer.yaml +56 -0
  18. agentspecs-0.0.7/agentspecs/agents/example-a2a.yaml +105 -0
  19. agentspecs-0.0.7/agentspecs/agents/example-a2ui-agent.yaml +91 -0
  20. agentspecs-0.0.7/agentspecs/agents/example-a2ui-jupyter-output.yaml +98 -0
  21. agentspecs-0.0.7/agentspecs/agents/example-a2ui-viewer.yaml +109 -0
  22. agentspecs-0.0.7/agentspecs/agents/example-agent-critic-loop-for-analysis.yaml +62 -0
  23. agentspecs-0.0.7/agentspecs/agents/example-agentic-chat.yaml +63 -0
  24. agentspecs-0.0.7/agentspecs/agents/example-agentic-generative-ui.yaml +73 -0
  25. agentspecs-0.0.7/agentspecs/agents/example-ai-creates-dashboards.yaml +62 -0
  26. agentspecs-0.0.7/agentspecs/agents/example-ai-explains-notebook-output.yaml +62 -0
  27. agentspecs-0.0.7/agentspecs/agents/example-ai-writes-pandas-code.yaml +62 -0
  28. agentspecs-0.0.7/agentspecs/agents/example-analyze-excel-spreadsheet.yaml +62 -0
  29. agentspecs-0.0.7/agentspecs/agents/example-backend-tool-rendering.yaml +77 -0
  30. agentspecs-0.0.7/agentspecs/agents/example-build-notebook-with-one-prompt.yaml +62 -0
  31. agentspecs-0.0.7/agentspecs/agents/example-checkpoints.yaml +90 -0
  32. agentspecs-0.0.7/agentspecs/agents/example-code-sandbox.yaml +80 -0
  33. agentspecs-0.0.7/agentspecs/agents/example-codemode.yaml +94 -0
  34. agentspecs-0.0.7/agentspecs/agents/example-compaction.yaml +78 -0
  35. agentspecs-0.0.7/agentspecs/agents/example-compare-two-spreadsheets.yaml +62 -0
  36. agentspecs-0.0.7/agentspecs/agents/example-cost-comparison-report.yaml +62 -0
  37. agentspecs-0.0.7/agentspecs/agents/example-decks.yaml +144 -0
  38. agentspecs-0.0.7/agentspecs/agents/example-document-agent-sidebar.yaml +95 -0
  39. agentspecs-0.0.7/agentspecs/agents/example-document-agent.yaml +93 -0
  40. agentspecs-0.0.7/agentspecs/agents/example-evals-nocodemode.yaml +78 -0
  41. agentspecs-0.0.7/agentspecs/agents/example-evals.yaml +73 -0
  42. agentspecs-0.0.7/agentspecs/agents/example-explore-sql-database.yaml +62 -0
  43. agentspecs-0.0.7/agentspecs/agents/example-five-ai-agents-analyze-csv.yaml +62 -0
  44. agentspecs-0.0.7/agentspecs/agents/example-five-notebooks-in-parallel.yaml +62 -0
  45. agentspecs-0.0.7/agentspecs/agents/example-full.yaml +112 -0
  46. agentspecs-0.0.7/agentspecs/agents/example-gpt-and-claude-collaborate.yaml +62 -0
  47. agentspecs-0.0.7/agentspecs/agents/example-guardrails.yaml +119 -0
  48. agentspecs-0.0.7/agentspecs/agents/example-haiku-generative-ui.yaml +86 -0
  49. agentspecs-0.0.7/agentspecs/agents/example-hooks.yaml +162 -0
  50. agentspecs-0.0.7/agentspecs/agents/example-human-approved-automation.yaml +62 -0
  51. agentspecs-0.0.7/agentspecs/agents/example-human-in-the-loop.yaml +76 -0
  52. agentspecs-0.0.7/agentspecs/agents/example-inference.yaml +59 -0
  53. agentspecs-0.0.7/agentspecs/agents/example-long-running-agent-overnight.yaml +62 -0
  54. agentspecs-0.0.7/agentspecs/agents/example-mcp.yaml +72 -0
  55. agentspecs-0.0.7/agentspecs/agents/example-memory.yaml +73 -0
  56. agentspecs-0.0.7/agentspecs/agents/example-monitoring.yaml +64 -0
  57. agentspecs-0.0.7/agentspecs/agents/example-multi-agent-data-cleaning.yaml +62 -0
  58. agentspecs-0.0.7/agentspecs/agents/example-multi-agent-root-cause-analysis.yaml +62 -0
  59. agentspecs-0.0.7/agentspecs/agents/example-no-codemode.yaml +78 -0
  60. agentspecs-0.0.7/agentspecs/agents/example-notifications.yaml +87 -0
  61. agentspecs-0.0.7/agentspecs/agents/example-one-trigger-approval.yaml +59 -0
  62. agentspecs-0.0.7/agentspecs/agents/example-one-trigger.yaml +76 -0
  63. agentspecs-0.0.7/agentspecs/agents/example-otel.yaml +68 -0
  64. agentspecs-0.0.7/agentspecs/agents/example-output.yaml +94 -0
  65. agentspecs-0.0.7/agentspecs/agents/example-parameters.yaml +86 -0
  66. agentspecs-0.0.7/agentspecs/agents/example-replace-excel-pivot-work.yaml +62 -0
  67. agentspecs-0.0.7/agentspecs/agents/example-resumable-etl-with-checkpoints.yaml +62 -0
  68. agentspecs-0.0.7/agentspecs/agents/example-run-python-safely-in-the-cloud.yaml +62 -0
  69. agentspecs-0.0.7/agentspecs/agents/example-sandbox-colab.yaml +72 -0
  70. agentspecs-0.0.7/agentspecs/agents/example-sandbox-datalayer.yaml +72 -0
  71. agentspecs-0.0.7/agentspecs/agents/example-sandbox-docker.yaml +72 -0
  72. agentspecs-0.0.7/agentspecs/agents/example-sandbox-eval.yaml +72 -0
  73. agentspecs-0.0.7/agentspecs/agents/example-sandbox-jupyter.yaml +72 -0
  74. agentspecs-0.0.7/agentspecs/agents/example-sandbox-kaggle.yaml +72 -0
  75. agentspecs-0.0.7/agentspecs/agents/example-sandbox-modal.yaml +72 -0
  76. agentspecs-0.0.7/agentspecs/agents/example-sandbox-monty.yaml +72 -0
  77. agentspecs-0.0.7/agentspecs/agents/example-shared-state.yaml +71 -0
  78. agentspecs-0.0.7/agentspecs/agents/example-simple.yaml +82 -0
  79. agentspecs-0.0.7/agentspecs/agents/example-skills.yaml +72 -0
  80. agentspecs-0.0.7/agentspecs/agents/example-subagents.yaml +101 -0
  81. agentspecs-0.0.7/agentspecs/agents/example-tool-approvals.yaml +84 -0
  82. agentspecs-0.0.7/agentspecs/agents/example-tool-based-generative-ui.yaml +62 -0
  83. agentspecs-0.0.7/agentspecs/agents/jupyter-cell-fixer.yaml +125 -0
  84. agentspecs-0.0.7/agentspecs/agents/jupyter-data-analyst.yaml +173 -0
  85. agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-compactor.yaml +141 -0
  86. agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-reproducer.yaml +124 -0
  87. agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-reviewer.yaml +90 -0
  88. agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-writer.yaml +96 -0
  89. agentspecs-0.0.7/agentspecs/agents/jupyter-tutor.yaml +208 -0
  90. agentspecs-0.0.7/agentspecs/agents/loop-shell.yaml +130 -0
  91. agentspecs-0.0.7/agentspecs/agents/worker-accountant.yaml +81 -0
  92. agentspecs-0.0.7/agentspecs/agents/worker-agent-reviews-sql.yaml +71 -0
  93. agentspecs-0.0.7/agentspecs/agents/worker-analyze-campaign-performance.yaml +187 -0
  94. agentspecs-0.0.7/agentspecs/agents/worker-analyze-support-tickets.yaml +165 -0
  95. agentspecs-0.0.7/agentspecs/agents/worker-ap-invoice.yaml +78 -0
  96. agentspecs-0.0.7/agentspecs/agents/worker-audit-inventory-levels.yaml +166 -0
  97. agentspecs-0.0.7/agentspecs/agents/worker-audit-pack-builder.yaml +76 -0
  98. agentspecs-0.0.7/agentspecs/agents/worker-automate-regulatory-reporting.yaml +191 -0
  99. agentspecs-0.0.7/agentspecs/agents/worker-backtest-auditor.yaml +81 -0
  100. agentspecs-0.0.7/agentspecs/agents/worker-bank-reconciliation.yaml +77 -0
  101. agentspecs-0.0.7/agentspecs/agents/worker-campaign-planning.yaml +83 -0
  102. agentspecs-0.0.7/agentspecs/agents/worker-cat-exposure.yaml +81 -0
  103. agentspecs-0.0.7/agentspecs/agents/worker-change-detection.yaml +82 -0
  104. agentspecs-0.0.7/agentspecs/agents/worker-classify-route-emails.yaml +143 -0
  105. agentspecs-0.0.7/agentspecs/agents/worker-cms-astro.yaml +162 -0
  106. agentspecs-0.0.7/agentspecs/agents/worker-coding-tutor.yaml +82 -0
  107. agentspecs-0.0.7/agentspecs/agents/worker-cohort-comparison.yaml +83 -0
  108. agentspecs-0.0.7/agentspecs/agents/worker-collections.yaml +77 -0
  109. agentspecs-0.0.7/agentspecs/agents/worker-community-response.yaml +83 -0
  110. agentspecs-0.0.7/agentspecs/agents/worker-competitive-intelligence.yaml +82 -0
  111. agentspecs-0.0.7/agentspecs/agents/worker-compliance-report-draft.yaml +73 -0
  112. agentspecs-0.0.7/agentspecs/agents/worker-comprehensive-sales-analytics.yaml +131 -0
  113. agentspecs-0.0.7/agentspecs/agents/worker-compute-cost-optimizer.yaml +82 -0
  114. agentspecs-0.0.7/agentspecs/agents/worker-content-repurposing.yaml +84 -0
  115. agentspecs-0.0.7/agentspecs/agents/worker-crawler.yaml +120 -0
  116. agentspecs-0.0.7/agentspecs/agents/worker-crop-monitoring.yaml +81 -0
  117. agentspecs-0.0.7/agentspecs/agents/worker-curtailment-investigator.yaml +80 -0
  118. agentspecs-0.0.7/agentspecs/agents/worker-customer-churn-analysis.yaml +72 -0
  119. agentspecs-0.0.7/agentspecs/agents/worker-customer-interviewer.yaml +146 -0
  120. agentspecs-0.0.7/agentspecs/agents/worker-data-acquisition.yaml +122 -0
  121. agentspecs-0.0.7/agentspecs/agents/worker-disaster-assessment.yaml +81 -0
  122. agentspecs-0.0.7/agentspecs/agents/worker-document-qa.yaml +73 -0
  123. agentspecs-0.0.7/agentspecs/agents/worker-end-of-month-performance.yaml +292 -0
  124. agentspecs-0.0.7/agentspecs/agents/worker-energy-trading-analyst.yaml +80 -0
  125. agentspecs-0.0.7/agentspecs/agents/worker-environmental-compliance.yaml +82 -0
  126. agentspecs-0.0.7/agentspecs/agents/worker-event-response.yaml +81 -0
  127. agentspecs-0.0.7/agentspecs/agents/worker-evidence-repository.yaml +82 -0
  128. agentspecs-0.0.7/agentspecs/agents/worker-expense-audit.yaml +76 -0
  129. agentspecs-0.0.7/agentspecs/agents/worker-exposure-data-quality.yaml +83 -0
  130. agentspecs-0.0.7/agentspecs/agents/worker-extract-data-from-files.yaml +147 -0
  131. agentspecs-0.0.7/agentspecs/agents/worker-extract-kpis-from-quarterly-pdf.yaml +74 -0
  132. agentspecs-0.0.7/agentspecs/agents/worker-factor-analysis.yaml +80 -0
  133. agentspecs-0.0.7/agentspecs/agents/worker-financial-viz.yaml +118 -0
  134. agentspecs-0.0.7/agentspecs/agents/worker-generate-weekly-reports.yaml +192 -0
  135. agentspecs-0.0.7/agentspecs/agents/worker-github-agent.yaml +118 -0
  136. agentspecs-0.0.7/agentspecs/agents/worker-grid-forecast.yaml +81 -0
  137. agentspecs-0.0.7/agentspecs/agents/worker-information-routing.yaml +119 -0
  138. agentspecs-0.0.7/agentspecs/agents/worker-infrastructure-monitoring.yaml +81 -0
  139. agentspecs-0.0.7/agentspecs/agents/worker-insurance-claims-review.yaml +71 -0
  140. agentspecs-0.0.7/agentspecs/agents/worker-interview-guide.yaml +82 -0
  141. agentspecs-0.0.7/agentspecs/agents/worker-inventory-demand-planning.yaml +70 -0
  142. agentspecs-0.0.7/agentspecs/agents/worker-job-hunter.yaml +83 -0
  143. agentspecs-0.0.7/agentspecs/agents/worker-mail-triage.yaml +83 -0
  144. agentspecs-0.0.7/agentspecs/agents/worker-marketing-analytics.yaml +70 -0
  145. agentspecs-0.0.7/agentspecs/agents/worker-medical-research-review.yaml +74 -0
  146. agentspecs-0.0.7/agentspecs/agents/worker-model-comparison.yaml +81 -0
  147. agentspecs-0.0.7/agentspecs/agents/worker-monitor-sales-kpis.yaml +205 -0
  148. agentspecs-0.0.7/agentspecs/agents/worker-month-end-close.yaml +76 -0
  149. agentspecs-0.0.7/agentspecs/agents/worker-news-aggregator.yaml +161 -0
  150. agentspecs-0.0.7/agentspecs/agents/worker-optimize-dynamic-pricing.yaml +211 -0
  151. agentspecs-0.0.7/agentspecs/agents/worker-optimize-grid-operations.yaml +184 -0
  152. agentspecs-0.0.7/agentspecs/agents/worker-optimize-sql-query-performance.yaml +71 -0
  153. agentspecs-0.0.7/agentspecs/agents/worker-performance-attribution.yaml +82 -0
  154. agentspecs-0.0.7/agentspecs/agents/worker-pipeline-debugger.yaml +83 -0
  155. agentspecs-0.0.7/agentspecs/agents/worker-pitcher.yaml +185 -0
  156. agentspecs-0.0.7/agentspecs/agents/worker-portfolio-accumulation.yaml +81 -0
  157. agentspecs-0.0.7/agentspecs/agents/worker-portfolio-risk.yaml +81 -0
  158. agentspecs-0.0.7/agentspecs/agents/worker-predictive-maintenance.yaml +80 -0
  159. agentspecs-0.0.7/agentspecs/agents/worker-process-citizen-requests.yaml +195 -0
  160. agentspecs-0.0.7/agentspecs/agents/worker-process-clinical-trial-data.yaml +194 -0
  161. agentspecs-0.0.7/agentspecs/agents/worker-process-financial-transactions.yaml +184 -0
  162. agentspecs-0.0.7/agentspecs/agents/worker-product-finder.yaml +82 -0
  163. agentspecs-0.0.7/agentspecs/agents/worker-quant-research.yaml +80 -0
  164. agentspecs-0.0.7/agentspecs/agents/worker-renewable-asset-performance.yaml +81 -0
  165. agentspecs-0.0.7/agentspecs/agents/worker-research-recruiter.yaml +82 -0
  166. agentspecs-0.0.7/agentspecs/agents/worker-rna-seq.yaml +83 -0
  167. agentspecs-0.0.7/agentspecs/agents/worker-sales-forecasting.yaml +70 -0
  168. agentspecs-0.0.7/agentspecs/agents/worker-sales-pipeline-board-report.yaml +73 -0
  169. agentspecs-0.0.7/agentspecs/agents/worker-scenario-testing.yaml +80 -0
  170. agentspecs-0.0.7/agentspecs/agents/worker-scheduled-nightly-data-quality-checks.yaml +72 -0
  171. agentspecs-0.0.7/agentspecs/agents/worker-scientific-notebook-assistant.yaml +74 -0
  172. agentspecs-0.0.7/agentspecs/agents/worker-single-cell-processing.yaml +82 -0
  173. agentspecs-0.0.7/agentspecs/agents/worker-social-listening.yaml +83 -0
  174. agentspecs-0.0.7/agentspecs/agents/worker-social-marketer.yaml +158 -0
  175. agentspecs-0.0.7/agentspecs/agents/worker-spatial-data-analysis.yaml +109 -0
  176. agentspecs-0.0.7/agentspecs/agents/worker-summarize-documents.yaml +143 -0
  177. agentspecs-0.0.7/agentspecs/agents/worker-sync-crm-contacts.yaml +169 -0
  178. agentspecs-0.0.7/agentspecs/agents/worker-thematic-analysis.yaml +82 -0
  179. agentspecs-0.0.7/agentspecs/agents/worker-travel-recommender.yaml +82 -0
  180. agentspecs-0.0.7/agentspecs/agents/worker-trends-seeker.yaml +82 -0
  181. agentspecs-0.0.7/agentspecs/agents/worker-variant-analysis.yaml +83 -0
  182. agentspecs-0.0.7/agentspecs/agents/worker-weekly-executive-briefing.yaml +71 -0
  183. agentspecs-0.0.7/agentspecs/benchmarks/agentbench.yaml +28 -0
  184. agentspecs-0.0.7/agentspecs/benchmarks/gpqa-diamond.yaml +24 -0
  185. agentspecs-0.0.7/agentspecs/benchmarks/humaneval.yaml +24 -0
  186. agentspecs-0.0.7/agentspecs/benchmarks/mmlu.yaml +24 -0
  187. agentspecs-0.0.7/agentspecs/benchmarks/swe-bench-verified.yaml +25 -0
  188. agentspecs-0.0.7/agentspecs/benchmarks/swe-bench.yaml +25 -0
  189. agentspecs-0.0.7/agentspecs/benchmarks/toolbench.yaml +27 -0
  190. agentspecs-0.0.7/agentspecs/benchmarks/truthfulqa.yaml +26 -0
  191. agentspecs-0.0.7/agentspecs/envvars/ALPHAVANTAGE_API_KEY.yaml +17 -0
  192. agentspecs-0.0.7/agentspecs/envvars/GITHUB_TOKEN.yaml +18 -0
  193. agentspecs-0.0.7/agentspecs/envvars/GOOGLE_OAUTH_CLIENT_ID.yaml +17 -0
  194. agentspecs-0.0.7/agentspecs/envvars/GOOGLE_OAUTH_CLIENT_SECRET.yaml +18 -0
  195. agentspecs-0.0.7/agentspecs/envvars/HF_TOKEN.yaml +16 -0
  196. agentspecs-0.0.7/agentspecs/envvars/KAGGLE_API_TOKEN.yaml +16 -0
  197. agentspecs-0.0.7/agentspecs/envvars/SLACK_BOT_TOKEN.yaml +18 -0
  198. agentspecs-0.0.7/agentspecs/envvars/SLACK_CHANNEL_IDS.yaml +15 -0
  199. agentspecs-0.0.7/agentspecs/envvars/SLACK_TEAM_ID.yaml +16 -0
  200. agentspecs-0.0.7/agentspecs/envvars/TAVILY_API_KEY.yaml +17 -0
  201. agentspecs-0.0.7/agentspecs/evals/confusion-matrix-evaluator.yaml +18 -0
  202. agentspecs-0.0.7/agentspecs/evals/contains.yaml +18 -0
  203. agentspecs-0.0.7/agentspecs/evals/equals-expected.yaml +18 -0
  204. agentspecs-0.0.7/agentspecs/evals/equals.yaml +18 -0
  205. agentspecs-0.0.7/agentspecs/evals/has-matching-span.yaml +18 -0
  206. agentspecs-0.0.7/agentspecs/evals/is-instance.yaml +18 -0
  207. agentspecs-0.0.7/agentspecs/evals/llm-judge.yaml +19 -0
  208. agentspecs-0.0.7/agentspecs/evals/max-duration.yaml +19 -0
  209. agentspecs-0.0.7/agentspecs/evals/precision-recall-evaluator.yaml +18 -0
  210. agentspecs-0.0.7/agentspecs/events/agent-ended.yaml +51 -0
  211. agentspecs-0.0.7/agentspecs/events/agent-started.yaml +36 -0
  212. agentspecs-0.0.7/agentspecs/events/tool-approval-requested.yaml +31 -0
  213. agentspecs-0.0.7/agentspecs/fragments/notebook-surfaces.yaml +18 -0
  214. agentspecs-0.0.7/agentspecs/frontend-tools/decks.yaml +45 -0
  215. agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-edit.yaml +25 -0
  216. agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-propose.yaml +23 -0
  217. agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-read.yaml +21 -0
  218. agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook.yaml +15 -0
  219. agentspecs-0.0.7/agentspecs/frontend-tools/lexical-document.yaml +20 -0
  220. agentspecs-0.0.7/agentspecs/guardrails/data-engineering-power-user.yaml +75 -0
  221. agentspecs-0.0.7/agentspecs/guardrails/default-platform-user.yaml +62 -0
  222. agentspecs-0.0.7/agentspecs/guardrails/github-actions-deploy.yaml +70 -0
  223. agentspecs-0.0.7/agentspecs/guardrails/github-ci-bot.yaml +69 -0
  224. agentspecs-0.0.7/agentspecs/guardrails/google-workspace-agent.yaml +72 -0
  225. agentspecs-0.0.7/agentspecs/guardrails/restricted-viewer.yaml +68 -0
  226. agentspecs-0.0.7/agentspecs/loops/__init__.py +160 -0
  227. agentspecs-0.0.7/agentspecs/loops/data-analysis.yaml +73 -0
  228. agentspecs-0.0.7/agentspecs/loops/human-in-the-loop.yaml +66 -0
  229. agentspecs-0.0.7/agentspecs/loops/ooda.yaml +61 -0
  230. agentspecs-0.0.7/agentspecs/loops/plan-execute-critic.yaml +65 -0
  231. agentspecs-0.0.7/agentspecs/mcp-servers/alphavantage.yaml +31 -0
  232. agentspecs-0.0.7/agentspecs/mcp-servers/chart.yaml +25 -0
  233. agentspecs-0.0.7/agentspecs/mcp-servers/datalayer.yaml +51 -0
  234. agentspecs-0.0.7/agentspecs/mcp-servers/earthdata.yaml +30 -0
  235. agentspecs-0.0.7/agentspecs/mcp-servers/eurus.yaml +22 -0
  236. agentspecs-0.0.7/agentspecs/mcp-servers/filesystem.yaml +28 -0
  237. agentspecs-0.0.7/agentspecs/mcp-servers/github.yaml +36 -0
  238. agentspecs-0.0.7/agentspecs/mcp-servers/google-workspace.yaml +33 -0
  239. agentspecs-0.0.7/agentspecs/mcp-servers/huggingface.yaml +42 -0
  240. agentspecs-0.0.7/agentspecs/mcp-servers/kaggle.yaml +41 -0
  241. agentspecs-0.0.7/agentspecs/mcp-servers/odoo.yaml +31 -0
  242. agentspecs-0.0.7/agentspecs/mcp-servers/salesforce.yaml +33 -0
  243. agentspecs-0.0.7/agentspecs/mcp-servers/slack.yaml +35 -0
  244. agentspecs-0.0.7/agentspecs/mcp-servers/tavily.yaml +31 -0
  245. agentspecs-0.0.7/agentspecs/memory/__init__.py +139 -0
  246. agentspecs-0.0.7/agentspecs/memory/ephemeral.yaml +68 -0
  247. agentspecs-0.0.7/agentspecs/memory/mem0.yaml +100 -0
  248. agentspecs-0.0.7/agentspecs/memory/memu.yaml +122 -0
  249. agentspecs-0.0.7/agentspecs/memory/simplemem.yaml +123 -0
  250. agentspecs-0.0.7/agentspecs/models/__init__.py +102 -0
  251. agentspecs-0.0.7/agentspecs/models/alibaba-qwen-max.yaml +22 -0
  252. agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-32b.yaml +22 -0
  253. agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-6-flash.yaml +22 -0
  254. agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-6-plus.yaml +22 -0
  255. agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-7-plus.yaml +22 -0
  256. agentspecs-0.0.7/agentspecs/models/anthropic-claude-haiku-3-5.yaml +16 -0
  257. agentspecs-0.0.7/agentspecs/models/anthropic-claude-opus-4.yaml +16 -0
  258. agentspecs-0.0.7/agentspecs/models/anthropic-claude-sonnet-4-5.yaml +16 -0
  259. agentspecs-0.0.7/agentspecs/models/anthropic-claude-sonnet-4.yaml +16 -0
  260. agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1-mini.yaml +17 -0
  261. agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1-nano.yaml +17 -0
  262. agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1.yaml +17 -0
  263. agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4o-mini.yaml +17 -0
  264. agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4o.yaml +17 -0
  265. agentspecs-0.0.7/agentspecs/models/bedrock-claude-fable-5.yaml +22 -0
  266. agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4-6.yaml +22 -0
  267. agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4-8.yaml +22 -0
  268. agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4.yaml +18 -0
  269. agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-5.yaml +29 -0
  270. agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4-5.yaml +22 -0
  271. agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4-6.yaml +18 -0
  272. agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4.yaml +18 -0
  273. agentspecs-0.0.7/agentspecs/models/ollama-gemma3-4b.yaml +23 -0
  274. agentspecs-0.0.7/agentspecs/models/ollama-llama3-1-8b.yaml +23 -0
  275. agentspecs-0.0.7/agentspecs/models/ollama-qwen2-5-coder-7b.yaml +23 -0
  276. agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1-mini.yaml +16 -0
  277. agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1-nano.yaml +16 -0
  278. agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1.yaml +16 -0
  279. agentspecs-0.0.7/agentspecs/models/openai-gpt-4o-mini.yaml +16 -0
  280. agentspecs-0.0.7/agentspecs/models/openai-gpt-4o.yaml +16 -0
  281. agentspecs-0.0.7/agentspecs/models/openai-o3-mini.yaml +16 -0
  282. agentspecs-0.0.7/agentspecs/notifications/api-push.yaml +29 -0
  283. agentspecs-0.0.7/agentspecs/notifications/email.yaml +27 -0
  284. agentspecs-0.0.7/agentspecs/notifications/slack.yaml +27 -0
  285. agentspecs-0.0.7/agentspecs/notifications/teams.yaml +23 -0
  286. agentspecs-0.0.7/agentspecs/notifications/webhook.yaml +28 -0
  287. agentspecs-0.0.7/agentspecs/outputs/csv.yaml +17 -0
  288. agentspecs-0.0.7/agentspecs/outputs/dashboard.yaml +18 -0
  289. agentspecs-0.0.7/agentspecs/outputs/database.yaml +18 -0
  290. agentspecs-0.0.7/agentspecs/outputs/document.yaml +19 -0
  291. agentspecs-0.0.7/agentspecs/outputs/email.yaml +18 -0
  292. agentspecs-0.0.7/agentspecs/outputs/json.yaml +17 -0
  293. agentspecs-0.0.7/agentspecs/outputs/notebook.yaml +17 -0
  294. agentspecs-0.0.7/agentspecs/outputs/spreadsheet.yaml +17 -0
  295. agentspecs-0.0.7/agentspecs/outputs/webhook.yaml +18 -0
  296. agentspecs-0.0.7/agentspecs/skills/accounting.yaml +24 -0
  297. agentspecs-0.0.7/agentspecs/skills/crawl.yaml +27 -0
  298. agentspecs-0.0.7/agentspecs/skills/events.yaml +23 -0
  299. agentspecs-0.0.7/agentspecs/skills/github.yaml +26 -0
  300. agentspecs-0.0.7/agentspecs/skills/jokes.yaml +21 -0
  301. agentspecs-0.0.7/agentspecs/skills/pdf.yaml +24 -0
  302. agentspecs-0.0.7/agentspecs/skills/text-summarizer.yaml +27 -0
  303. agentspecs-0.0.7/agentspecs/teams/__init__.py +561 -0
  304. agentspecs-0.0.7/agentspecs/teams/analyze-campaign-performance.yaml +130 -0
  305. agentspecs-0.0.7/agentspecs/teams/analyze-support-tickets.yaml +106 -0
  306. agentspecs-0.0.7/agentspecs/teams/audit-inventory-levels.yaml +134 -0
  307. agentspecs-0.0.7/agentspecs/teams/automate-regulatory-reporting.yaml +141 -0
  308. agentspecs-0.0.7/agentspecs/teams/comprehensive-sales-analytics.yaml +142 -0
  309. agentspecs-0.0.7/agentspecs/teams/jupyter.yaml +287 -0
  310. agentspecs-0.0.7/agentspecs/teams/notebook-benchmark.yaml +80 -0
  311. agentspecs-0.0.7/agentspecs/teams/optimize-grid-operations.yaml +129 -0
  312. agentspecs-0.0.7/agentspecs/teams/process-citizen-requests.yaml +130 -0
  313. agentspecs-0.0.7/agentspecs/teams/process-clinical-trial-data.yaml +130 -0
  314. agentspecs-0.0.7/agentspecs/teams/sync-crm-contacts.yaml +118 -0
  315. agentspecs-0.0.7/agentspecs/tools/create-plan.yaml +19 -0
  316. agentspecs-0.0.7/agentspecs/tools/current-time.yaml +19 -0
  317. agentspecs-0.0.7/agentspecs/tools/display-recipe.yaml +19 -0
  318. agentspecs-0.0.7/agentspecs/tools/example-create-plan.yaml +19 -0
  319. agentspecs-0.0.7/agentspecs/tools/example-current-time.yaml +19 -0
  320. agentspecs-0.0.7/agentspecs/tools/example-display-recipe.yaml +19 -0
  321. agentspecs-0.0.7/agentspecs/tools/example-generate-haiku.yaml +19 -0
  322. agentspecs-0.0.7/agentspecs/tools/example-generate-task-steps.yaml +19 -0
  323. agentspecs-0.0.7/agentspecs/tools/example-get-weather.yaml +19 -0
  324. agentspecs-0.0.7/agentspecs/tools/example-render-a2ui-surface.yaml +20 -0
  325. agentspecs-0.0.7/agentspecs/tools/example-update-plan-step.yaml +19 -0
  326. agentspecs-0.0.7/agentspecs/tools/generate-haiku.yaml +19 -0
  327. agentspecs-0.0.7/agentspecs/tools/generate-task-steps.yaml +19 -0
  328. agentspecs-0.0.7/agentspecs/tools/get-weather.yaml +19 -0
  329. agentspecs-0.0.7/agentspecs/tools/runtime-echo.yaml +18 -0
  330. agentspecs-0.0.7/agentspecs/tools/runtime-send-mail.yaml +19 -0
  331. agentspecs-0.0.7/agentspecs/tools/runtime-sensitive-echo.yaml +18 -0
  332. agentspecs-0.0.7/agentspecs/tools/update-plan-step.yaml +19 -0
  333. agentspecs-0.0.7/agentspecs/triggers/event.yaml +32 -0
  334. agentspecs-0.0.7/agentspecs/triggers/once.yaml +14 -0
  335. agentspecs-0.0.7/agentspecs/triggers/schedule.yaml +27 -0
  336. agentspecs-0.0.7/docs/.gitignore +23 -0
  337. agentspecs-0.0.7/docs/LICENSE +21 -0
  338. agentspecs-0.0.7/docs/Makefile +65 -0
  339. agentspecs-0.0.7/docs/README.md +45 -0
  340. agentspecs-0.0.7/docs/babel.config.js +8 -0
  341. agentspecs-0.0.7/docs/docs/agent-teams/_category_.yml +2 -0
  342. agentspecs-0.0.7/docs/docs/agent-teams/execution.mdx +100 -0
  343. agentspecs-0.0.7/docs/docs/agent-teams/index.mdx +183 -0
  344. agentspecs-0.0.7/docs/docs/agent-teams/members.mdx +82 -0
  345. agentspecs-0.0.7/docs/docs/agents/_category_.yml +2 -0
  346. agentspecs-0.0.7/docs/docs/agents/benchmarks/_category_.yml +4 -0
  347. agentspecs-0.0.7/docs/docs/agents/benchmarks/index.mdx +43 -0
  348. agentspecs-0.0.7/docs/docs/agents/env-vars/_category_.yml +4 -0
  349. agentspecs-0.0.7/docs/docs/agents/env-vars/index.mdx +147 -0
  350. agentspecs-0.0.7/docs/docs/agents/evals/_category_.yml +4 -0
  351. agentspecs-0.0.7/docs/docs/agents/evals/index.mdx +31 -0
  352. agentspecs-0.0.7/docs/docs/agents/guardrails/_category_.yml +4 -0
  353. agentspecs-0.0.7/docs/docs/agents/guardrails/index.mdx +28 -0
  354. agentspecs-0.0.7/docs/docs/agents/hooks/_category_.yml +4 -0
  355. agentspecs-0.0.7/docs/docs/agents/hooks/index.mdx +143 -0
  356. agentspecs-0.0.7/docs/docs/agents/index.mdx +238 -0
  357. agentspecs-0.0.7/docs/docs/agents/mcp-servers/_category_.yml +4 -0
  358. agentspecs-0.0.7/docs/docs/agents/mcp-servers/index.mdx +216 -0
  359. agentspecs-0.0.7/docs/docs/agents/memory/_category_.yml +4 -0
  360. agentspecs-0.0.7/docs/docs/agents/memory/index.mdx +26 -0
  361. agentspecs-0.0.7/docs/docs/agents/models/_category_.yml +4 -0
  362. agentspecs-0.0.7/docs/docs/agents/models/index.mdx +188 -0
  363. agentspecs-0.0.7/docs/docs/agents/notifications/_category_.yml +4 -0
  364. agentspecs-0.0.7/docs/docs/agents/notifications/index.mdx +36 -0
  365. agentspecs-0.0.7/docs/docs/agents/outputs/_category_.yml +4 -0
  366. agentspecs-0.0.7/docs/docs/agents/outputs/index.mdx +38 -0
  367. agentspecs-0.0.7/docs/docs/agents/skills/_category_.yml +4 -0
  368. agentspecs-0.0.7/docs/docs/agents/skills/index.mdx +165 -0
  369. agentspecs-0.0.7/docs/docs/agents/tools/_category_.yml +4 -0
  370. agentspecs-0.0.7/docs/docs/agents/tools/index.mdx +47 -0
  371. agentspecs-0.0.7/docs/docs/agents/triggers/_category_.yml +4 -0
  372. agentspecs-0.0.7/docs/docs/agents/triggers/index.mdx +25 -0
  373. agentspecs-0.0.7/docs/docs/index.mdx +157 -0
  374. agentspecs-0.0.7/docs/docs/modularity/_category_.yml +2 -0
  375. agentspecs-0.0.7/docs/docs/modularity/composition.mdx +63 -0
  376. agentspecs-0.0.7/docs/docs/modularity/extension.mdx +31 -0
  377. agentspecs-0.0.7/docs/docs/modularity/index.mdx +87 -0
  378. agentspecs-0.0.7/docs/docusaurus.config.js +177 -0
  379. agentspecs-0.0.7/docs/package.json +50 -0
  380. agentspecs-0.0.7/docs/sidebars.js +36 -0
  381. agentspecs-0.0.7/docs/src/components/HomepageRow1.js +66 -0
  382. agentspecs-0.0.7/docs/src/components/HomepageRow1.module.css +18 -0
  383. agentspecs-0.0.7/docs/src/components/HomepageRow2.js +66 -0
  384. agentspecs-0.0.7/docs/src/components/HomepageRow2.module.css +18 -0
  385. agentspecs-0.0.7/docs/src/components/HomepageRow3.js +67 -0
  386. agentspecs-0.0.7/docs/src/components/HomepageRow3.module.css +18 -0
  387. agentspecs-0.0.7/docs/src/css/custom.css +189 -0
  388. agentspecs-0.0.7/docs/src/pages/index.module.css +39 -0
  389. agentspecs-0.0.7/docs/src/pages/markdown-page.md +7 -0
  390. agentspecs-0.0.7/docs/src/theme/CustomDocItem.tsx +22 -0
  391. agentspecs-0.0.7/docs/src/theme/IconsTitle.tsx +36 -0
  392. agentspecs-0.0.7/docs/static/img/bricks.svg +32 -0
  393. agentspecs-0.0.7/docs/static/img/building-construction.svg +22 -0
  394. agentspecs-0.0.7/docs/static/img/cloud-sun.svg +14 -0
  395. agentspecs-0.0.7/docs/static/img/cloud.svg +125 -0
  396. agentspecs-0.0.7/docs/static/img/collaboration.svg +1676 -0
  397. agentspecs-0.0.7/docs/static/img/copy-left.svg +9 -0
  398. agentspecs-0.0.7/docs/static/img/datalayer/logo.png +0 -0
  399. agentspecs-0.0.7/docs/static/img/datalayer/logo.svg +158 -0
  400. agentspecs-0.0.7/docs/static/img/datalayer/personas/business.svg +527 -0
  401. agentspecs-0.0.7/docs/static/img/datalayer/personas/data-scientist.svg +486 -0
  402. agentspecs-0.0.7/docs/static/img/datalayer/personas/devops.svg +463 -0
  403. agentspecs-0.0.7/docs/static/img/datalayer/project/project-line.svg +564 -0
  404. agentspecs-0.0.7/docs/static/img/favicon.ico +0 -0
  405. agentspecs-0.0.7/docs/static/img/jupyter.svg +260 -0
  406. agentspecs-0.0.7/docs/static/img/open-source.svg +1 -0
  407. agentspecs-0.0.7/docs/static/img/react-js.svg +4 -0
  408. agentspecs-0.0.7/docs/static/img/react-js2.svg +46 -0
  409. agentspecs-0.0.7/docs/static/img/ringed-planet.svg +13 -0
  410. agentspecs-0.0.7/docs/static/img/robot.svg +28 -0
  411. agentspecs-0.0.7/docs/static/img/rocket.svg +20 -0
  412. agentspecs-0.0.7/docs/static/img/shield.svg +14 -0
  413. agentspecs-0.0.7/docs/static/img/sparkles.svg +18 -0
  414. agentspecs-0.0.7/docs/static/img/streamlit.gif +0 -0
  415. agentspecs-0.0.7/docs/static/img/super-hero.svg +32 -0
  416. agentspecs-0.0.7/docs/static/img/target.svg +134 -0
  417. agentspecs-0.0.7/docs/static/img/thumbs-up.svg +17 -0
  418. agentspecs-0.0.7/pyproject.toml +105 -0
  419. agentspecs-0.0.7/tests/__init__.py +5 -0
  420. agentspecs-0.0.7/tests/conftest.py +5 -0
  421. agentspecs-0.0.7/tests/test_teams.py +257 -0
@@ -0,0 +1,76 @@
1
+ # Copyright (c) 2025-2026 Datalayer, Inc.
2
+ #
3
+ # BSD 3-Clause License
4
+
5
+ # Builds and tests every push to main and every pull request. Publishing is
6
+ # `release.yaml`'s, on a pushed `v*` tag, and runs these same checks first.
7
+
8
+ name: CI
9
+
10
+ on:
11
+ push:
12
+ branches: [main]
13
+ pull_request:
14
+ workflow_call:
15
+
16
+ concurrency:
17
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
18
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
19
+
20
+ permissions:
21
+ contents: read
22
+
23
+ jobs:
24
+ build:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - uses: actions/checkout@v6
28
+
29
+ - uses: actions/setup-python@v6
30
+ with:
31
+ python-version: '3.12'
32
+
33
+ - name: Build the sdist and the wheel
34
+ run: |
35
+ python -m pip install --upgrade build twine
36
+ python -m build --outdir dist
37
+ twine check --strict dist/*
38
+
39
+ - name: Check the wheel carries the specs
40
+ run: |
41
+ set -euo pipefail
42
+ unzip -Z1 dist/*.whl > wheel-files.txt
43
+ grep -q '^agentspecs/agents/.*\.yaml$' wheel-files.txt
44
+ grep -q '^agentspecs/models/.*\.yaml$' wheel-files.txt
45
+ grep -q '^agentspecs/teams/.*\.yaml$' wheel-files.txt
46
+
47
+ - name: Import the built wheel
48
+ run: |
49
+ python -m venv /tmp/wheel-env
50
+ /tmp/wheel-env/bin/pip install dist/*.whl
51
+ cd /tmp
52
+ /tmp/wheel-env/bin/python -c "import agentspecs; from agentspecs.models import list_models; from agentspecs.teams import list_teams; print(agentspecs.__version__, len(list_models()), 'models,', len(list_teams()), 'teams')"
53
+
54
+ - uses: actions/upload-artifact@v4
55
+ with:
56
+ name: python
57
+ path: dist/*
58
+
59
+ test:
60
+ runs-on: ubuntu-latest
61
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ python-version: ['3.10', '3.11', '3.12', '3.13']
65
+ steps:
66
+ - uses: actions/checkout@v6
67
+
68
+ - uses: actions/setup-python@v6
69
+ with:
70
+ python-version: ${{ matrix.python-version }}
71
+
72
+ - name: Install
73
+ run: python -m pip install ".[test]"
74
+
75
+ - name: Test
76
+ run: python -m pytest tests -v
@@ -0,0 +1,56 @@
1
+ # Copyright (c) 2025-2026 Datalayer, Inc.
2
+ #
3
+ # BSD 3-Clause License
4
+
5
+ # Publishes the release a tag names to PyPI, with no stored token: PyPI
6
+ # trusts this workflow file (OIDC trusted publishing). The tests and the
7
+ # build are `ci.yaml`'s, run here first; its wheel and sdist are what is
8
+ # published. See RELEASE.md.
9
+
10
+ name: Release
11
+
12
+ on:
13
+ push:
14
+ tags:
15
+ - 'v*'
16
+
17
+ concurrency:
18
+ group: release-${{ github.ref }}
19
+ cancel-in-progress: false
20
+
21
+ permissions:
22
+ contents: read
23
+
24
+ jobs:
25
+ check-tag:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@v6
29
+
30
+ - name: Check the tag names the version being released
31
+ run: |
32
+ set -euo pipefail
33
+ tag="${GITHUB_REF_NAME#v}"
34
+ version="$(python3 -c "import re;print(re.search(r'__version__\s*=\s*[\"\x27]([^\"\x27]+)', open('agentspecs/__version__.py').read())[1])")"
35
+ echo "tag=$tag agentspecs=$version"
36
+ if [ "$tag" != "$version" ]; then
37
+ echo "::error::Tag v$tag does not match agentspecs $version"
38
+ exit 1
39
+ fi
40
+
41
+ ci:
42
+ needs: check-tag
43
+ uses: ./.github/workflows/ci.yaml
44
+
45
+ pypi:
46
+ needs: ci
47
+ runs-on: ubuntu-latest
48
+ environment: pypi
49
+ permissions:
50
+ id-token: write
51
+ steps:
52
+ - uses: actions/download-artifact@v4
53
+ with:
54
+ name: python
55
+ path: dist
56
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,136 @@
1
+ *.egg-info/
2
+ .ipynb_checkpoints
3
+
4
+ # Created by https://www.gitignore.io/api/python
5
+ # Edit at https://www.gitignore.io/?templates=python
6
+
7
+ ### Python ###
8
+ # Byte-compiled / optimized / DLL files
9
+ __pycache__/
10
+ *.py[cod]
11
+ *$py.class
12
+
13
+ # C extensions
14
+ *.so
15
+
16
+ # Distribution / packaging
17
+ .Python
18
+ build/
19
+ dist/
20
+ downloads/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ pip-wheel-metadata/
28
+ share/python-wheels/
29
+ .installed.cfg
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Environment variables:
59
+ .env
60
+
61
+ # Scrapy stuff:
62
+ .scrapy
63
+
64
+ # Sphinx documentation
65
+ docs/_build/
66
+
67
+ # PyBuilder
68
+ target/
69
+
70
+ # pyenv
71
+ .python-version
72
+
73
+ # celery beat schedule file
74
+ celerybeat-schedule
75
+
76
+ # SageMath parsed files
77
+ *.sage.py
78
+
79
+ # Spyder project settings
80
+ .spyderproject
81
+ .spyproject
82
+
83
+ # Rope project settings
84
+ .ropeproject
85
+
86
+ # Mr Developer
87
+ .mr.developer.cfg
88
+ .project
89
+ .pydevproject
90
+
91
+ # mkdocs documentation
92
+ /site
93
+
94
+ # mypy
95
+ .mypy_cache/
96
+ .dmypy.json
97
+ dmypy.json
98
+
99
+ # ruff
100
+ .ruff_cache
101
+
102
+ # Pyre type checker
103
+ .pyre/
104
+
105
+ # End of https://www.gitignore.io/api/python
106
+
107
+ # OSX files
108
+ .DS_Store
109
+
110
+ # Include
111
+ !**/.*ignore
112
+ !**/.*rc
113
+ !**/.*rc.js
114
+ !**/.*rc.json
115
+ !**/.*rc.yml
116
+ !**/.*config
117
+ !*.*rc.json
118
+ !.github
119
+ !.devcontainer
120
+
121
+ untracked_notebooks/*
122
+ .jupyter_ystore
123
+ .jupyter_ystore.db
124
+ docs/.yarn/*
125
+
126
+ uv.lock
127
+
128
+ generated
129
+ skills
130
+ examples/agent/*.txt
131
+
132
+ launcher.py
133
+
134
+ !docs/docs/skills
135
+ !examples/**/skills
136
+ !skills
@@ -0,0 +1,18 @@
1
+ header:
2
+ license:
3
+ content: |
4
+ Copyright (c) 2025-2026 Datalayer, Inc.
5
+
6
+ BSD 3-Clause License
7
+
8
+
9
+ paths-ignore:
10
+ - '**/*.ipynb'
11
+ - '**/*.json'
12
+ - '**/*.yaml'
13
+ - '**/*.yml'
14
+ - '**/.*'
15
+ - 'docs/**/*'
16
+ - 'LICENSE'
17
+
18
+ comment: on-failure
@@ -0,0 +1,38 @@
1
+ ci:
2
+ autoupdate_schedule: monthly
3
+
4
+ repos:
5
+ - repo: https://github.com/pre-commit/pre-commit-hooks
6
+ rev: v5.0.0
7
+ hooks:
8
+ - id: end-of-file-fixer
9
+ - id: check-case-conflict
10
+ - id: check-executables-have-shebangs
11
+ - id: requirements-txt-fixer
12
+ - id: check-added-large-files
13
+ - id: check-case-conflict
14
+ - id: check-toml
15
+ - id: check-yaml
16
+ - id: debug-statements
17
+ - id: forbid-new-submodules
18
+ - id: check-builtin-literals
19
+ - id: trailing-whitespace
20
+
21
+ - repo: https://github.com/python-jsonschema/check-jsonschema
22
+ rev: 0.29.4
23
+ hooks:
24
+ - id: check-github-workflows
25
+
26
+ - repo: https://github.com/executablebooks/mdformat
27
+ rev: 0.7.19
28
+ hooks:
29
+ - id: mdformat
30
+ additional_dependencies:
31
+ [mdformat-gfm, mdformat-frontmatter, mdformat-footnote]
32
+
33
+ - repo: https://github.com/charliermarsh/ruff-pre-commit
34
+ rev: v0.8.0
35
+ hooks:
36
+ - id: ruff
37
+ args: ["--fix"]
38
+ - id: ruff-format
@@ -0,0 +1,9 @@
1
+ {
2
+ "python-envs.pythonProjects": [
3
+ {
4
+ "path": ".",
5
+ "envManager": "ms-python.python:conda",
6
+ "packageManager": "ms-python.python:conda"
7
+ }
8
+ ]
9
+ }
@@ -0,0 +1,7 @@
1
+ <!--
2
+ ~ Copyright (c) 2025-2026 Datalayer, Inc.
3
+ ~
4
+ ~ BSD 3-Clause License
5
+ -->
6
+
7
+ # Changelog
@@ -0,0 +1,19 @@
1
+ # Copyright (c) 2025-2026 Datalayer, Inc.
2
+ #
3
+ # BSD 3-Clause License
4
+
5
+ FROM python:3.10-slim
6
+
7
+ WORKDIR /app
8
+
9
+ COPY pyproject.toml pyproject.toml
10
+ COPY LICENSE LICENSE
11
+ COPY README.md README.md
12
+ COPY agentspecs/* agentspecs/
13
+
14
+ RUN pip install -e .
15
+
16
+ RUN pip uninstall -y pycrdt datalayer_pycrdt
17
+ RUN pip install datalayer_pycrdt==0.12.17
18
+
19
+ CMD ["python", "-m", "agentspecs.server"]
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Datalayer
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,82 @@
1
+ # Copyright (c) 2025-2026 Datalayer, Inc.
2
+ #
3
+ # BSD 3-Clause License
4
+
5
+ SHELL=/bin/bash
6
+
7
+ .DEFAULT_GOAL := default
8
+
9
+ .PHONY: clean build test
10
+
11
+ VERSION = "0.0.3"
12
+
13
+ default: all ## Default target is all.
14
+
15
+ help: ## display this help.
16
+ @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
17
+
18
+ all: clean dev ## Clean Install and Build
19
+
20
+ install:
21
+ pip install .
22
+
23
+ dev:
24
+ pip install ".[test,lint,typing]"
25
+
26
+ build:
27
+ pip install build
28
+ python -m build .
29
+
30
+ clean: ## clean
31
+ git clean -fdx
32
+
33
+ test: ## Run tests
34
+ python -m pytest tests/ -v
35
+
36
+ start-agent: ## Start the MCP agent CLI (stdio server). Usage: make start-agent [MODEL=<model>]
37
+ python examples/agent/agent_cli.py $(if $(MODEL),--model $(MODEL),)
38
+
39
+ start-agentspecs: ## Start the Agentspecs agent CLI (stdio server). Usage: make start-agentspecs [MODEL=<model>]
40
+ python examples/agent/agent_cli.py --codemode $(if $(MODEL),--model $(MODEL),)
41
+
42
+ build-docker:
43
+ docker buildx build --platform linux/amd64,linux/arm64 -t datalayer/agentspecs:${VERSION} .
44
+ docker image tag datalayer/agentspecs:${VERSION} datalayer/agentspecs:latest
45
+
46
+ start-docker:
47
+ docker run -i --rm \
48
+ -e SERVER_URL=http://localhost:8888 \
49
+ -e TOKEN=MY_TOKEN \
50
+ -e NOTEBOOK_PATH=notebook.ipynb \
51
+ --network=host \
52
+ datalayer/agentspecs:latest
53
+
54
+ pull-docker:
55
+ docker image pull datalayer/agentspecs:latest
56
+
57
+ push-docker:
58
+ docker push datalayer/agentspecs:${VERSION}
59
+ docker push datalayer/agentspecs:latest
60
+
61
+ claude-linux:
62
+ NIXPKGS_ALLOW_UNFREE=1 nix run github:k3d3/claude-desktop-linux-flake \
63
+ --impure \
64
+ --extra-experimental-features flakes \
65
+ --extra-experimental-features nix-command
66
+
67
+ jupyterlab:
68
+ pip uninstall -y pycrdt datalayer_pycrdt
69
+ pip install datalayer_pycrdt
70
+ jupyter lab \
71
+ --port 8888 \
72
+ --ip 0.0.0.0 \
73
+ --ServerApp.root_dir ./dev/content \
74
+ --IdentityProvider.token MY_TOKEN
75
+
76
+ publish-pypi: # publish the pypi package
77
+ git clean -fdx && \
78
+ python -m build
79
+ @exec echo
80
+ @exec echo twine upload ./dist/*-py3-none-any.whl
81
+ @exec echo
82
+ @exec echo https://pypi.org/project/agentspecs/#history