Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aileron-platform/aileron --skill aileron-canvas-publishgit clone --depth 1 https://github.com/aileron-platform/aileronWrote 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/aileron-platform/aileron/aileron-canvas-publish)<a href="https://agentmods.dev/skills/aileron-platform/aileron/aileron-canvas-publish"><img src="https://agentmods.dev/badge/skills/aileron-platform/aileron/aileron-canvas-publish/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/aileron-platform/aileron/aileron-canvas-publish"><img src="https://agentmods.dev/badge/skills/aileron-platform/aileron/aileron-canvas-publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00099 | $0.01390 |
| Opus 5 | $0.00049 | $0.00695 |
| Sonnet 5 | $0.00020 | $0.00278 |
| Haiku 4.5 | $0.00010 | $0.00139 |
Grade A, and why
aileron-canvas-publish scanned grade A with 0 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Aileron Canvas Publish
此 Skill 是可選的 Workspace 能力。Canvas 預覽不會自動發佈,也不需要 Aileron 平台提供 Publishing API。Skill 只透過目前 Workspace process environment 呼叫已由管理員準備好的 GitLab 與 Argo CD API。
信任與邊界
- 管理員預先建立一個空的 GitLab Project;Skill 只負責 bootstrap repository scaffold, 不建立 Project,也不建立 Argo CD AppProject、Kubernetes namespace 或 TLS/DNS 資源。
- 憑證只從 Workspace 的
AILERON_PUBLISH_*環境變數讀取,不讀取.env、平台全域設定檔或 Aileron Manager 設定。Token/password 不會寫入 Git、Result Envelope 或輸出。 - 初始 provider 組合是
gitlab+argocd。其他 Git provider 或直接 Helm deploy 必須以 新 provider script 實作,不改變本 Skill 的 provider-neutral Result Envelope。 - 每個 Workspace 使用一個 GitLab Project;每個站台使用 Skill 產生的 UUID
siteId與 長期存在的sites/<siteId>branch。Git manifest 是站台 identity 的來源。 - 只接受 managed
static與nextjs-standalone。Next.js 必須有 lockfile、packageManager與output: 'standalone'。
操作順序
1. 檢查環境
先執行:
python3 scripts/bootstrap.py --check
這會檢查 Workspace 環境、GitLab Project、受限的 Argo CD AppProject、repository scaffold、
OCI image digest 與必要的固定資源。若 Project 不存在,回報 GITLAB_PROJECT_MISSING,請
使用者向平台管理員取得已建立的 Project;不要自行建立 Project。
2. 首次準備 repository
若檢查回報需要 bootstrap,執行:
python3 scripts/bootstrap.py --ensure
這會把本 Skill 內的固定 scaffold 推送到管理員建立的空 Project,並同步 Skill-owned 的
CI variables。OCI push password 只設定給 package environment,validate/build job 不會取得
artifact push credential。
3. 發佈目前 Canvas
python3 scripts/publish.py --workspace /workspace
Skill 會:
- 讀取
/workspace/.aileron/canvas.json,將來源複製到sites/<siteId>branch; - 套用固定的 symlink、credential-like file、
.env、build output 與特殊檔案過濾; - 以
project identity + siteId + source commit產生 deterministicpub-...; - 透過 GitLab API 觸發唯一允許的
AILERON_PUBLISH_TRIGGER=skillPipeline; - 等待 image/chart Pipeline 成功,建立或更新一個 Argo CD Application,回傳
DEPLOYING; - 將來源 commit、Publication ID 與 deployment action ID 寫入本地 pointer,方便後續查詢。
Pipeline 產物是 immutable site image 與 immutable OCI Helm chart;Argo CD 以 chart
targetRevision 部署,不直接從 Git 讀取 Kubernetes manifest。
What ships with it
45 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.
- agents/openai.yaml 335 B
- assets/argocd/canvas-sites-project.yaml 614 B
- assets/argocd/user-application.yaml 757 B
- assets/kit/checksums.sha256 2.5 KB
- assets/kit/manifest.json 1.0 KB
- assets/runtime-base/.gitlab-ci.yml 1.7 KB
- assets/runtime-base/build-nextjs.sh 953 B runs code
- assets/runtime-base/Dockerfile.builder 587 B
- assets/runtime-base/Dockerfile.runtime 397 B
- assets/runtime-base/entrypoint.sh 269 B runs code
- assets/runtime-base/package-lock.json 69 KB
- assets/runtime-base/package.json 464 B
- assets/runtime-base/publication-proxy.js 2.1 KB runs code
- assets/runtime-base/static-server.js 4.2 KB runs code
- assets/user-site-repo/.gitlab-ci.yml 713 B
- assets/user-site-repo/chart/Chart.yaml 167 B
- assets/user-site-repo/chart/templates/_helpers.tpl 683 B
- assets/user-site-repo/chart/templates/deployment.yaml 1.7 KB
- assets/user-site-repo/chart/templates/ingress.yaml 790 B
- assets/user-site-repo/chart/templates/service.yaml 398 B
- assets/user-site-repo/chart/values.yaml 247 B
- assets/user-site-repo/ci/build_site.py 4.1 KB runs code
- assets/user-site-repo/ci/build-site.sh 45 B runs code
- assets/user-site-repo/ci/Dockerfile.site 177 B
- assets/user-site-repo/ci/package.py 9.5 KB runs code
- assets/user-site-repo/ci/validate_source.py 3.2 KB runs code
- evals/evals.json 982 B
- references/homelab-setup.md 3.7 KB
- references/troubleshooting.md 3.2 KB
- scripts/_common.py 34 KB runs code
- scripts/bootstrap.py 5.3 KB runs code
- scripts/config.py 8.8 KB runs code
- scripts/deploy.py 7.3 KB runs code
- scripts/ensure_user_resources.py 14 KB runs code
- scripts/publish.py 16 KB runs code
- scripts/rollback.py 7.6 KB runs code
- scripts/status.py 18 KB runs code
- scripts/unpublish.py 4.6 KB runs code
- scripts/upgrade.py 776 B runs code
- tests/conftest.py 293 B runs code
- tests/container/assert-runtime-images.sh 4.2 KB runs code
- tests/container/fixtures/static-build/site/about/index.html 159 B
- tests/container/fixtures/static-build/site/app.js 58 B runs code
- tests/container/fixtures/static-build/site/index.html 216 B
- tests/test_publishing_contract.py 26 KB runs code
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 · 123 lines · 99 tokens per session scan A a43d6c08d064
aileron-canvas-publish is a skill published in the GitHub repository aileron-platform/aileron (11 stars, last pushed 19d ago), licensed Apache-2.0. It adds 99 tokens to every session and 1,390 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
atmos-hooks
Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.
atmos-modernization
Atmos Modernization: migrate deprecated or legacy Atmos patterns to current names, Native CI, Atmos Pro drift detection, dependencies.components, nametemplate, and declared secrets.
atmos-pro
Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.
atmos-sbom
Atmos SBOM provenance: CycloneDX and SPDX generation from vendor and Terraform evidence, coverage diagnostics, NTIA validation, and native CI workflow-artifact publication.
atmos-version
Atmos Version Tracker: version tracks, lock files, managed external dependency versions, atmos version track commands, !version, file managers, update policy, pinning, and CI verification.
atmos-cache
Atmos caching: CI cache configuration and commands, GitHub Actions cache integration, Terraform registry cache mirror/list/prune/stats/trust, and cache modernization guidance.