Skip to content

Releases: Golden-Promise/codex-skill-library

v0.7.0 - Context Protocol Continuity Suite

27 Mar 02:38

Choose a tag to compare

Highlights

  • Publish the context-protocol redesign of the long-task continuity suite.
  • Add two new atomic packages: skill-subtask-context and skill-context-packet.
  • Expand skill-task-continuity bootstrap assets to the layered root / subtask / packet workflow.
  • Refocus the legacy continuity packages around narrower responsibilities: root refresh, optional checkpoints, and handoffs.
  • Add protocol-aware evals, bilingual migration guides, suite overview docs, and release hardening.

Included Packages

  • skills/skill-context-keeper
  • skills/skill-subtask-context
  • skills/skill-context-packet
  • skills/skill-phase-gate
  • skills/skill-handoff-summary
  • skills/skill-task-continuity

Validation

  • Full skills/*/tests
  • python3 -m unittest discover -s evals -p 'test_*.py' -v
  • python3 evals/run_evals.py
  • python3 skills/skill-governance/scripts/manage_skill.py --validate-only
  • Pre-release install smoke test from main

v0.6.1 - Long-Task Continuity Suite

25 Mar 10:51

Choose a tag to compare

Summary

This release publishes the Long-Task Continuity Suite for Codex as four installable packages under skills/.

The suite is designed for long-running coding work that spans multiple checkpoints, threads, or sessions. It improves continuity by reducing:

  • state drift
  • workflow drift
  • handoff friction

This release supersedes the withdrawn v0.6.0 tag.

Included Packages

  • skill-context-keeper
    Maintains structured task state for reliable resume context.

  • skill-phase-gate
    Adds compact preflight and postflight checks around meaningful changes.

  • skill-handoff-summary
    Produces concise, continuation-oriented handoff artifacts for the next session or thread.

  • skill-task-continuity
    Provides suite-level composition guidance, downstream templates, and bootstrap support.

Release Highlights

  • publishes the full long-task continuity suite as installable public packages
  • improves package discoverability and clarifies package boundaries in repository and package docs
  • adds CI and eval coverage for package contracts, routing quality, workflow correctness, and artifact expectations
  • includes bilingual publishing and release guidance for maintainers

Maintainer Note

The eval harness is intentionally strict. Trigger cues, workflow events, artifact expectations, and package-boundary wording should be treated as release-facing contracts.

中文摘要

本次版本正式发布 Codex 的长任务连续性套件,包含 skill-context-keeperskill-phase-gateskill-handoff-summaryskill-task-continuity 四个公开可安装包。

该套件用于提升长时间、多阶段、多会话编码任务的连续性,重点降低状态漂移、流程漂移和交接摩擦。同时,本次发布也补齐了文档入口、CI 与 eval 校验,以及维护者发布说明。由于此前的 v0.6.0 已撤回,本次正式版本为 v0.6.1

v0.5.1 - Install guidance and docs polish update

25 Mar 02:51

Choose a tag to compare

codex-skill-library v0.5.1

This patch release refines the published skill-governance docs so installation guidance is easier to follow, command references are more complete, and the package reads more consistently across GitHub landing pages, reference docs, and runtime metadata.

Highlights

  • Add natural-language install examples to the skill-governance package README
  • Update fixed-version install examples across repository and package docs to v0.5.1
  • Complete the command reference with concrete upgrade and retire examples
  • Further polish README, reference pages, and runtime metadata for a more consistent release-ready voice
  • Keep package validation and regression coverage green after the documentation update

中文摘要

  • skill-governance 包级 README 补充自然语言安装示例
  • 将仓库和包内文档中的固定版本安装示例统一更新为 v0.5.1
  • 为命令参考补齐 upgraderetire 的具体示例
  • 继续打磨 README、参考页和运行时元数据,让整体发布口径更加统一
  • 保持包级校验与回归测试通过,确保这次文档补丁稳定可发布

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-governance \
  --ref v0.5.1

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-governance
  • Release tag: v0.5.1

v0.5.0 - Faster project onboarding with manage and setup

24 Mar 13:37

Choose a tag to compare

codex-skill-library v0.5.0

This release makes skill-governance easier to start using by adding faster project onboarding flows and rewriting the package guidance around task-first setup.

Highlights

  • Add manage to inspect a project directory, discover local skill packages, adopt them into managed storage, and build the project structure
  • Add setup to quickly create the project-owned library, exposure root, and platform state layout
  • Rewrite quick-start guidance so new users can begin with natural-language project onboarding instead of command-first setup
  • Update the skill entry point, task guide, and prompt templates to prioritize manage and setup
  • Keep validation and regression coverage green for the new onboarding flows

中文摘要

  • 新增 manage,可直接接管一个项目目录的 skill 管理,自动发现本地 skill 并整理进受管结构
  • 新增 setup,可快速搭建项目级 skill 管理骨架
  • 重写快速上手说明,优先引导用户用自然语言完成项目接管和初始化
  • 同步更新技能入口、任务说明和提示词模板,使 managesetup 成为新用户首选入口
  • 保持校验与回归测试通过,确保新上手流程稳定可用

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-governance \
  --ref v0.5.0

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-governance
  • Release tag: v0.5.0

v0.4.1 - Published docs and install reference cleanup

24 Mar 12:19

Choose a tag to compare

codex-skill-library v0.4.1

This patch release cleans up published documentation for skill-governance, so repository references, fixed-version install examples, and generated placeholder guidance better match the public package.

Highlights

  • Replace repository placeholders with the real published location Golden-Promise/codex-skill-library
  • Update fixed-version install examples to use v0.4.1
  • Replace the TODO: replace ... style generated description placeholder with cleaner default guidance
  • Keep package validation and regression coverage green after the documentation cleanup

中文摘要

  • 将发布文档中的仓库占位符替换为真实地址 Golden-Promise/codex-skill-library
  • 将固定版本安装示例统一更新为 v0.4.1
  • 将生成骨架中的 TODO: replace ... 风格占位文案改为更适合发布的默认说明
  • 保持包级校验与回归测试通过,确保这次文档修复稳定可发布

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-governance \
  --ref v0.4.1

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-governance
  • Release tag: v0.4.1

v0.4.0 - Governance rules and version-aware audit update

24 Mar 11:58

Choose a tag to compare

codex-skill-library v0.4.0

This release strengthens skill-governance as a task-first skill asset governance tool, with stronger audit rules, lightweight version governance, and a first extracted module layer for long-term maintainability.

Highlights

  • Extract the first reusable module layer under scripts/skill_governance/ for config, constants, registry payloads, version parsing, and audit rules
  • Strengthen audit so owner, reviewer, lifecycle, and version metadata become real governance checks instead of passive fields
  • Add lightweight version governance with normalized version_info, prerelease detection, and version regression checks
  • Allow task flows such as add, enable, and upgrade to write governance metadata into the central registry
  • Expand regression coverage for audit rules, bootstrap behavior after module extraction, and version-aware governance flows

中文摘要

  • skill-governance 增加首批模块拆分,降低后续维护和继续演进的成本
  • 强化 audit,让 owner、reviewer、lifecycle、version 不再只是静态字段,而是真正的治理门禁
  • 增加轻量版本治理,支持 version_info 归一化、预发布识别和版本回退检查
  • addenableupgrade 这类任务可以直接把治理元数据写入中央注册表
  • 补充回归测试,覆盖新的审计规则、模块拆分后的自举行为和版本治理流程

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-governance \
  --ref v0.4.0

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-governance
  • Release tag: v0.4.0

v0.3.0 - Rename to skill-governance

24 Mar 10:37

Choose a tag to compare

codex-skill-library v0.3.0

This release renames skill-workflow-manager to skill-governance and reshapes the package around a clearer, task-first skill asset governance workflow.

Highlights

  • Rename the published package from skill-workflow-manager to skill-governance
  • Rewrite the package README and reference guides for faster onboarding and simpler task-based usage
  • Keep the governance workflow centered on add, enable, doctor, repair, audit, document, upgrade, and retire
  • Make skill-governance.toml the preferred repo config filename while keeping skill-workflow.toml compatible
  • Keep package validation and test coverage green for the renamed package

中文摘要

  • 将已发布包从 skill-workflow-manager 重命名为 skill-governance
  • 重写包级 README 与参考文档,使说明更贴近实际使用、更容易上手
  • 继续围绕 addenabledoctorrepairauditdocumentupgraderetire 这些任务入口组织能力
  • skill-governance.toml 设为首选仓库配置名,同时兼容旧的 skill-workflow.toml
  • 保持包级校验和测试通过,确保重命名后的发布状态稳定

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-governance \
  --ref v0.3.0

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-governance
  • Release tag: v0.3.0

v0.2.0 - Shared-library workflow usability update

24 Mar 00:55

Choose a tag to compare

codex-skill-library v0.2.0

This release improves the usability of skill-workflow-manager and clarifies its shared-library-first workflow around $CODEX_HOME/skills.

Highlights

  • Add --doctor / --check for read-only health checks
  • Add --adopt as a task-first alias for adopting downloaded local skills
  • Reframe the package around 3 main paths: create or refresh, adopt, and attach
  • Add quick-start guidance and platform notes for symlink-based project links
  • Expand regression coverage for doctor edge cases and project-link diagnostics

中文摘要

  • 新增 --doctor / --check,可在改动前做只读体检
  • 新增 --adopt,用更直觉的方式把下载包接入共享库
  • 将文档重构为 3 条主路径:创建或刷新、接管、接入项目
  • 补充 5 分钟上手和 symlink 平台提醒
  • 增加 doctor 边界场景回归测试,覆盖缺失目标、损坏链接和阻塞项

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-workflow-manager \
  --ref v0.2.0

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-workflow-manager
  • Release tag: v0.2.0

v0.1.1 - Bootstrap cleanup fix

23 Mar 15:07

Choose a tag to compare

codex-skill-library v0.1.1

This is a patch release for skill-workflow-manager, focused on improving bootstrap behavior and installation clarity.

Fixed

  • Fix bootstrap cleanup so adopting a standalone in-project skill-workflow-manager no longer leaves a duplicate source directory behind
  • Add regression coverage for bootstrap cleanup scenarios, including the case where the canonical copy already exists
  • Clarify installation wording for skill-installer, including installs to a specified target root

中文摘要

  • 修复自举清理逻辑,避免项目内残留重复的 skill-workflow-manager 来源目录
  • 增加自举清理场景的回归测试,包括 canonical 已存在时的情况
  • 补充 skill-installer 的安装说明,明确支持安装到指定目标根目录

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-workflow-manager \
  --ref v0.1.1

Notes

  • Repository: Golden-Promise/codex-skill-library
  • Package: skill-workflow-manager
  • Release tag: v0.1.1

v0.1.0 - Initial public release

23 Mar 13:53

Choose a tag to compare

codex-skill-library v0.1.0

This is the first public release of codex-skill-library, a curated repository for installable Codex skills and reusable workflow packages.

Highlights

  • Publish skill-workflow-manager as the first installable package
  • Add bilingual repository guides, package documentation, and publishing notes
  • Include validated installation, release, and test workflows

中文摘要

  • 这是 codex-skill-library 的首个公开版本
  • 首次发布可安装 skill:skill-workflow-manager
  • 已补齐仓库级、包级与发布说明的中英文文档
  • 已完成安装、发布、校验与测试流程整理

Install

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --repo Golden-Promise/codex-skill-library \
  --path skills/skill-workflow-manager

GitHub tree URL:

python3 <path-to-skill-installer>/scripts/install-skill-from-github.py \
  --url https://github.com/Golden-Promise/codex-skill-library/tree/main/skills/skill-workflow-manager