ソース情報
- リポジトリ
- hpsgd/turtlestack
- ソースの最終更新活動
- 2026年4月16日 11:04
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/hpsgd/turtlestack --skill write-pipelineコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Review staged or recent changes — native Claude Code review for mechanics, layered with team conventions and the team verdict contract
Perform a security-focused audit of code changes or a specific area of the codebase.
Propose a change to a marketplace repo based on learned patterns — new rules, updated skills, evolved regex patterns. Infers which upstream marketplace the learning belongs to, confirms with the user, then creates a branch, applies changes, shows diff for review, and raises a PR on approval. Use when patterns have enough evidence to share upstream.
SOC 職業分類に基づく
SKILL.md を表示中
| name | write-pipeline |
| description | Write a CI/CD pipeline configuration — build, test, lint, deploy stages. |
| argument-hint | [service or project to create pipeline for, and platform e.g. 'GitHub Actions'] |
| user-invocable | true |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Write a CI/CD pipeline for $ARGUMENTS.
Before writing any pipeline configuration:
.github/workflows/, .gitlab-ci.yml, Jenkinsfile, azure-pipelines.ymlpackage.json scripts, Makefile, Taskfile, scripts/ directoryEvery pipeline follows this ordering principle: fail fast — cheapest checks first.
Lint/Format → Build → Unit Tests → Integration Tests → Security Scan → Deploy
If any stage fails, subsequent stages do not run. Total pipeline time budget: under 10 minutes for the fast path (lint + build + unit tests).
# Purpose: catch style and type errors in <30 seconds
- name: Lint
run: |
npm run lint
npm run typecheck
npm run format:check # --check flag, never auto-fix in CI
Rules:
# Purpose: compile/bundle and verify the artifact is producible
- name: Build
run: npm run build
Rules:
- name: Unit Tests
run: CI=true npm test -- --coverage
Rules:
CI=true or explicit --run flag)- name: Integration Tests
run: CI=true npm run test:integration
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_PASSWORD: test
Rules:
- name: Security Scan
run: |
npm audit --audit-level=high
# or: trivy fs . --severity HIGH,CRITICAL
Rules:
- name: Deploy
if: github.ref == 'refs/heads/main' && success()
run: ./scripts/deploy.sh
Rules:
Cache aggressively to reduce pipeline time:
# Node.js
- uses: actions/cache@v4
with:
path: node_modules
key: node-${{ hashFiles('package-lock.json') }}
# .NET
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: nuget-${{ hashFiles('**/*.csproj') }}
# Python
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('requirements*.txt') }}
# Docker layers
- uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Rules:
Use matrix builds for multi-version or multi-project testing:
# Multi-version testing
strategy:
matrix:
node-version: [20, 22]
fail-fast: true # Stop all jobs if one fails
# Monorepo auto-discovery
strategy:
matrix:
project: ${{ fromJson(needs.detect-changes.outputs.projects) }}
Rules:
fail-fast: true — no point running other versions if one failsFor monorepo projects:
git diffmoon ci) or similar task runners that resolve the dependency graph automaticallyIf using Moon:
# Moon handles change detection + dependency graph resolution
- name: Run affected checks
run: moon ci # builds/tests all projects affected by changes, in dependency order
Without a task runner, use path filters as a fallback:
# GitHub Actions path filter (manual, no dependency graph awareness)
on:
push:
paths:
- 'services/api/**'
- 'packages/shared/**' # shared dependency — must be listed manually
# Pin action versions to full SHA (not tags)
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# Pin tool versions
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc' # or package.json engines
Rules:
.nvmrc, global.json, .python-version)CI=true or --runPipeline design affects all four DORA metrics: deployment frequency (how often the pipeline runs), lead time for changes (pipeline duration), change failure rate (test/gate effectiveness), and time to restore service (rollback speed).
Deliver:
.github/workflows/*.yml or equivalent).dockerignore or equivalent if building containers/devops:write-dockerfile — pipelines that build containers need a Dockerfile. Ensure the pipeline's build stage matches the Dockerfile's target.