Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/datarobot-oss/datarobot-agent-skillsnpx agentmods add skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicdWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicd)<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicd"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicd/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicd"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/datarobot-app-framework-cicd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00058 | $0.04886 |
| Opus 5 | $0.00029 | $0.02443 |
| Sonnet 5 | $0.00012 | $0.00977 |
| Haiku 4.5 | $0.00006 | $0.00489 |
Grade C, and why
datarobot-app-framework-cicd scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://get.pulumi.com | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://get.pulumi.com | sh How it starts
The opening of the file, as written. The whole thing — 471 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DataRobot Application Templates CI/CD Skill
This skill provides comprehensive guidance for setting up production-grade CI/CD pipelines for DataRobot application templates, including automated testing, review deployments, and continuous delivery.
Quick Start
Default behavior: When a user asks to "set up CI/CD" without specifying a platform or backend, always use the Simple Path below — three workflow files, two GitHub Secrets, done. Do not create infra/scripts/, do not add CI/CD tasks to infra/Taskfile.yaml, do not involve GPG encryption unless the user explicitly asks for it.
Only deviate from the simple path when the user specifies:
- A specific Pulumi state backend (Azure Blob, S3, GCS) → use
scripts/and see Implementation Pattern - GitLab CI/CD → see GitLab CI/CD Configuration
- Many secrets to manage → consider GPG approach in
scripts/
Simple Path: Pulumi Cloud + GitHub Secrets
For most data scientists and AI engineers, this is all you need. No GPG encryption, no cloud storage account, no extra scripts.
What to create in the user's repository:
-
Copy the three workflow files to
.github/workflows/:Source Destination Trigger examples/github-cd-pulumi-cloud.yml.github/workflows/cd.ymlAutomatic — every merge to mainexamples/github-deploy-pulumi-cloud.yml.github/workflows/deploy-pr.ymlManual — user picks PR branch + enters stack name (e.g. pr-42)examples/github-destroy-pulumi-cloud.yml.github/workflows/destroy.ymlManual — user enters stack name to tear down -
Create
.github/workflows/README.mdfromexamples/workflows-README.md. This is the setup guide that tells the user exactly what secrets and variables to add and how. -
Tell the user to follow the setup guide in
.github/workflows/README.md.
That's it. Do not add anything to infra/Taskfile.yaml or create infra/scripts/ for this path.
What ships with it
19 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/github-cd-pulumi-cloud.yml 1.1 KB
- examples/github-deploy-pulumi-cloud.yml 1.3 KB
- examples/github-destroy-pulumi-cloud.yml 1.2 KB
- examples/workflows-README.md 3.0 KB
- QUICK_REFERENCE.md 4.0 KB
- README.md 6.6 KB
- references/example-taskfile.yaml 895 B
- references/workflow-examples.md 2.5 KB
- scripts/decrypt-secrets.sh 1.2 KB runs code
- scripts/encrypt-secrets.sh 1.9 KB runs code
- scripts/github-cd.yml 2.0 KB
- scripts/github-deploy.yml 5.0 KB
- scripts/github-destroy.yml 1.9 KB
- scripts/gitlab-ci.yml 4.7 KB
- scripts/infra-README.md 6.4 KB
- scripts/pulumi-setup.sh 11 KB runs code
- scripts/setup-github-secrets.sh 3.6 KB runs code
- scripts/setup-gitlab-variables.sh 4.4 KB runs code
- scripts/taskfile-snippets.yaml 5.6 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 471 lines · 58 tokens per session scan C ff833cd03130
datarobot-app-framework-cicd is a skill published in the GitHub repository datarobot-oss/datarobot-agent-skills (25 stars, last pushed today), licensed Apache-2.0. It adds 58 tokens to every session and 4,886 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
review-tooling
Detect what dev tooling infrastructure a project has and flag gaps across linters, formatters, pre-commit hooks, test runners, and CI/CD pipelines. Returns structured findings without applying changes. Use when the user asks to "review tooling", "check project tooling", "what tooling is missing", "review dev…
ci-cd
Use when building or fixing a delivery pipeline. Covers pipeline structure, caching, test parallelization, deployment strategies, secrets, and making the pipeline fast enough that people do not route around it.
mobile-release
Use when preparing a mobile app for release. Covers versioning, signing, staged rollout, crash monitoring, store review requirements, and rollback when an update goes wrong.
github-action
Sets up and debugs the Crowdin GitHub Action (crowdin/github-action), which syncs a repository with a Crowdin project and opens the translation pull request. Use whenever the user wires Crowdin into GitHub Actions, writes or reviews a .github/workflows/crowdin.yml step, tunes its inputs (uploadsources…
neo-azure-pipelines
Use this skill when the user asks to create, review, debug, or modernize Azure Pipelines YAML for CI/CD, especially .NET builds, Azure App Service deploys, or IIS/on-premises deploys. Prefer bundled templates and verify task syntax against Microsoft docs when version-specific accuracy matters.
offensive-cicd-pipeline
Comprehensive CI/CD pipeline exploitation methodology covering GitHub Actions injection vectors (expression injection via PR titles and issue bodies, workflowrun event abuse, GITHUBTOKEN over-scoping, composite action supply chain compromise), Jenkins attack paths (Groovy sandbox escapes, script console remote code…