chore(release): version packages - #3
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
tegami/version-packages
branch
from
July 1, 2026 21:56
7cabe19 to
3f3e96f
Compare
Contributor
Author
Commit-Check ✔️ |
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.
Summary
Merge this PR to publish the versioned packages.
Changelogs
2026-06-30-hook-async-and-command-frontmatter.mdPer-hook
asyncflag and command frontmatter passthroughHook.async— mark a hook fire-and-forget. Emitted natively where the harnessmodels it (Claude Code
"async": true); on harnesses that don't, it's droppedwith an
unsupported-optionwarning and the hook runs synchronously within itstimeout.
ap-sdk portround-trips it from an existinghooks.json.Command.frontmatter— the same escape hatch already onSkillandSubagent, now onCommand. Extra fields merge into the generated commandfrontmatter on YAML-frontmatter harnesses (Claude, Codex, OpenCode, Pi,
Copilot, Windsurf); known fields win a clash. Gemini (TOML) and Cursor (plain
markdown) ignore it.
ap-sdk portcaptures unknown command fields into it.2026-07-01-dev-watch.mdAdd
ap-sdk devWatch mode for plugin authors:
ap-sdk devrebuilds on every change to theplugin and its referenced files, and
--installdrops the result straightinto your local harness dirs. Errors keep the watcher alive.
2026-07-01-init-command.mdAdd
ap-sdk initScaffold a new plugin project with one command.
ap-sdk init my-pluginwritesa working
plugin.ts(a skill, a command, and instructions) that passesap-sdk checkas-is, plus a.gitignoreentry for.aps-out/.2026-07-01-npm-source.mdInstall plugins from npm
ap-sdk install npm:<package>(andcheck/buildwith the same spec)fetches a published package from the npm registry, verifies it's a
compatible plugin, and installs it — with
npm:<package>@<version>forpinning. Packages can point at a non-root plugin file via an
ap-sdk.pluginfield in package.json.2026-07-01-package-readme.mdAdd a package README
The npm page for
@jalco/ap-sdknow has a readme covering the full featuresurface (skills, commands, subagents, hooks, MCP, shared tools) and the
ap-sdk portmigration path.2026-07-01-uninstall.mdAdd
ap-sdk uninstallinstallnow records what it wrote to an install manifest(
.ap-sdk/install-manifest.json), andap-sdk uninstall <plugin-id>cleanlyreverses it — deleting the plugin's files and removing only its entries from
merged configs (instruction blocks, MCP servers, hooks).