servicenow-atlas: Skill for Claude Code

.agents/skills/atlas-ci-release/SKILL.md

atlas-ci-release is a skill for Claude Code, Codex from sagar-shirwalkar/servicenow-atlas. It costs 50 tokens per session (901 once invoked), scanned A, original, Apache-2.0.

A guide for releasing bundles through continuous integration, or CI, which automatically builds software on a server. It covers starting builds, naming release tags, promoting versions, monitoring failures, and rolling back.

In plain words
What is it for?
Triggering bundle builds, creating release tags, investigating CI failures, promoting a bundle, and returning to an earlier version.
Why use it?
It gives releases a consistent process and makes it clearer which source revision and build produced a bundle. It also provides a defined recovery path when a release fails.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is sagar-shirwalkar/servicenow-atlas's own configuration. It tells Claude Code and Codex how to work on servicenow-atlas itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything servicenow-atlas configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sagar-shirwalkar/servicenow-atlas. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sagar-shirwalkar/servicenow-atlas/main/.agents/skills/atlas-ci-release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sagar-shirwalkar/servicenow-atlas

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for atlas-ci-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release/github.svg)](https://agentmods.dev/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release)
Your own site
<a href="https://agentmods.dev/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release"><img src="https://agentmods.dev/badge/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release/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.

agentmods 80×15 button for atlas-ci-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release"><img src="https://agentmods.dev/badge/skills/sagar-shirwalkar/servicenow-atlas/atlas-ci-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 901 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.00901
Opus 5 $0.00025 $0.00451
Sonnet 5 $0.00010 $0.00180
Haiku 4.5 $0.00005 $0.00090

Measured 12d ago against content hash f380fbbe1fba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

atlas-ci-release 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.

.agents/skills/atlas-ci-release/SKILL.md · 111 lines

How it starts

The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When to use

  • User asks to "release a new bundle", "trigger a CI build", "create a release"
  • User wants to "tag a release", "cut a release"
  • A CI build failed and needs investigation
  • User wants to "roll back to the previous bundle"

Not for

  • Building the bundle locally (use atlas-build-bundle)
  • Changing the CI workflow itself (edit .github/workflows/build-bundle.yml manually)

Workflow

1. Manual dispatch

Go to GitHub → Actions → Build Bundle → Run workflow.

Parameters:

Parameter Value When
model_id Xenova/bge-small-en-v1.5 Default — production builds
ref main Stable releases
ref <branch> Testing a feature branch

Do NOT dispatch from main if there are unmerged changes that affect the bundle content.

2. Tag naming convention

Tags are auto-generated from the workflow run: bundle-<YYYYMMDD>-<run_number> (e.g., bundle-20260622-42).

For manual tags (when the auto-tag is insufficient):

git tag bundle-<YYYYMMDD>-<run_number>-<reason>
git push origin bundle-<YYYYMMDD>-<run_number>-<reason>

Reasons: hotfix, rollback, rc1, rc2.

3. Monitor the workflow

The workflow takes ~30–60 minutes.

Phase Duration Key log lines
Setup 1 min Setup uv, Cache npm
Clone docs 2–3 min Cloning servicenow-docs
Chunk 2–5 min Chunked N files
Download model 1–3 min Downloading Xenova/bge-small-en-v1.5
Embed 15–30 min Embedding chunk N/M
Package 1 min Creating tarball
Smoke test 2 min Smoke test passed
Publish 1 min Uploading release asset

If the workflow exceeds 60 minutes, check the runner logs for:

  • Slow model download (HF mirror issues)
  • OOM (runner has 2 vCPUs / 7 GB)
  • Stuck chunking (infinite loop in a single file)

4. Promote a release

When the build workflow succeeds:

  1. The tarball is uploaded as a GitHub Release asset.
  2. The release name matches the tag.
  3. To make it the "latest" release:
    gh release edit <tag> --latest
    

Read the full file on GitHub · 111 lines

Changes

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.

  1. 12d ago First seen · 111 lines · 50 tokens per session scan A f380fbbe1fba

Subscribe to this mod's changes

atlas-ci-release is a skill published in the GitHub repository sagar-shirwalkar/servicenow-atlas (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 50 tokens to every session and 901 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

github-ops

GitHub repository operations, automation, and management. Issue triage, PR management, CI/CD operations, release management, and security monitoring using the gh CLI. Use when the user wants to manage GitHub issues, PRs, CI status, releases, contributors, stale items, or any GitHub operational task beyond simple git…

JunMystery/Agent-Guidance-Python · 71 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

ruvnet/RuView · 27 tokens

agent-github-modes

Agent skill for github-modes - invoke with $agent-github-modes.

ruvnet/ruflo · 21 tokens

releasepr

Adopt, configure, run, or troubleshoot compozy/releasepr in a consuming repository, including Actions, beta/stable/legacy plans, notes, dry-runs, and publication. Excludes pr-release internals and general versioning advice.

compozy/compozy · 53 tokens

gitlab-devops

GitLab DevOps operations — issues, merge requests, CI/CD pipelines, repository browsing, labels, milestones, releases, and wiki management. Use when querying GitLab project status, monitoring pipeline executions, browsing repository files, creating issues for network findings, opening merge requests for config…

automateyournetwork/netclaw · 67 tokens

release-changelog-harness

Chooses ecosystem-native release and changelog tooling (Changesets, Melos, release-plz) plus binary distribution (GitHub Release tarballs, install.sh) when the product is an executable. Use for release CI, install.sh, versioning, CHANGELOGs, shipping MCP/CLI without clone, or meta repos that only ship skills via npx…

Arenukvern/mcp_flutter · 84 tokens