caplets 0.12.4 → 0.12.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="assets/icon.png" alt="Caplets logo" width="140" height="140" />
|
|
2
|
+
<img src="plugins/caplets/assets/icon.png" alt="Caplets logo" width="140" height="140" />
|
|
3
3
|
|
|
4
4
|
<h1>Caplets</h1>
|
|
5
5
|
|
|
@@ -81,9 +81,11 @@ your coding agent supports one.
|
|
|
81
81
|
| OpenCode | Install [`@caplets/opencode`](packages/opencode/README.md) | Native `caplets_<id>` tools and prompt guidance hooks |
|
|
82
82
|
| Pi | Install [`@caplets/pi`](packages/pi/README.md) | Native `caplets_<id>` tools with Pi prompt snippets/guidelines |
|
|
83
83
|
|
|
84
|
-
Codex and Claude Code plugins are plugin-native but MCP-backed.
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
Codex and Claude Code plugins are plugin-native but MCP-backed. The installable plugin
|
|
85
|
+
lives under `plugins/caplets/`, with agent-specific manifests in `.codex-plugin/` and
|
|
86
|
+
`.claude-plugin/`, a shared `skills/` directory, and shared `mcp.json` config. The
|
|
87
|
+
repo-level `.agents/plugins/marketplace.json` and `.claude-plugin/marketplace.json`
|
|
88
|
+
files only advertise that installable plugin root.
|
|
87
89
|
|
|
88
90
|
The Claude Code and Codex commands install from this GitHub repository through each agent's
|
|
89
91
|
plugin marketplace flow; users do not need to clone the repository manually. Plugin MCP
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
3
3
|
import { CapletsRuntime, runCli } from "@caplets/core";
|
|
4
4
|
//#region package.json
|
|
5
|
-
var version = "0.12.
|
|
5
|
+
var version = "0.12.5";
|
|
6
6
|
//#endregion
|
|
7
7
|
//#region src/index.ts
|
|
8
8
|
async function main() {
|