chore: release v0.4.0#53
Merged
Merged
Conversation
Promote the [Unreleased] section to [0.4.0] (2026-05-21), add fresh [Unreleased] anchor, update compare links, and cite #51 / #52 inline plus in the link-ref table. Highlights: - [nasde.plugin] in task.toml — ship a local Claude Code plugin into the sandbox with one declaration (ADR-009). (#51) - Skill-by-reference: [[skill]] array in variant.toml. (#51) - Fix: variants/<v>/skills/<name>/ now carries references/ and sibling files, not just SKILL.md. (#51) - Security pins: idna>=3.15, urllib3>=2.7.0. (#51) - CI: pip-audit ignores disputed pyjwt PYSEC-2025-183. (#52) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promote the
[Unreleased]section to[0.4.0](2026-05-21) perdocs/RELEASING.md.Highlights — what users get in 0.4.0
Added — plugin support and skill-by-reference (ADR-009, #51)
[nasde.plugin]intask.toml. Ship a local Claude Code plugin into the sandbox with one declaration: stages the plugin tree (at an optionalrefvia a temporary git worktree) into the Docker build context, generates/augments the Dockerfile toCOPYit toinstall_rootand run an optional build command, registers the plugin'sskills/for the agent (whole skill dir incl.references/), and auto-wires every server from<plugin>/.mcp.jsoninto the task — env-wrapped for the baked-not-installed plugin'sCLAUDE_PLUGIN_ROOTetc. Composes with[nasde.source]and with hand-writtenenvironment/Dockerfile. Retires the frozen-plugin-snapshot workaround.[[skill]]array invariant.toml. Reference a skill from a source path (optionalref) instead of copying it intovariants/<v>/skills/. The whole skill directory (includingreferences/) is staged into/app/.claude/skills/<name>/. Shares the plugin's skill-registration machinery.Fixed (#51)
variants/<v>/skills/<name>/now carriesreferences/and sibling files, not justSKILL.md. Previously onlySKILL.mdwas injected, silently breaking skills that readreferences/*.mdat runtime. Backward compatible — the copy-into-variants/path keeps working, now correctly.Security (#51)
idna>=3.15andurllib3>=2.7.0(transitive via harbor/opik/supabase) to address CVE-2026-45409 (idna) and CVE-2026-44431 / CVE-2026-44432 (urllib3).CI (#52)
pip-auditnow ignores the disputed pyjwt advisory PYSEC-2025-183 / CVE-2025-45768 (upstream rejects classification; pyjwt 2.12.1 has no fix; we cannot upgrade past it since it enters our tree only transitively viaharbor → supabase-auth / mcp).pip-audit --strictstill hard-fails on every other CVE.Backward compatibility
No
[nasde.plugin]/[[skill]]→ behavior is byte-for-byte as before. Existingvariants/<v>/skills/copies keep working and now also carryreferences/(a strict improvement). Hand-writtenharbor_config.jsonentries are preserved across runs via the_nasde_derived_keysmeta-list.Pre-flight per
docs/RELEASING.mdquality-gate.ymlandexample-validation.ymlboth passing ona484c77(last main commit).[Unreleased]not half-finished — only the two PRs intended for this release (feat(plugin): [nasde.plugin] + skill-by-reference ([[skill]]) #51 feature, ci: ignore disputed pyjwt CVE PYSEC-2025-183 in quality gate #52 CI patch) merged since v0.3.3.[0.4.0]row +[Unreleased]shifted to compare againstv0.4.0.Version-bump rationale (per RELEASING.md "Pre-1.0 policy")
### Addedentries → at minimum minor. Plugin + skill-by-reference is a meaningful new user-facing capability (newtask.tomlsection, newvariant.tomlarray), even though it's fully opt-in and existing benchmarks keep working unchanged. → minor: 0.3.3 → 0.4.0.After merge
Tag from
main(NOT this branch) and push:git checkout main && git pull git tag v0.4.0 git push origin v0.4.0publish.ymlthen runs quality-gate → build → TestPyPI → smoke → PyPI → smoke → GitHub Release.Test plan
publish.ymlviagh run watch; confirm PyPI page renders 0.4.0 anduv tool install nasde-toolkit && nasde --versionprints0.4.0(no.devN).🤖 Generated with Claude Code