syntaur 0.1.1 → 0.1.4
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 +32 -2
- package/dist/dashboard/server.js +2 -2
- package/dist/dashboard/server.js.map +1 -1
- package/dist/index.js +424 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugins/syntaur/.codex-plugin/plugin.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,8 @@ npx syntaur@latest setup --yes --dashboard
|
|
|
44
44
|
|
|
45
45
|
Syntaur remembers the plugin install locations you choose in `~/.syntaur/config.md`.
|
|
46
46
|
|
|
47
|
+
For Claude Code, Syntaur will detect the machine's local plugin marketplace when one exists and recommend installing into that marketplace's `plugins/` directory.
|
|
48
|
+
|
|
47
49
|
Interactive commands will prompt for install locations:
|
|
48
50
|
|
|
49
51
|
```bash
|
|
@@ -54,7 +56,7 @@ npx syntaur@latest install-codex-plugin
|
|
|
54
56
|
You can also set paths explicitly:
|
|
55
57
|
|
|
56
58
|
```bash
|
|
57
|
-
npx syntaur@latest install-plugin --target-dir ~/.claude/plugins/syntaur
|
|
59
|
+
npx syntaur@latest install-plugin --target-dir ~/.claude/plugins/marketplaces/user-plugins/plugins/syntaur
|
|
58
60
|
npx syntaur@latest install-codex-plugin \
|
|
59
61
|
--target-dir ~/plugins/syntaur \
|
|
60
62
|
--marketplace-path ~/.agents/plugins/marketplace.json
|
|
@@ -65,7 +67,7 @@ Setup supports the same path overrides:
|
|
|
65
67
|
```bash
|
|
66
68
|
npx syntaur@latest setup \
|
|
67
69
|
--claude \
|
|
68
|
-
--claude-dir ~/.claude/plugins/syntaur \
|
|
70
|
+
--claude-dir ~/.claude/plugins/marketplaces/user-plugins/plugins/syntaur \
|
|
69
71
|
--codex \
|
|
70
72
|
--codex-dir ~/plugins/syntaur \
|
|
71
73
|
--codex-marketplace-path ~/.agents/plugins/marketplace.json
|
|
@@ -112,3 +114,31 @@ Repo-local plugin linking for development:
|
|
|
112
114
|
npx syntaur@latest install-plugin --link
|
|
113
115
|
npx syntaur@latest install-codex-plugin --link
|
|
114
116
|
```
|
|
117
|
+
|
|
118
|
+
## Release Publishing
|
|
119
|
+
|
|
120
|
+
This repo is set up for npm trusted publishing from GitHub Actions.
|
|
121
|
+
|
|
122
|
+
Release flow:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
npm version patch
|
|
126
|
+
git push origin main
|
|
127
|
+
git push origin v$(node -p "require('./package.json').version")
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
The publish workflow lives at `.github/workflows/publish.yml` and only runs on version tags like `v0.1.4`. It checks that the tag matches `package.json`, runs the repo validation, and then publishes to npm using GitHub OIDC instead of a long-lived npm token.
|
|
131
|
+
|
|
132
|
+
One-time npm setup:
|
|
133
|
+
|
|
134
|
+
- package: `syntaur`
|
|
135
|
+
- GitHub repo: `prong-horn/syntaur`
|
|
136
|
+
- workflow filename: `publish.yml`
|
|
137
|
+
|
|
138
|
+
You can configure the trusted publisher either in the npm package settings UI or with npm CLI `11.10+`:
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
npx npm@^11.10.0 trust github syntaur --repo prong-horn/syntaur --file publish.yml -y
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
After trusted publishing is working, npm recommends switching the package publishing access to `Require two-factor authentication and disallow tokens`.
|
package/dist/dashboard/server.js
CHANGED
|
@@ -1245,8 +1245,8 @@ var init_help = __esm({
|
|
|
1245
1245
|
// --- Plugin & adapter setup (indices 13-16) ---
|
|
1246
1246
|
{
|
|
1247
1247
|
command: "syntaur install-plugin",
|
|
1248
|
-
description: "Install the Syntaur Claude Code plugin, prompting for the target directory when interactive.",
|
|
1249
|
-
example: "syntaur install-plugin --target-dir ~/.claude/plugins/syntaur"
|
|
1248
|
+
description: "Install the Syntaur Claude Code plugin, detecting the local Claude marketplace when available and prompting for the target directory when interactive.",
|
|
1249
|
+
example: "syntaur install-plugin --target-dir ~/.claude/plugins/marketplaces/user-plugins/plugins/syntaur"
|
|
1250
1250
|
},
|
|
1251
1251
|
{
|
|
1252
1252
|
command: "syntaur install-codex-plugin",
|