Skip to content

Commit e8406cf

Browse files
committed
chore(release): v0.6.0 — pipeline kernel, defineConfig, docs site, full-stack upgrade
Bump all 17 publishable packages 0.5.0 → 0.6.0. Update peerDependencies in adapter-codex and adapter-kimi (^0.5.0 → ^0.6.0). Add v0.6.0 CHANGELOG section.
1 parent 4f4335f commit e8406cf

18 files changed

Lines changed: 51 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## v0.6.0 — Pipeline Kernel, defineConfig, Docs Site & Full-Stack Upgrade
6+
7+
### Architecture
8+
- **`@agentplugins/pipeline`** — new middleware kernel: composable install pipeline with typed `PipelineContext`, `use()` registration, ordered execution, and abort support. Security gate migrated as a first-class pipeline plugin.
9+
- **`defineConfig` API** — plugin bus + per-target overrides; custom-adapter extensibility via the pipeline.
10+
- **`@agentplugins/contract`** zod 4 migration — schema as single source of truth; `zod-to-json-schema` at build time.
11+
- **`@agentplugins/core`**, **`@agentplugins/migrate`** zod 4 migration.
12+
- **`@agentplugins/store`** — GitHub tree-URL parsing for bare repo paths in `validateCloneUrl`.
13+
14+
### Adapters
15+
- **`adapter-opencode`** — emits `mcpServers` as `mcp.servers` in `opencode.json` (breaking opencode config format alignment).
16+
- **`adapter-claude`** / **`adapter-opencode`** — agent `model` + `fallbackModels` frontmatter support.
17+
- **`adapter-copilot`** — universal hook-handler fix (copilot hook registration regression).
18+
19+
### Tooling / Build
20+
- **tsup → tsdown** across all adapters + `@agentplugins/pipeline`.
21+
- **cleye** (replaces cac) + **logtape** structured logging (replaces chalk) in CLI.
22+
- **jiti v2** migration in CLI and `recompile-installed` script.
23+
- **pnpm catalog** + `.nvmrc 22` + `engines.node >=22` across the monorepo.
24+
- **`adapter-opencode`** / **`adapter-gemini`** tsc errors resolved.
25+
26+
### Docs / Site
27+
- VitePress docs site: logo, sponsor CTA, reference landing page, SEO/sitemap/OG tags.
28+
- Capability-matrix restructured; porting guide added.
29+
- Domain updated `agentplugins.dev → agentplugins.pages.dev`; `$id` in schema JSON updated to match.
30+
31+
### Project / CI
32+
- Community-health files: `CODE_OF_CONDUCT.md`, `CONTRIBUTING.md`, issue templates, PR template, `FUNDING.yml`, triage workflow.
33+
- CI typecheck scoped to `packages/**` (docs site and `example-profiler` lack `tsc` config).
34+
- Topological binary build in `release.yml` (`pnpm --filter './packages/**'` replaces selective filter).
35+
- `adapter-codex` / `adapter-kimi` `peerDependencies` bumped `^0.5.0 → ^0.6.0`.
36+
537
## v0.5.0 — @agentplugins/store + Setup Scripts
638

739
### New package

packages/adapter-claude/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-claude",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "AgentPlugins platform adapter for Claude Code",
55
"type": "module",
66
"main": "./dist/index.mjs",

packages/adapter-codex/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-codex",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "AgentPlugins platform adapter for OpenAI Codex CLI",
55
"main": "./dist/index.cjs",
66
"types": "./dist/index.d.mts",
@@ -27,7 +27,7 @@
2727
"vitest": "catalog:"
2828
},
2929
"peerDependencies": {
30-
"@agentplugins/core": "^0.5.0"
30+
"@agentplugins/core": "^0.6.0"
3131
},
3232
"files": [
3333
"dist",

packages/adapter-copilot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-copilot",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "GitHub Copilot CLI platform adapter for AgentPlugins — compiles AgentPlugins plugins into Copilot-compatible manifests, hooks, skills, and MCP configuration",
55
"main": "./dist/index.cjs",
66
"types": "./dist/index.d.mts",

packages/adapter-gemini/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-gemini",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "AgentPlugins platform adapter for Google Gemini CLI extensions",
55
"type": "module",
66
"main": "./dist/index.mjs",

packages/adapter-kimi/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-kimi",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "AgentPlugins platform adapter for Kimi (Moonshot AI)",
55
"main": "./dist/index.cjs",
66
"types": "./dist/index.d.mts",
@@ -33,7 +33,7 @@
3333
"vitest": "catalog:"
3434
},
3535
"peerDependencies": {
36-
"@agentplugins/core": "^0.5.0"
36+
"@agentplugins/core": "^0.6.0"
3737
},
3838
"keywords": [
3939
"agentplugins",

packages/adapter-opencode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-opencode",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "OpenCode platform adapter for AgentPlugins - generates OpenCode-compatible plugins from universal manifests",
55
"type": "module",
66
"main": "./dist/index.js",

packages/adapter-pimono/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/adapter-pimono",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Pi Mono platform adapter for AgentPlugins — generates TypeScript-native extensions for the Pi agent runtime",
55
"type": "module",
66
"main": "./dist/index.mjs",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/cli",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "CLI for building AgentPlugins plugins across multiple AI agent harnesses",
55
"type": "module",
66
"bin": {

packages/compile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentplugins/compile",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Shared codegen kernel for AgentPlugins adapters. Secure emit helpers, sanitizers, lint, validation, hook-wrapper.",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)