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.
- agentspecs-0.0.7/.github/workflows/ci.yaml +76 -0
- agentspecs-0.0.7/.github/workflows/release.yaml +56 -0
- agentspecs-0.0.7/.gitignore +136 -0
- agentspecs-0.0.7/.licenserc.yaml +18 -0
- agentspecs-0.0.7/.pre-commit-config.yaml +38 -0
- agentspecs-0.0.7/.vscode/settings.json +9 -0
- agentspecs-0.0.7/CHANGELOG.md +7 -0
- agentspecs-0.0.7/Dockerfile +19 -0
- agentspecs-0.0.7/LICENSE +29 -0
- agentspecs-0.0.7/Makefile +82 -0
- agentspecs-0.0.7/PKG-INFO +342 -0
- agentspecs-0.0.7/README.md +279 -0
- agentspecs-0.0.7/RELEASE.md +49 -0
- agentspecs-0.0.7/agentspecs/__init__.py +15 -0
- agentspecs-0.0.7/agentspecs/__version__.py +7 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2a-researcher.yaml +57 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2a-writer.yaml +56 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2a.yaml +105 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2ui-agent.yaml +91 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2ui-jupyter-output.yaml +98 -0
- agentspecs-0.0.7/agentspecs/agents/example-a2ui-viewer.yaml +109 -0
- agentspecs-0.0.7/agentspecs/agents/example-agent-critic-loop-for-analysis.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-agentic-chat.yaml +63 -0
- agentspecs-0.0.7/agentspecs/agents/example-agentic-generative-ui.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/example-ai-creates-dashboards.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-ai-explains-notebook-output.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-ai-writes-pandas-code.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-analyze-excel-spreadsheet.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-backend-tool-rendering.yaml +77 -0
- agentspecs-0.0.7/agentspecs/agents/example-build-notebook-with-one-prompt.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-checkpoints.yaml +90 -0
- agentspecs-0.0.7/agentspecs/agents/example-code-sandbox.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/example-codemode.yaml +94 -0
- agentspecs-0.0.7/agentspecs/agents/example-compaction.yaml +78 -0
- agentspecs-0.0.7/agentspecs/agents/example-compare-two-spreadsheets.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-cost-comparison-report.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-decks.yaml +144 -0
- agentspecs-0.0.7/agentspecs/agents/example-document-agent-sidebar.yaml +95 -0
- agentspecs-0.0.7/agentspecs/agents/example-document-agent.yaml +93 -0
- agentspecs-0.0.7/agentspecs/agents/example-evals-nocodemode.yaml +78 -0
- agentspecs-0.0.7/agentspecs/agents/example-evals.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/example-explore-sql-database.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-five-ai-agents-analyze-csv.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-five-notebooks-in-parallel.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-full.yaml +112 -0
- agentspecs-0.0.7/agentspecs/agents/example-gpt-and-claude-collaborate.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-guardrails.yaml +119 -0
- agentspecs-0.0.7/agentspecs/agents/example-haiku-generative-ui.yaml +86 -0
- agentspecs-0.0.7/agentspecs/agents/example-hooks.yaml +162 -0
- agentspecs-0.0.7/agentspecs/agents/example-human-approved-automation.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-human-in-the-loop.yaml +76 -0
- agentspecs-0.0.7/agentspecs/agents/example-inference.yaml +59 -0
- agentspecs-0.0.7/agentspecs/agents/example-long-running-agent-overnight.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-mcp.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-memory.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/example-monitoring.yaml +64 -0
- agentspecs-0.0.7/agentspecs/agents/example-multi-agent-data-cleaning.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-multi-agent-root-cause-analysis.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-no-codemode.yaml +78 -0
- agentspecs-0.0.7/agentspecs/agents/example-notifications.yaml +87 -0
- agentspecs-0.0.7/agentspecs/agents/example-one-trigger-approval.yaml +59 -0
- agentspecs-0.0.7/agentspecs/agents/example-one-trigger.yaml +76 -0
- agentspecs-0.0.7/agentspecs/agents/example-otel.yaml +68 -0
- agentspecs-0.0.7/agentspecs/agents/example-output.yaml +94 -0
- agentspecs-0.0.7/agentspecs/agents/example-parameters.yaml +86 -0
- agentspecs-0.0.7/agentspecs/agents/example-replace-excel-pivot-work.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-resumable-etl-with-checkpoints.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-run-python-safely-in-the-cloud.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-colab.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-datalayer.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-docker.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-eval.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-jupyter.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-kaggle.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-modal.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-sandbox-monty.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-shared-state.yaml +71 -0
- agentspecs-0.0.7/agentspecs/agents/example-simple.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/example-skills.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/example-subagents.yaml +101 -0
- agentspecs-0.0.7/agentspecs/agents/example-tool-approvals.yaml +84 -0
- agentspecs-0.0.7/agentspecs/agents/example-tool-based-generative-ui.yaml +62 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-cell-fixer.yaml +125 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-data-analyst.yaml +173 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-compactor.yaml +141 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-reproducer.yaml +124 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-reviewer.yaml +90 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-notebook-writer.yaml +96 -0
- agentspecs-0.0.7/agentspecs/agents/jupyter-tutor.yaml +208 -0
- agentspecs-0.0.7/agentspecs/agents/loop-shell.yaml +130 -0
- agentspecs-0.0.7/agentspecs/agents/worker-accountant.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-agent-reviews-sql.yaml +71 -0
- agentspecs-0.0.7/agentspecs/agents/worker-analyze-campaign-performance.yaml +187 -0
- agentspecs-0.0.7/agentspecs/agents/worker-analyze-support-tickets.yaml +165 -0
- agentspecs-0.0.7/agentspecs/agents/worker-ap-invoice.yaml +78 -0
- agentspecs-0.0.7/agentspecs/agents/worker-audit-inventory-levels.yaml +166 -0
- agentspecs-0.0.7/agentspecs/agents/worker-audit-pack-builder.yaml +76 -0
- agentspecs-0.0.7/agentspecs/agents/worker-automate-regulatory-reporting.yaml +191 -0
- agentspecs-0.0.7/agentspecs/agents/worker-backtest-auditor.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-bank-reconciliation.yaml +77 -0
- agentspecs-0.0.7/agentspecs/agents/worker-campaign-planning.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-cat-exposure.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-change-detection.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-classify-route-emails.yaml +143 -0
- agentspecs-0.0.7/agentspecs/agents/worker-cms-astro.yaml +162 -0
- agentspecs-0.0.7/agentspecs/agents/worker-coding-tutor.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-cohort-comparison.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-collections.yaml +77 -0
- agentspecs-0.0.7/agentspecs/agents/worker-community-response.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-competitive-intelligence.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-compliance-report-draft.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/worker-comprehensive-sales-analytics.yaml +131 -0
- agentspecs-0.0.7/agentspecs/agents/worker-compute-cost-optimizer.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-content-repurposing.yaml +84 -0
- agentspecs-0.0.7/agentspecs/agents/worker-crawler.yaml +120 -0
- agentspecs-0.0.7/agentspecs/agents/worker-crop-monitoring.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-curtailment-investigator.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-customer-churn-analysis.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/worker-customer-interviewer.yaml +146 -0
- agentspecs-0.0.7/agentspecs/agents/worker-data-acquisition.yaml +122 -0
- agentspecs-0.0.7/agentspecs/agents/worker-disaster-assessment.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-document-qa.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/worker-end-of-month-performance.yaml +292 -0
- agentspecs-0.0.7/agentspecs/agents/worker-energy-trading-analyst.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-environmental-compliance.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-event-response.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-evidence-repository.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-expense-audit.yaml +76 -0
- agentspecs-0.0.7/agentspecs/agents/worker-exposure-data-quality.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-extract-data-from-files.yaml +147 -0
- agentspecs-0.0.7/agentspecs/agents/worker-extract-kpis-from-quarterly-pdf.yaml +74 -0
- agentspecs-0.0.7/agentspecs/agents/worker-factor-analysis.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-financial-viz.yaml +118 -0
- agentspecs-0.0.7/agentspecs/agents/worker-generate-weekly-reports.yaml +192 -0
- agentspecs-0.0.7/agentspecs/agents/worker-github-agent.yaml +118 -0
- agentspecs-0.0.7/agentspecs/agents/worker-grid-forecast.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-information-routing.yaml +119 -0
- agentspecs-0.0.7/agentspecs/agents/worker-infrastructure-monitoring.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-insurance-claims-review.yaml +71 -0
- agentspecs-0.0.7/agentspecs/agents/worker-interview-guide.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-inventory-demand-planning.yaml +70 -0
- agentspecs-0.0.7/agentspecs/agents/worker-job-hunter.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-mail-triage.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-marketing-analytics.yaml +70 -0
- agentspecs-0.0.7/agentspecs/agents/worker-medical-research-review.yaml +74 -0
- agentspecs-0.0.7/agentspecs/agents/worker-model-comparison.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-monitor-sales-kpis.yaml +205 -0
- agentspecs-0.0.7/agentspecs/agents/worker-month-end-close.yaml +76 -0
- agentspecs-0.0.7/agentspecs/agents/worker-news-aggregator.yaml +161 -0
- agentspecs-0.0.7/agentspecs/agents/worker-optimize-dynamic-pricing.yaml +211 -0
- agentspecs-0.0.7/agentspecs/agents/worker-optimize-grid-operations.yaml +184 -0
- agentspecs-0.0.7/agentspecs/agents/worker-optimize-sql-query-performance.yaml +71 -0
- agentspecs-0.0.7/agentspecs/agents/worker-performance-attribution.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-pipeline-debugger.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-pitcher.yaml +185 -0
- agentspecs-0.0.7/agentspecs/agents/worker-portfolio-accumulation.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-portfolio-risk.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-predictive-maintenance.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-process-citizen-requests.yaml +195 -0
- agentspecs-0.0.7/agentspecs/agents/worker-process-clinical-trial-data.yaml +194 -0
- agentspecs-0.0.7/agentspecs/agents/worker-process-financial-transactions.yaml +184 -0
- agentspecs-0.0.7/agentspecs/agents/worker-product-finder.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-quant-research.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-renewable-asset-performance.yaml +81 -0
- agentspecs-0.0.7/agentspecs/agents/worker-research-recruiter.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-rna-seq.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-sales-forecasting.yaml +70 -0
- agentspecs-0.0.7/agentspecs/agents/worker-sales-pipeline-board-report.yaml +73 -0
- agentspecs-0.0.7/agentspecs/agents/worker-scenario-testing.yaml +80 -0
- agentspecs-0.0.7/agentspecs/agents/worker-scheduled-nightly-data-quality-checks.yaml +72 -0
- agentspecs-0.0.7/agentspecs/agents/worker-scientific-notebook-assistant.yaml +74 -0
- agentspecs-0.0.7/agentspecs/agents/worker-single-cell-processing.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-social-listening.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-social-marketer.yaml +158 -0
- agentspecs-0.0.7/agentspecs/agents/worker-spatial-data-analysis.yaml +109 -0
- agentspecs-0.0.7/agentspecs/agents/worker-summarize-documents.yaml +143 -0
- agentspecs-0.0.7/agentspecs/agents/worker-sync-crm-contacts.yaml +169 -0
- agentspecs-0.0.7/agentspecs/agents/worker-thematic-analysis.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-travel-recommender.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-trends-seeker.yaml +82 -0
- agentspecs-0.0.7/agentspecs/agents/worker-variant-analysis.yaml +83 -0
- agentspecs-0.0.7/agentspecs/agents/worker-weekly-executive-briefing.yaml +71 -0
- agentspecs-0.0.7/agentspecs/benchmarks/agentbench.yaml +28 -0
- agentspecs-0.0.7/agentspecs/benchmarks/gpqa-diamond.yaml +24 -0
- agentspecs-0.0.7/agentspecs/benchmarks/humaneval.yaml +24 -0
- agentspecs-0.0.7/agentspecs/benchmarks/mmlu.yaml +24 -0
- agentspecs-0.0.7/agentspecs/benchmarks/swe-bench-verified.yaml +25 -0
- agentspecs-0.0.7/agentspecs/benchmarks/swe-bench.yaml +25 -0
- agentspecs-0.0.7/agentspecs/benchmarks/toolbench.yaml +27 -0
- agentspecs-0.0.7/agentspecs/benchmarks/truthfulqa.yaml +26 -0
- agentspecs-0.0.7/agentspecs/envvars/ALPHAVANTAGE_API_KEY.yaml +17 -0
- agentspecs-0.0.7/agentspecs/envvars/GITHUB_TOKEN.yaml +18 -0
- agentspecs-0.0.7/agentspecs/envvars/GOOGLE_OAUTH_CLIENT_ID.yaml +17 -0
- agentspecs-0.0.7/agentspecs/envvars/GOOGLE_OAUTH_CLIENT_SECRET.yaml +18 -0
- agentspecs-0.0.7/agentspecs/envvars/HF_TOKEN.yaml +16 -0
- agentspecs-0.0.7/agentspecs/envvars/KAGGLE_API_TOKEN.yaml +16 -0
- agentspecs-0.0.7/agentspecs/envvars/SLACK_BOT_TOKEN.yaml +18 -0
- agentspecs-0.0.7/agentspecs/envvars/SLACK_CHANNEL_IDS.yaml +15 -0
- agentspecs-0.0.7/agentspecs/envvars/SLACK_TEAM_ID.yaml +16 -0
- agentspecs-0.0.7/agentspecs/envvars/TAVILY_API_KEY.yaml +17 -0
- agentspecs-0.0.7/agentspecs/evals/confusion-matrix-evaluator.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/contains.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/equals-expected.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/equals.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/has-matching-span.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/is-instance.yaml +18 -0
- agentspecs-0.0.7/agentspecs/evals/llm-judge.yaml +19 -0
- agentspecs-0.0.7/agentspecs/evals/max-duration.yaml +19 -0
- agentspecs-0.0.7/agentspecs/evals/precision-recall-evaluator.yaml +18 -0
- agentspecs-0.0.7/agentspecs/events/agent-ended.yaml +51 -0
- agentspecs-0.0.7/agentspecs/events/agent-started.yaml +36 -0
- agentspecs-0.0.7/agentspecs/events/tool-approval-requested.yaml +31 -0
- agentspecs-0.0.7/agentspecs/fragments/notebook-surfaces.yaml +18 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/decks.yaml +45 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-edit.yaml +25 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-propose.yaml +23 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook-read.yaml +21 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/jupyter-notebook.yaml +15 -0
- agentspecs-0.0.7/agentspecs/frontend-tools/lexical-document.yaml +20 -0
- agentspecs-0.0.7/agentspecs/guardrails/data-engineering-power-user.yaml +75 -0
- agentspecs-0.0.7/agentspecs/guardrails/default-platform-user.yaml +62 -0
- agentspecs-0.0.7/agentspecs/guardrails/github-actions-deploy.yaml +70 -0
- agentspecs-0.0.7/agentspecs/guardrails/github-ci-bot.yaml +69 -0
- agentspecs-0.0.7/agentspecs/guardrails/google-workspace-agent.yaml +72 -0
- agentspecs-0.0.7/agentspecs/guardrails/restricted-viewer.yaml +68 -0
- agentspecs-0.0.7/agentspecs/loops/__init__.py +160 -0
- agentspecs-0.0.7/agentspecs/loops/data-analysis.yaml +73 -0
- agentspecs-0.0.7/agentspecs/loops/human-in-the-loop.yaml +66 -0
- agentspecs-0.0.7/agentspecs/loops/ooda.yaml +61 -0
- agentspecs-0.0.7/agentspecs/loops/plan-execute-critic.yaml +65 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/alphavantage.yaml +31 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/chart.yaml +25 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/datalayer.yaml +51 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/earthdata.yaml +30 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/eurus.yaml +22 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/filesystem.yaml +28 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/github.yaml +36 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/google-workspace.yaml +33 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/huggingface.yaml +42 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/kaggle.yaml +41 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/odoo.yaml +31 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/salesforce.yaml +33 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/slack.yaml +35 -0
- agentspecs-0.0.7/agentspecs/mcp-servers/tavily.yaml +31 -0
- agentspecs-0.0.7/agentspecs/memory/__init__.py +139 -0
- agentspecs-0.0.7/agentspecs/memory/ephemeral.yaml +68 -0
- agentspecs-0.0.7/agentspecs/memory/mem0.yaml +100 -0
- agentspecs-0.0.7/agentspecs/memory/memu.yaml +122 -0
- agentspecs-0.0.7/agentspecs/memory/simplemem.yaml +123 -0
- agentspecs-0.0.7/agentspecs/models/__init__.py +102 -0
- agentspecs-0.0.7/agentspecs/models/alibaba-qwen-max.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-32b.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-6-flash.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-6-plus.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/alibaba-qwen3-7-plus.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/anthropic-claude-haiku-3-5.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/anthropic-claude-opus-4.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/anthropic-claude-sonnet-4-5.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/anthropic-claude-sonnet-4.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1-mini.yaml +17 -0
- agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1-nano.yaml +17 -0
- agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4-1.yaml +17 -0
- agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4o-mini.yaml +17 -0
- agentspecs-0.0.7/agentspecs/models/azure-openai-gpt-4o.yaml +17 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-fable-5.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4-6.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4-8.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-4.yaml +18 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-opus-5.yaml +29 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4-5.yaml +22 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4-6.yaml +18 -0
- agentspecs-0.0.7/agentspecs/models/bedrock-claude-sonnet-4.yaml +18 -0
- agentspecs-0.0.7/agentspecs/models/ollama-gemma3-4b.yaml +23 -0
- agentspecs-0.0.7/agentspecs/models/ollama-llama3-1-8b.yaml +23 -0
- agentspecs-0.0.7/agentspecs/models/ollama-qwen2-5-coder-7b.yaml +23 -0
- agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1-mini.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1-nano.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/openai-gpt-4-1.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/openai-gpt-4o-mini.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/openai-gpt-4o.yaml +16 -0
- agentspecs-0.0.7/agentspecs/models/openai-o3-mini.yaml +16 -0
- agentspecs-0.0.7/agentspecs/notifications/api-push.yaml +29 -0
- agentspecs-0.0.7/agentspecs/notifications/email.yaml +27 -0
- agentspecs-0.0.7/agentspecs/notifications/slack.yaml +27 -0
- agentspecs-0.0.7/agentspecs/notifications/teams.yaml +23 -0
- agentspecs-0.0.7/agentspecs/notifications/webhook.yaml +28 -0
- agentspecs-0.0.7/agentspecs/outputs/csv.yaml +17 -0
- agentspecs-0.0.7/agentspecs/outputs/dashboard.yaml +18 -0
- agentspecs-0.0.7/agentspecs/outputs/database.yaml +18 -0
- agentspecs-0.0.7/agentspecs/outputs/document.yaml +19 -0
- agentspecs-0.0.7/agentspecs/outputs/email.yaml +18 -0
- agentspecs-0.0.7/agentspecs/outputs/json.yaml +17 -0
- agentspecs-0.0.7/agentspecs/outputs/notebook.yaml +17 -0
- agentspecs-0.0.7/agentspecs/outputs/spreadsheet.yaml +17 -0
- agentspecs-0.0.7/agentspecs/outputs/webhook.yaml +18 -0
- agentspecs-0.0.7/agentspecs/skills/accounting.yaml +24 -0
- agentspecs-0.0.7/agentspecs/skills/crawl.yaml +27 -0
- agentspecs-0.0.7/agentspecs/skills/events.yaml +23 -0
- agentspecs-0.0.7/agentspecs/skills/github.yaml +26 -0
- agentspecs-0.0.7/agentspecs/skills/jokes.yaml +21 -0
- agentspecs-0.0.7/agentspecs/skills/pdf.yaml +24 -0
- agentspecs-0.0.7/agentspecs/skills/text-summarizer.yaml +27 -0
- agentspecs-0.0.7/agentspecs/teams/__init__.py +561 -0
- agentspecs-0.0.7/agentspecs/teams/analyze-campaign-performance.yaml +130 -0
- agentspecs-0.0.7/agentspecs/teams/analyze-support-tickets.yaml +106 -0
- agentspecs-0.0.7/agentspecs/teams/audit-inventory-levels.yaml +134 -0
- agentspecs-0.0.7/agentspecs/teams/automate-regulatory-reporting.yaml +141 -0
- agentspecs-0.0.7/agentspecs/teams/comprehensive-sales-analytics.yaml +142 -0
- agentspecs-0.0.7/agentspecs/teams/jupyter.yaml +287 -0
- agentspecs-0.0.7/agentspecs/teams/notebook-benchmark.yaml +80 -0
- agentspecs-0.0.7/agentspecs/teams/optimize-grid-operations.yaml +129 -0
- agentspecs-0.0.7/agentspecs/teams/process-citizen-requests.yaml +130 -0
- agentspecs-0.0.7/agentspecs/teams/process-clinical-trial-data.yaml +130 -0
- agentspecs-0.0.7/agentspecs/teams/sync-crm-contacts.yaml +118 -0
- agentspecs-0.0.7/agentspecs/tools/create-plan.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/current-time.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/display-recipe.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-create-plan.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-current-time.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-display-recipe.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-generate-haiku.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-generate-task-steps.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-get-weather.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/example-render-a2ui-surface.yaml +20 -0
- agentspecs-0.0.7/agentspecs/tools/example-update-plan-step.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/generate-haiku.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/generate-task-steps.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/get-weather.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/runtime-echo.yaml +18 -0
- agentspecs-0.0.7/agentspecs/tools/runtime-send-mail.yaml +19 -0
- agentspecs-0.0.7/agentspecs/tools/runtime-sensitive-echo.yaml +18 -0
- agentspecs-0.0.7/agentspecs/tools/update-plan-step.yaml +19 -0
- agentspecs-0.0.7/agentspecs/triggers/event.yaml +32 -0
- agentspecs-0.0.7/agentspecs/triggers/once.yaml +14 -0
- agentspecs-0.0.7/agentspecs/triggers/schedule.yaml +27 -0
- agentspecs-0.0.7/docs/.gitignore +23 -0
- agentspecs-0.0.7/docs/LICENSE +21 -0
- agentspecs-0.0.7/docs/Makefile +65 -0
- agentspecs-0.0.7/docs/README.md +45 -0
- agentspecs-0.0.7/docs/babel.config.js +8 -0
- agentspecs-0.0.7/docs/docs/agent-teams/_category_.yml +2 -0
- agentspecs-0.0.7/docs/docs/agent-teams/execution.mdx +100 -0
- agentspecs-0.0.7/docs/docs/agent-teams/index.mdx +183 -0
- agentspecs-0.0.7/docs/docs/agent-teams/members.mdx +82 -0
- agentspecs-0.0.7/docs/docs/agents/_category_.yml +2 -0
- agentspecs-0.0.7/docs/docs/agents/benchmarks/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/benchmarks/index.mdx +43 -0
- agentspecs-0.0.7/docs/docs/agents/env-vars/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/env-vars/index.mdx +147 -0
- agentspecs-0.0.7/docs/docs/agents/evals/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/evals/index.mdx +31 -0
- agentspecs-0.0.7/docs/docs/agents/guardrails/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/guardrails/index.mdx +28 -0
- agentspecs-0.0.7/docs/docs/agents/hooks/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/hooks/index.mdx +143 -0
- agentspecs-0.0.7/docs/docs/agents/index.mdx +238 -0
- agentspecs-0.0.7/docs/docs/agents/mcp-servers/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/mcp-servers/index.mdx +216 -0
- agentspecs-0.0.7/docs/docs/agents/memory/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/memory/index.mdx +26 -0
- agentspecs-0.0.7/docs/docs/agents/models/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/models/index.mdx +188 -0
- agentspecs-0.0.7/docs/docs/agents/notifications/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/notifications/index.mdx +36 -0
- agentspecs-0.0.7/docs/docs/agents/outputs/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/outputs/index.mdx +38 -0
- agentspecs-0.0.7/docs/docs/agents/skills/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/skills/index.mdx +165 -0
- agentspecs-0.0.7/docs/docs/agents/tools/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/tools/index.mdx +47 -0
- agentspecs-0.0.7/docs/docs/agents/triggers/_category_.yml +4 -0
- agentspecs-0.0.7/docs/docs/agents/triggers/index.mdx +25 -0
- agentspecs-0.0.7/docs/docs/index.mdx +157 -0
- agentspecs-0.0.7/docs/docs/modularity/_category_.yml +2 -0
- agentspecs-0.0.7/docs/docs/modularity/composition.mdx +63 -0
- agentspecs-0.0.7/docs/docs/modularity/extension.mdx +31 -0
- agentspecs-0.0.7/docs/docs/modularity/index.mdx +87 -0
- agentspecs-0.0.7/docs/docusaurus.config.js +177 -0
- agentspecs-0.0.7/docs/package.json +50 -0
- agentspecs-0.0.7/docs/sidebars.js +36 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow1.js +66 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow1.module.css +18 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow2.js +66 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow2.module.css +18 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow3.js +67 -0
- agentspecs-0.0.7/docs/src/components/HomepageRow3.module.css +18 -0
- agentspecs-0.0.7/docs/src/css/custom.css +189 -0
- agentspecs-0.0.7/docs/src/pages/index.module.css +39 -0
- agentspecs-0.0.7/docs/src/pages/markdown-page.md +7 -0
- agentspecs-0.0.7/docs/src/theme/CustomDocItem.tsx +22 -0
- agentspecs-0.0.7/docs/src/theme/IconsTitle.tsx +36 -0
- agentspecs-0.0.7/docs/static/img/bricks.svg +32 -0
- agentspecs-0.0.7/docs/static/img/building-construction.svg +22 -0
- agentspecs-0.0.7/docs/static/img/cloud-sun.svg +14 -0
- agentspecs-0.0.7/docs/static/img/cloud.svg +125 -0
- agentspecs-0.0.7/docs/static/img/collaboration.svg +1676 -0
- agentspecs-0.0.7/docs/static/img/copy-left.svg +9 -0
- agentspecs-0.0.7/docs/static/img/datalayer/logo.png +0 -0
- agentspecs-0.0.7/docs/static/img/datalayer/logo.svg +158 -0
- agentspecs-0.0.7/docs/static/img/datalayer/personas/business.svg +527 -0
- agentspecs-0.0.7/docs/static/img/datalayer/personas/data-scientist.svg +486 -0
- agentspecs-0.0.7/docs/static/img/datalayer/personas/devops.svg +463 -0
- agentspecs-0.0.7/docs/static/img/datalayer/project/project-line.svg +564 -0
- agentspecs-0.0.7/docs/static/img/favicon.ico +0 -0
- agentspecs-0.0.7/docs/static/img/jupyter.svg +260 -0
- agentspecs-0.0.7/docs/static/img/open-source.svg +1 -0
- agentspecs-0.0.7/docs/static/img/react-js.svg +4 -0
- agentspecs-0.0.7/docs/static/img/react-js2.svg +46 -0
- agentspecs-0.0.7/docs/static/img/ringed-planet.svg +13 -0
- agentspecs-0.0.7/docs/static/img/robot.svg +28 -0
- agentspecs-0.0.7/docs/static/img/rocket.svg +20 -0
- agentspecs-0.0.7/docs/static/img/shield.svg +14 -0
- agentspecs-0.0.7/docs/static/img/sparkles.svg +18 -0
- agentspecs-0.0.7/docs/static/img/streamlit.gif +0 -0
- agentspecs-0.0.7/docs/static/img/super-hero.svg +32 -0
- agentspecs-0.0.7/docs/static/img/target.svg +134 -0
- agentspecs-0.0.7/docs/static/img/thumbs-up.svg +17 -0
- agentspecs-0.0.7/pyproject.toml +105 -0
- agentspecs-0.0.7/tests/__init__.py +5 -0
- agentspecs-0.0.7/tests/conftest.py +5 -0
- 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,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"]
|
agentspecs-0.0.7/LICENSE
ADDED
|
@@ -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
|