@orchid-labs/pluxx 0.1.15 → 0.1.16
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/dist/claude-hook-probe.d.ts +70 -0
- package/dist/claude-hook-probe.d.ts.map +1 -0
- package/dist/cli/behavioral.d.ts +1 -0
- package/dist/cli/behavioral.d.ts.map +1 -1
- package/dist/cli/discover-installed-mcp.d.ts +1 -0
- package/dist/cli/discover-installed-mcp.d.ts.map +1 -1
- package/dist/cli/doctor.d.ts +4 -1
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/index.js +7225 -6161
- package/dist/cli/install.d.ts +1 -0
- package/dist/cli/install.d.ts.map +1 -1
- package/dist/cli/lint.d.ts.map +1 -1
- package/dist/cli/migrate.d.ts.map +1 -1
- package/dist/cli/verify-install.d.ts +7 -0
- package/dist/cli/verify-install.d.ts.map +1 -1
- package/dist/codex-agent-probe-shared.d.ts +26 -0
- package/dist/codex-agent-probe-shared.d.ts.map +1 -0
- package/dist/codex-agent-probe.d.ts +82 -0
- package/dist/codex-agent-probe.d.ts.map +1 -0
- package/dist/codex-exec-runner.d.ts +21 -0
- package/dist/codex-exec-runner.d.ts.map +1 -0
- package/dist/codex-hook-probe.d.ts +41 -0
- package/dist/codex-hook-probe.d.ts.map +1 -0
- package/dist/codex-hooks-feature.d.ts +10 -0
- package/dist/codex-hooks-feature.d.ts.map +1 -0
- package/dist/codex-interactive-agent-probe.d.ts +62 -0
- package/dist/codex-interactive-agent-probe.d.ts.map +1 -0
- package/dist/codex-interactive-hook-probe.d.ts +90 -0
- package/dist/codex-interactive-hook-probe.d.ts.map +1 -0
- package/dist/codex-interactive-probe-shared.d.ts +4 -0
- package/dist/codex-interactive-probe-shared.d.ts.map +1 -0
- package/dist/codex-mcp-probe.d.ts +77 -0
- package/dist/codex-mcp-probe.d.ts.map +1 -0
- package/dist/codex-permissions-companion.d.ts +19 -0
- package/dist/codex-permissions-companion.d.ts.map +1 -0
- package/dist/codex-probe-shared.d.ts +3 -0
- package/dist/codex-probe-shared.d.ts.map +1 -0
- package/dist/compiler-intent.d.ts +6 -6
- package/dist/generators/codex/index.d.ts +1 -0
- package/dist/generators/codex/index.d.ts.map +1 -1
- package/dist/hook-translation-registry.d.ts.map +1 -1
- package/dist/index.js +732 -26
- package/dist/toml-lite.d.ts +5 -0
- package/dist/toml-lite.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare function stripTomlComment(line: string): string;
|
|
2
|
+
export declare function parseTomlValue(value: string): unknown;
|
|
3
|
+
export declare function splitTomlList(value: string): string[];
|
|
4
|
+
export declare function unquoteTomlString(value: string): string;
|
|
5
|
+
//# sourceMappingURL=toml-lite.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toml-lite.d.ts","sourceRoot":"","sources":["../src/toml-lite.ts"],"names":[],"mappings":"AAAA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAkBrD;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAsBrD;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CA4BrD;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAOvD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchid-labs/pluxx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Build AI agent plugins once. Prime-time on Claude Code, Cursor, Codex, and OpenCode, with beta generators for additional hosts.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"generate:compatibility": "tsx scripts/generate-compatibility-matrix.ts",
|
|
23
23
|
"pack:check": "node scripts/run-npm-pack.mjs --dry-run",
|
|
24
24
|
"release:check": "npm run build && npm run typecheck && npm test && node scripts/verify-node-package-runtime.mjs && node scripts/run-npm-pack.mjs --dry-run",
|
|
25
|
-
"test": "
|
|
25
|
+
"test": "node scripts/run-vitest-exclusive.mjs",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
27
|
"prepublishOnly": "node scripts/ensure-github-release-publish.mjs && npm run build"
|
|
28
28
|
},
|