Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "usable",
"source": "./",
"description": "Search your team's knowledge before you build. Retrieves complete sources, separates evidence from assumptions, and verifies before claiming success.",
"version": "0.1.0",
"version": "0.2.0",
"author": {
"name": "Flowcore"
}
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "usable",
"description": "Knowledge-first workflow backed by Usable. Search team knowledge before implementing, retrieve complete sources, separate evidence from assumptions, and verify before claiming success.",
"version": "0.1.0",
"version": "0.2.0",
"author": {
"name": "Flowcore",
"email": "support@usable.dev",
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## 0.2.0 — 2026-08-24

### Added
- Claude Code support alongside the Agent Plugins standard: `.claude-plugin/marketplace.json`,
`.claude-plugin/plugin.json`, and `.mcp.json`. Only `skills/` is shared between the two
Expand All @@ -25,7 +27,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
terms URLs, brand colour `#347cbf`, icon and logo paths, and a default prompt.
- Validation of client-extension file references: paths must be plugin-relative, must stay
inside the plugin root, and must exist.
- Twelve further self-tests covering all of the above; the suite is now 27 cases.
- Fourteen further self-tests covering all of the above; the suite is now 29 cases.

### Changed
- `assets/` is now included in the release archive allowlist.
Expand Down Expand Up @@ -113,4 +115,6 @@ as fully supported; Codex loads the package and both skills.
materialises the repository, so `scripts/` and `tests/` are present in the installed copy;
the client does not execute them.

[Unreleased]: https://github.com/flowcore-io/usable-agent-plugin/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/flowcore-io/usable-agent-plugin/releases/tag/v0.2.0
[0.1.0]: https://github.com/flowcore-io/usable-agent-plugin/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ a knowledge-first workflow backed by [Usable](https://usable.dev): search what t
already decided before implementing, retrieve complete sources, separate evidence from
assumptions, and verify before claiming success.

> **Status: pre-release (`0.1.0`), not yet released.**
> **Status: pre-release (`0.2.0`).**
> Codex is partially verified — the package loads and both skills reach the model. No client
> has completed all five acceptance steps, so none is listed as fully supported. See
> [`docs/supported-clients.md`](docs/supported-clients.md).
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For clients that accept a plain package directory. Pin a version; do not track `
anything you rely on.

```bash
VERSION=0.1.0
VERSION=0.2.0

curl -fsSLO "https://github.com/flowcore-io/usable-agent-plugin/releases/download/v${VERSION}/usable-agent-plugin-${VERSION}.tar.gz"
curl -fsSLO "https://github.com/flowcore-io/usable-agent-plugin/releases/download/v${VERSION}/usable-agent-plugin-${VERSION}.tar.gz.sha256"
Expand All @@ -71,7 +71,7 @@ Useful for evaluation and development. Note that a clone contains repository-onl
```bash
git clone https://github.com/flowcore-io/usable-agent-plugin.git
cd usable-agent-plugin
git checkout v0.1.0
git checkout v0.2.0
node scripts/validate-package.mjs
```

Expand Down
2 changes: 1 addition & 1 deletion examples/codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ codex plugin add usable@usable
Pin a released version once tags exist:

```bash
codex plugin marketplace add flowcore-io/usable-agent-plugin --ref v0.1.0
codex plugin marketplace add flowcore-io/usable-agent-plugin --ref v0.2.0
```

## Install from a local clone
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "usable",
"version": "0.1.0",
"version": "0.2.0",
"description": "Knowledge-first workflow for agents backed by Usable. Search team knowledge before implementing, retrieve complete sources, separate evidence from assumptions, and verify before claiming success.",
"author": {
"name": "Flowcore",
Expand Down