gas-ops

gas-ops is a skill for Claude Code, Codex from Bilal140202/the-lord-of-the-skills. It costs 21 tokens per session (620 once invoked), scanned A, original, MIT.

A development and deployment workflow for Google Apps Script, Google's platform for running JavaScript-based automations and extensions.

In plain words
What is it for?
Use it to pull code from Apps Script, push local changes, automate deployments after Git pushes, and perform an emergency manual upload when CI/CD fails.
Why use it?
It keeps Apps Script code in Git and uses clasp, a command-line tool, plus GitHub Actions to synchronize and deploy changes consistently.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to pull code from Apps Script, push local changes, automate deployments after Git pushes, and perform an emergency manual upload when CI/CD fails.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config
Install

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.

Any agent
npx skills add Bilal140202/the-lord-of-the-skills --skill larry-kang__antigravity-agent-config
Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills

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 gas-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config/github.svg)](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config)
Your own site
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config/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 gas-ops

Your own site · 80×15
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/larry-kang__antigravity-agent-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 620 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.00021 $0.00620
Opus 5 $0.00010 $0.00310
Sonnet 5 $0.00004 $0.00124
Haiku 4.5 $0.00002 $0.00062

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

Security

Grade A, and why

gas-ops 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 8d 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.

skills/gondor/claude-code/Larry-kang__antigravity-agent-config/SKILL.md · 50 lines

What it actually says

GAS Ops Skill

此技能規範 Google Apps Script (GAS) 開發的標準流程,結合 clasp 工具與 GitHub Actions 實現自動化部屬與版本控制。

環境依賴 (Dependencies)

  • Node.js & npm (系統環境)
  • @google/clasp (全域安裝: npm install -g @google/clasp)
  • GitHub Actions (用於自動化部屬)

標準開發流程 (Workflow)

1. 本地開發與同步

在本地進行開發後,通過 Git 提交代碼。若需從 GAS 網頁工作區同步回本地:

clasp pull

2. 自動化部屬 (GitHub Actions)

專案應配置 .github/workflows/deploy.yml,在推送到特定分支(如 mastermain)時自動執行部屬。

  • 機制: GitHub Action 會安裝 clasp 並利用 CLASPRC_JSON_BASE64 秘密金鑰進行授權。
  • 指令: clasp push --force

3. 手動急修 (Manual Emergency Push)

僅在 CI/CD 失效且需緊急修復時使用:

clasp push

CI/CD 配置規範

認證金鑰處理

  1. 執行 clasp login 獲取本地 ~/.clasprc.json
  2. 將該檔案內容轉換為 Base64 字串:
    [Convert]::ToBase64String([IO.File]::ReadAllBytes("$HOME\.clasprc.json"))
    
  3. 將結果存入 GitHub Repository Secrets,名稱為 CLASPRC_JSON_BASE64

最佳實踐 (Best Practices)

  1. GitHub 為單一真相來源: 始終信任 Git 上的代碼。避免在 GAS 網頁工作區直接修改代碼,除非是為了快速測試並隨即 clasp pull 回本地。
  2. 自動化優先: 儘量透過 git push 觸發 Action 進行部屬,確保部署紀錄與 Git Commit 關聯。
  3. 強制更新: 線上環境部屬建議使用 clasp push --force 以避免文件版本衝突。
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. 8d ago First seen · 50 lines · 21 tokens per session scan A 598223ebeef3

Subscribe to this mod's changes

gas-ops is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 21 tokens to every session and 620 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

integrating-sast-into-github-actions-pipeline

This skill covers integrating Static Application Security Testing (SAST) tools—CodeQL and Semgrep—into GitHub Actions CI/CD pipelines. It addresses configuring automated code scanning on pull requests and pushes, tuning rules to reduce false positives, uploading SARIF results to GitHub Advanced Security, and…

adriannoes/awesome-agentic-ai · 84 tokens

integrating-dast-with-owasp-zap-in-pipeline

This skill covers integrating OWASP ZAP (Zed Attack Proxy) for Dynamic Application Security Testing in CI/CD pipelines. It addresses configuring baseline, full, and API scans against running applications, interpreting ZAP findings, tuning scan policies, and establishing DAST quality gates in GitHub Actions and GitLab…

adriannoes/awesome-agentic-ai · 76 tokens

performing-sca-dependency-scanning-with-snyk

This skill covers implementing Software Composition Analysis (SCA) using Snyk to detect vulnerable open-source dependencies in CI/CD pipelines. It addresses scanning package manifests and lockfiles, automated fix pull request generation, license compliance checking, continuous monitoring of deployed applications, and…

adriannoes/awesome-agentic-ai · 77 tokens

securing-github-actions-workflows

This skill covers hardening GitHub Actions workflows against supply chain attacks, credential theft, and privilege escalation. It addresses pinning actions to SHA digests, minimizing GITHUBTOKEN permissions, protecting secrets from exfiltration, preventing script injection in workflow expressions, and implementing…

adriannoes/awesome-agentic-ai · 68 tokens

implementing-code-signing-for-artifacts

This skill covers implementing code signing for build artifacts to ensure integrity and authenticity throughout the software supply chain. It addresses signing binaries, packages, and containers using GPG, Sigstore, and platform-specific signing tools, establishing trust chains, and verifying signatures in deployment…

adriannoes/awesome-agentic-ai · 62 tokens

supply-chain-attack-recon

External recon for software supply-chain attack surface — package-namespace squatting candidates, dependency-confusion vulnerabilities, GitHub Actions injection openings, container image registry exposure, SBOM mining, internal-package-name leakage, and CI/CD configuration exposure. Reconnaissance and identification…

adriannoes/awesome-agentic-ai · 141 tokens