release — for Claude Code release, community, for Claude Code, ide skills, agent-infrastructure, ai-agents, developer-tools, effect-ts, local-first, sqlite

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need use this skill when shipping a new tx version. Локализованное описание: # Release Use this skill when shipping a new tx version. It covers agent-infrastructure, ai-agents, cli workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Use this skill when shipping a new tx version.
Run the local preflight:
node scripts/release-preflight.mjs <version
Run the release gates:
bun run sync-readme

# Ключевые темы

jamesaphoenix jamesaphoenix
[3]
[1]
Обновлено: 4/28/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Подходящий сценарий: Ideal for AI agents that need use this skill when shipping a new tx version. Локализованное описание: # Release Use this skill when shipping a new tx version. It covers agent-infrastructure, ai-agents, cli workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: release helps agents use this skill when shipping a new tx version. Release Use this skill when shipping a new tx version. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need use this skill when shipping a new tx version.

Реализуемые кейсы использования for release

Сценарий использования: Applying Use this skill when shipping a new tx version
Сценарий использования: Applying Run the local preflight:
Сценарий использования: Applying node scripts/release-preflight.mjs <version

! Безопасность и ограничения

  • Ограничение: Do not stop at tag creation. The release is not done until publish.yml succeeds.
  • Ограничение: Do not stop at tag creation
  • Ограничение: Requires repository-specific context from the skill documentation

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое release?

Подходящий сценарий: Ideal for AI agents that need use this skill when shipping a new tx version. Локализованное описание: # Release Use this skill when shipping a new tx version. It covers agent-infrastructure, ai-agents, cli workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Как установить release?

Выполните команду: npx killer-skills add jamesaphoenix/tx/release. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать release?

Ключевые сценарии использования: Сценарий использования: Applying Use this skill when shipping a new tx version, Сценарий использования: Applying Run the local preflight:, Сценарий использования: Applying node scripts/release-preflight.mjs <version.

Какие IDE совместимы с release?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у release?

Ограничение: Do not stop at tag creation. The release is not done until publish.yml succeeds.. Ограничение: Do not stop at tag creation. Ограничение: Requires repository-specific context from the skill documentation.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add jamesaphoenix/tx/release. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать release в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

release

# Release Use this skill when shipping a new tx version. It covers agent-infrastructure, ai-agents, cli workflows. This AI agent skill supports Claude Code

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Release

Use this skill when shipping a new tx version.

Default Flow

  1. Run the local preflight:
bash
1node scripts/release-preflight.mjs <version>
  1. Run the release gates:
bash
1bun run sync-readme 2bun run test:packages 3bunx eslint apps/ packages/ --max-warnings 0 4bun run typecheck
  1. Bump all workspace versions in lockstep:
  • package.json
  • packages/types/package.json
  • packages/core/package.json
  • packages/test-utils/package.json
  • packages/tx/package.json
  • apps/cli/package.json
  • apps/agent-sdk/package.json
  • apps/api-server/package.json
  • apps/mcp-server/package.json
  • apps/dashboard/package.json
  • apps/docs/package.json
  1. Commit, push, tag, and create the GitHub release.
  2. Watch publish.yml to completion.
  3. Verify npm registry versions for every published package.

In This Repo

  • publish workflow: .github/workflows/publish.yml
  • README sync: scripts/sync-readme.sh
  • preflight guardrail: scripts/release-preflight.mjs

Published packages:

  • @jamesaphoenix/tx-types
  • @jamesaphoenix/tx-core
  • @jamesaphoenix/tx-test-utils
  • @jamesaphoenix/tx
  • @jamesaphoenix/tx-agent-sdk
  • @jamesaphoenix/tx-api-server
  • @jamesaphoenix/tx-mcp-server
  • @jamesaphoenix/tx-cli

Rules

  • Always use a fresh version. If a publish failed, ship a new patch version.
  • Do not stop at tag creation. The release is not done until publish.yml succeeds.
  • Treat the workspace as lockstep versioned, including private apps.
  • Confirm npm moved, not just GitHub Actions.

Commands

bash
1node scripts/release-preflight.mjs <version> 2npm view @jamesaphoenix/tx version 3git commit -m "chore(release): <version>" 4git push origin main 5git tag v<version> 6git push origin v<version> 7gh release create v<version> --title "v<version>" --generate-notes 8gh run list --workflow publish.yml --limit 5 9gh run watch <run-id> --exit-status

Recovery

If publish fails:

  1. Inspect the failing step with gh run view.
  2. Fix the real issue locally.
  3. Re-run the release gates.
  4. Cut a fresh patch version.
  5. Optionally delete the stale failed GitHub release and tag if they should not stay visible.

Связанные навыки

Looking for an alternative to release or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик