@orchid-labs/pluxx 0.1.21 → 0.1.23
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 +7 -1
- package/bin/pluxx.js +1 -6
- package/dist/agent-translation-registry.d.ts +9 -1
- package/dist/agent-translation-registry.d.ts.map +1 -1
- package/dist/bundle-check.d.ts +21 -0
- package/dist/bundle-check.d.ts.map +1 -0
- package/dist/claude-hook-probe.d.ts.map +1 -1
- package/dist/cli/agent.d.ts.map +1 -1
- package/dist/cli/codex-apply.d.ts +39 -0
- package/dist/cli/codex-apply.d.ts.map +1 -0
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +32414 -7589
- package/dist/cli/install.d.ts.map +1 -1
- package/dist/cli/primitive-summary.d.ts.map +1 -1
- package/dist/cli/publish.d.ts.map +1 -1
- package/dist/cli/sync-from-mcp.d.ts +1 -1
- package/dist/cli/sync-from-mcp.d.ts.map +1 -1
- package/dist/cli/verify-install.d.ts.map +1 -1
- package/dist/codex-hooks-feature.d.ts +1 -1
- package/dist/codex-hooks-feature.d.ts.map +1 -1
- package/dist/codex-mcp-probe.d.ts.map +1 -1
- package/dist/command-translation-registry.d.ts +11 -3
- package/dist/command-translation-registry.d.ts.map +1 -1
- package/dist/compatibility/core-four-primitives.d.ts +5 -0
- package/dist/compatibility/core-four-primitives.d.ts.map +1 -0
- package/dist/compatibility/matrix.d.ts +1 -0
- package/dist/compatibility/matrix.d.ts.map +1 -1
- package/dist/distribution-lifecycle.d.ts +18 -0
- package/dist/distribution-lifecycle.d.ts.map +1 -1
- package/dist/generators/index.d.ts.map +1 -1
- package/dist/generators/opencode/index.d.ts.map +1 -1
- package/dist/hook-command-env.d.ts +1 -0
- package/dist/hook-command-env.d.ts.map +1 -1
- package/dist/hook-events.d.ts +1 -0
- package/dist/hook-events.d.ts.map +1 -1
- package/dist/host-detection.d.ts +38 -0
- package/dist/host-detection.d.ts.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1142 -208
- package/dist/install-reference.d.ts +34 -0
- package/dist/install-reference.d.ts.map +1 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/schema.d.ts +36 -36
- package/dist/user-config.d.ts +11 -0
- package/dist/user-config.d.ts.map +1 -1
- package/dist/validation/platform-rules.d.ts +1 -0
- package/dist/validation/platform-rules.d.ts.map +1 -1
- package/package.json +5 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { type TargetPlatform } from './schema';
|
|
2
|
+
export declare const INSTALL_REFERENCE_SCHEMES: readonly ["local", "github", "npm", "team"];
|
|
3
|
+
export type InstallReferenceScheme = typeof INSTALL_REFERENCE_SCHEMES[number];
|
|
4
|
+
interface BaseInstallReference {
|
|
5
|
+
raw: string;
|
|
6
|
+
scheme: InstallReferenceScheme;
|
|
7
|
+
locator: string;
|
|
8
|
+
version?: string;
|
|
9
|
+
target?: TargetPlatform;
|
|
10
|
+
normalized: string;
|
|
11
|
+
}
|
|
12
|
+
export interface LocalInstallReference extends BaseInstallReference {
|
|
13
|
+
scheme: 'local';
|
|
14
|
+
path: string;
|
|
15
|
+
}
|
|
16
|
+
export interface GitHubInstallReference extends BaseInstallReference {
|
|
17
|
+
scheme: 'github';
|
|
18
|
+
owner: string;
|
|
19
|
+
repo: string;
|
|
20
|
+
}
|
|
21
|
+
export interface NpmInstallReference extends BaseInstallReference {
|
|
22
|
+
scheme: 'npm';
|
|
23
|
+
packageName: string;
|
|
24
|
+
}
|
|
25
|
+
export interface TeamInstallReference extends BaseInstallReference {
|
|
26
|
+
scheme: 'team';
|
|
27
|
+
team: string;
|
|
28
|
+
plugin: string;
|
|
29
|
+
}
|
|
30
|
+
export type ParsedInstallReference = LocalInstallReference | GitHubInstallReference | NpmInstallReference | TeamInstallReference;
|
|
31
|
+
export declare function parseInstallReference(rawReference: string): ParsedInstallReference;
|
|
32
|
+
export declare function formatInstallReference(reference: ParsedInstallReference): string;
|
|
33
|
+
export {};
|
|
34
|
+
//# sourceMappingURL=install-reference.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"install-reference.d.ts","sourceRoot":"","sources":["../src/install-reference.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,KAAK,cAAc,EAAE,MAAM,UAAU,CAAA;AAEtF,eAAO,MAAM,yBAAyB,6CAA8C,CAAA;AAEpF,MAAM,MAAM,sBAAsB,GAAG,OAAO,yBAAyB,CAAC,MAAM,CAAC,CAAA;AAE7E,UAAU,oBAAoB;IAC5B,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,sBAAsB,CAAA;IAC9B,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,cAAc,CAAA;IACvB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,sBAAuB,SAAQ,oBAAoB;IAClE,MAAM,EAAE,QAAQ,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,mBAAoB,SAAQ,oBAAoB;IAC/D,MAAM,EAAE,KAAK,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;CACpB;AAED,MAAM,WAAW,oBAAqB,SAAQ,oBAAoB;IAChE,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;CACf;AAED,MAAM,MAAM,sBAAsB,GAC9B,qBAAqB,GACrB,sBAAsB,GACtB,mBAAmB,GACnB,oBAAoB,CAAA;AASxB,wBAAgB,qBAAqB,CAAC,YAAY,EAAE,MAAM,GAAG,sBAAsB,CAwClF;AAED,wBAAgB,sBAAsB,CAAC,SAAS,EAAE,sBAAsB,GAAG,MAAM,CAEhF"}
|
package/dist/readiness.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readiness.d.ts","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,WAAW,oBAAoB;IACnC,YAAY,EAAE,OAAO,CAAA;IACrB,aAAa,EAAE,MAAM,EAAE,CAAA;IACvB,iBAAiB,EAAE,OAAO,CAAA;IAC1B,YAAY,EAAE,OAAO,CAAA;IACrB,eAAe,EAAE,OAAO,CAAA;IACxB,gBAAgB,EAAE,OAAO,CAAA;IACzB,qBAAqB,EAAE,OAAO,CAAA;CAC/B;AAED,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,gBAAgB,GAAG,SAAS,GAAG,oBAAoB,CAsBrG;AAED,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,gBAAgB,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"readiness.d.ts","sourceRoot":"","sources":["../src/readiness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,WAAW,oBAAoB;IACnC,YAAY,EAAE,OAAO,CAAA;IACrB,aAAa,EAAE,MAAM,EAAE,CAAA;IACvB,iBAAiB,EAAE,OAAO,CAAA;IAC1B,YAAY,EAAE,OAAO,CAAA;IACrB,eAAe,EAAE,OAAO,CAAA;IACxB,gBAAgB,EAAE,OAAO,CAAA;IACzB,qBAAqB,EAAE,OAAO,CAAA;CAC/B;AAED,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,gBAAgB,GAAG,SAAS,GAAG,oBAAoB,CAsBrG;AAED,wBAAgB,6BAA6B,CAAC,SAAS,EAAE,gBAAgB,GAAG,MAAM,CAiSjF"}
|
package/dist/schema.d.ts
CHANGED
|
@@ -7018,7 +7018,7 @@ export declare const UserConfigEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
7018
7018
|
envVar?: string | undefined;
|
|
7019
7019
|
defaultValue?: string | number | boolean | undefined;
|
|
7020
7020
|
placeholder?: string | undefined;
|
|
7021
|
-
targets?: ("
|
|
7021
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7022
7022
|
}, {
|
|
7023
7023
|
description: string;
|
|
7024
7024
|
key: string;
|
|
@@ -7028,7 +7028,7 @@ export declare const UserConfigEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
7028
7028
|
required?: boolean | undefined;
|
|
7029
7029
|
defaultValue?: string | number | boolean | undefined;
|
|
7030
7030
|
placeholder?: string | undefined;
|
|
7031
|
-
targets?: ("
|
|
7031
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7032
7032
|
}>, {
|
|
7033
7033
|
description: string;
|
|
7034
7034
|
type: "string" | "number" | "boolean" | "secret";
|
|
@@ -7038,7 +7038,7 @@ export declare const UserConfigEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
7038
7038
|
envVar?: string | undefined;
|
|
7039
7039
|
defaultValue?: string | number | boolean | undefined;
|
|
7040
7040
|
placeholder?: string | undefined;
|
|
7041
|
-
targets?: ("
|
|
7041
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7042
7042
|
}, {
|
|
7043
7043
|
description: string;
|
|
7044
7044
|
key: string;
|
|
@@ -7048,7 +7048,7 @@ export declare const UserConfigEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
7048
7048
|
required?: boolean | undefined;
|
|
7049
7049
|
defaultValue?: string | number | boolean | undefined;
|
|
7050
7050
|
placeholder?: string | undefined;
|
|
7051
|
-
targets?: ("
|
|
7051
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7052
7052
|
}>;
|
|
7053
7053
|
export declare const UserConfigSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
7054
7054
|
key: z.ZodString;
|
|
@@ -7069,7 +7069,7 @@ export declare const UserConfigSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
|
7069
7069
|
envVar?: string | undefined;
|
|
7070
7070
|
defaultValue?: string | number | boolean | undefined;
|
|
7071
7071
|
placeholder?: string | undefined;
|
|
7072
|
-
targets?: ("
|
|
7072
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7073
7073
|
}, {
|
|
7074
7074
|
description: string;
|
|
7075
7075
|
key: string;
|
|
@@ -7079,7 +7079,7 @@ export declare const UserConfigSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
|
7079
7079
|
required?: boolean | undefined;
|
|
7080
7080
|
defaultValue?: string | number | boolean | undefined;
|
|
7081
7081
|
placeholder?: string | undefined;
|
|
7082
|
-
targets?: ("
|
|
7082
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7083
7083
|
}>, {
|
|
7084
7084
|
description: string;
|
|
7085
7085
|
type: "string" | "number" | "boolean" | "secret";
|
|
@@ -7089,7 +7089,7 @@ export declare const UserConfigSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
|
7089
7089
|
envVar?: string | undefined;
|
|
7090
7090
|
defaultValue?: string | number | boolean | undefined;
|
|
7091
7091
|
placeholder?: string | undefined;
|
|
7092
|
-
targets?: ("
|
|
7092
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7093
7093
|
}, {
|
|
7094
7094
|
description: string;
|
|
7095
7095
|
key: string;
|
|
@@ -7099,7 +7099,7 @@ export declare const UserConfigSchema: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
|
7099
7099
|
required?: boolean | undefined;
|
|
7100
7100
|
defaultValue?: string | number | boolean | undefined;
|
|
7101
7101
|
placeholder?: string | undefined;
|
|
7102
|
-
targets?: ("
|
|
7102
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7103
7103
|
}>, "many">;
|
|
7104
7104
|
export declare const PermissionRuleSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
7105
7105
|
export declare const PermissionsSchema: z.ZodEffects<z.ZodObject<{
|
|
@@ -7283,6 +7283,10 @@ export declare const PlatformOverridesSchema: z.ZodObject<{
|
|
|
7283
7283
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
7284
7284
|
}, z.ZodUnknown, "strip">>>;
|
|
7285
7285
|
}, "strip", z.ZodTypeAny, {
|
|
7286
|
+
'claude-code'?: z.objectOutputType<{
|
|
7287
|
+
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7288
|
+
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
7289
|
+
}, z.ZodUnknown, "strip"> | undefined;
|
|
7286
7290
|
cursor?: z.objectOutputType<{
|
|
7287
7291
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
7288
7292
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7308,11 +7312,11 @@ export declare const PlatformOverridesSchema: z.ZodObject<{
|
|
|
7308
7312
|
opencode?: z.objectOutputType<{
|
|
7309
7313
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
7310
7314
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
7311
|
-
|
|
7315
|
+
}, {
|
|
7316
|
+
'claude-code'?: z.objectInputType<{
|
|
7312
7317
|
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7313
7318
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
7314
7319
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
7315
|
-
}, {
|
|
7316
7320
|
cursor?: z.objectInputType<{
|
|
7317
7321
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
7318
7322
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7338,10 +7342,6 @@ export declare const PlatformOverridesSchema: z.ZodObject<{
|
|
|
7338
7342
|
opencode?: z.objectInputType<{
|
|
7339
7343
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
7340
7344
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
7341
|
-
'claude-code'?: z.objectInputType<{
|
|
7342
|
-
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7343
|
-
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
7344
|
-
}, z.ZodUnknown, "strip"> | undefined;
|
|
7345
7345
|
}>;
|
|
7346
7346
|
export declare const PluginConfigSchema: z.ZodObject<{
|
|
7347
7347
|
name: z.ZodString;
|
|
@@ -7422,7 +7422,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
7422
7422
|
envVar?: string | undefined;
|
|
7423
7423
|
defaultValue?: string | number | boolean | undefined;
|
|
7424
7424
|
placeholder?: string | undefined;
|
|
7425
|
-
targets?: ("
|
|
7425
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7426
7426
|
}, {
|
|
7427
7427
|
description: string;
|
|
7428
7428
|
key: string;
|
|
@@ -7432,7 +7432,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
7432
7432
|
required?: boolean | undefined;
|
|
7433
7433
|
defaultValue?: string | number | boolean | undefined;
|
|
7434
7434
|
placeholder?: string | undefined;
|
|
7435
|
-
targets?: ("
|
|
7435
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7436
7436
|
}>, {
|
|
7437
7437
|
description: string;
|
|
7438
7438
|
type: "string" | "number" | "boolean" | "secret";
|
|
@@ -7442,7 +7442,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
7442
7442
|
envVar?: string | undefined;
|
|
7443
7443
|
defaultValue?: string | number | boolean | undefined;
|
|
7444
7444
|
placeholder?: string | undefined;
|
|
7445
|
-
targets?: ("
|
|
7445
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7446
7446
|
}, {
|
|
7447
7447
|
description: string;
|
|
7448
7448
|
key: string;
|
|
@@ -7452,7 +7452,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
7452
7452
|
required?: boolean | undefined;
|
|
7453
7453
|
defaultValue?: string | number | boolean | undefined;
|
|
7454
7454
|
placeholder?: string | undefined;
|
|
7455
|
-
targets?: ("
|
|
7455
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
7456
7456
|
}>, "many">>;
|
|
7457
7457
|
permissions: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
7458
7458
|
allow: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
@@ -14216,6 +14216,10 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
14216
14216
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
14217
14217
|
}, z.ZodUnknown, "strip">>>;
|
|
14218
14218
|
}, "strip", z.ZodTypeAny, {
|
|
14219
|
+
'claude-code'?: z.objectOutputType<{
|
|
14220
|
+
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14221
|
+
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
14222
|
+
}, z.ZodUnknown, "strip"> | undefined;
|
|
14219
14223
|
cursor?: z.objectOutputType<{
|
|
14220
14224
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
14221
14225
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14241,11 +14245,11 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
14241
14245
|
opencode?: z.objectOutputType<{
|
|
14242
14246
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
14243
14247
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14244
|
-
|
|
14248
|
+
}, {
|
|
14249
|
+
'claude-code'?: z.objectInputType<{
|
|
14245
14250
|
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14246
14251
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
14247
14252
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14248
|
-
}, {
|
|
14249
14253
|
cursor?: z.objectInputType<{
|
|
14250
14254
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
14251
14255
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14271,10 +14275,6 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
14271
14275
|
opencode?: z.objectInputType<{
|
|
14272
14276
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
14273
14277
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
14274
|
-
'claude-code'?: z.objectInputType<{
|
|
14275
|
-
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14276
|
-
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
14277
|
-
}, z.ZodUnknown, "strip"> | undefined;
|
|
14278
14278
|
}>>;
|
|
14279
14279
|
targets: z.ZodDefault<z.ZodArray<z.ZodEnum<["claude-code", "cursor", "codex", "opencode", "github-copilot", "openhands", "warp", "gemini-cli", "roo-code", "cline", "amp"]>, "many">>;
|
|
14280
14280
|
outDir: z.ZodDefault<z.ZodString>;
|
|
@@ -14282,7 +14282,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
14282
14282
|
name: string;
|
|
14283
14283
|
description: string;
|
|
14284
14284
|
skills: string;
|
|
14285
|
-
targets: ("
|
|
14285
|
+
targets: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[];
|
|
14286
14286
|
version: string;
|
|
14287
14287
|
author: {
|
|
14288
14288
|
name: string;
|
|
@@ -14318,7 +14318,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
14318
14318
|
envVar?: string | undefined;
|
|
14319
14319
|
defaultValue?: string | number | boolean | undefined;
|
|
14320
14320
|
placeholder?: string | undefined;
|
|
14321
|
-
targets?: ("
|
|
14321
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
14322
14322
|
}[] | undefined;
|
|
14323
14323
|
permissions?: {
|
|
14324
14324
|
allow?: string[] | undefined;
|
|
@@ -16443,6 +16443,10 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
16443
16443
|
scripts?: string | undefined;
|
|
16444
16444
|
assets?: string | undefined;
|
|
16445
16445
|
platforms?: {
|
|
16446
|
+
'claude-code'?: z.objectOutputType<{
|
|
16447
|
+
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16448
|
+
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
16449
|
+
}, z.ZodUnknown, "strip"> | undefined;
|
|
16446
16450
|
cursor?: z.objectOutputType<{
|
|
16447
16451
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
16448
16452
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -16468,10 +16472,6 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
16468
16472
|
opencode?: z.objectOutputType<{
|
|
16469
16473
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
16470
16474
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
16471
|
-
'claude-code'?: z.objectOutputType<{
|
|
16472
|
-
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16473
|
-
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
16474
|
-
}, z.ZodUnknown, "strip"> | undefined;
|
|
16475
16475
|
} | undefined;
|
|
16476
16476
|
}, {
|
|
16477
16477
|
name: string;
|
|
@@ -16484,7 +16484,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
16484
16484
|
skills?: string | undefined;
|
|
16485
16485
|
passthrough?: string[] | undefined;
|
|
16486
16486
|
commands?: string | undefined;
|
|
16487
|
-
targets?: ("
|
|
16487
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
16488
16488
|
version?: string | undefined;
|
|
16489
16489
|
repository?: string | undefined;
|
|
16490
16490
|
license?: string | undefined;
|
|
@@ -16512,7 +16512,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
16512
16512
|
required?: boolean | undefined;
|
|
16513
16513
|
defaultValue?: string | number | boolean | undefined;
|
|
16514
16514
|
placeholder?: string | undefined;
|
|
16515
|
-
targets?: ("
|
|
16515
|
+
targets?: ("claude-code" | "cursor" | "codex" | "opencode" | "github-copilot" | "openhands" | "warp" | "gemini-cli" | "roo-code" | "cline" | "amp")[] | undefined;
|
|
16516
16516
|
}[] | undefined;
|
|
16517
16517
|
permissions?: {
|
|
16518
16518
|
allow?: string[] | undefined;
|
|
@@ -18571,6 +18571,10 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
18571
18571
|
scripts?: string | undefined;
|
|
18572
18572
|
assets?: string | undefined;
|
|
18573
18573
|
platforms?: {
|
|
18574
|
+
'claude-code'?: z.objectInputType<{
|
|
18575
|
+
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18576
|
+
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
18577
|
+
}, z.ZodUnknown, "strip"> | undefined;
|
|
18574
18578
|
cursor?: z.objectInputType<{
|
|
18575
18579
|
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
18576
18580
|
rules: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -18596,10 +18600,6 @@ export declare const PluginConfigSchema: z.ZodObject<{
|
|
|
18596
18600
|
opencode?: z.objectInputType<{
|
|
18597
18601
|
npmPackage: z.ZodOptional<z.ZodString>;
|
|
18598
18602
|
}, z.ZodUnknown, "strip"> | undefined;
|
|
18599
|
-
'claude-code'?: z.objectInputType<{
|
|
18600
|
-
skillDefaults: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18601
|
-
mcpAuth: z.ZodOptional<z.ZodEnum<["inline", "platform"]>>;
|
|
18602
|
-
}, z.ZodUnknown, "strip"> | undefined;
|
|
18603
18603
|
} | undefined;
|
|
18604
18604
|
outDir?: string | undefined;
|
|
18605
18605
|
}>;
|
package/dist/user-config.d.ts
CHANGED
|
@@ -4,6 +4,14 @@ export interface ResolvedUserConfigEntry {
|
|
|
4
4
|
value: string | number | boolean;
|
|
5
5
|
envVar?: string;
|
|
6
6
|
}
|
|
7
|
+
export interface InstalledUserConfigPayload {
|
|
8
|
+
values?: Record<string, string | number | boolean>;
|
|
9
|
+
env?: Record<string, string>;
|
|
10
|
+
envRefs?: Record<string, string>;
|
|
11
|
+
secretStorage?: 'env-ref' | 'materialized';
|
|
12
|
+
secretKeys?: string[];
|
|
13
|
+
secretEnv?: string[];
|
|
14
|
+
}
|
|
7
15
|
interface DerivedUserConfigEntry extends UserConfigEntry {
|
|
8
16
|
source: 'explicit' | 'mcp-auth' | 'mcp-env';
|
|
9
17
|
}
|
|
@@ -16,5 +24,8 @@ export declare function collectUserConfigEntries(config: PluginConfig, platforms
|
|
|
16
24
|
export declare function resolveUserConfigEntriesForTarget(entries: ResolvedUserConfigEntry[], target: TargetPlatform): ResolvedUserConfigEntry[];
|
|
17
25
|
export declare function buildUserConfigEnvMap(entries: ResolvedUserConfigEntry[]): Record<string, string>;
|
|
18
26
|
export declare function buildUserConfigValueMap(entries: ResolvedUserConfigEntry[]): Record<string, string | number | boolean>;
|
|
27
|
+
export declare function buildInstalledUserConfigPayload(entries: ResolvedUserConfigEntry[], options?: {
|
|
28
|
+
preserveSecretReferences?: boolean;
|
|
29
|
+
}): InstalledUserConfigPayload;
|
|
19
30
|
export {};
|
|
20
31
|
//# sourceMappingURL=user-config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-config.d.ts","sourceRoot":"","sources":["../src/user-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAa,YAAY,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAExF,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,eAAe,CAAA;IACtB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IAChC,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,UAAU,sBAAuB,SAAQ,eAAe;IACtD,MAAM,EAAE,UAAU,GAAG,UAAU,GAAG,SAAS,CAAA;CAC5C;AAcD,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAS5D;AAED,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAU7D;AAED,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAM3D;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAIjF;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAKhE;AA2CD,wBAAgB,wBAAwB,CACtC,MAAM,EAAE,YAAY,EACpB,SAAS,GAAE,cAAc,EAAmB,GAC3C,sBAAsB,EAAE,CAyD1B;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,uBAAuB,EAAE,EAClC,MAAM,EAAE,cAAc,GACrB,uBAAuB,EAAE,CAE3B;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,uBAAuB,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAOhG;AAED,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,uBAAuB,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAMrH"}
|
|
1
|
+
{"version":3,"file":"user-config.d.ts","sourceRoot":"","sources":["../src/user-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAa,YAAY,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAExF,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,eAAe,CAAA;IACtB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IAChC,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,0BAA0B;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAA;IAClD,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAC5B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAChC,aAAa,CAAC,EAAE,SAAS,GAAG,cAAc,CAAA;IAC1C,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;IACrB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACrB;AAED,UAAU,sBAAuB,SAAQ,eAAe;IACtD,MAAM,EAAE,UAAU,GAAG,UAAU,GAAG,SAAS,CAAA;CAC5C;AAcD,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAS5D;AAED,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAU7D;AAED,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAM3D;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAIjF;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAKhE;AA2CD,wBAAgB,wBAAwB,CACtC,MAAM,EAAE,YAAY,EACpB,SAAS,GAAE,cAAc,EAAmB,GAC3C,sBAAsB,EAAE,CAyD1B;AAED,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,uBAAuB,EAAE,EAClC,MAAM,EAAE,cAAc,GACrB,uBAAuB,EAAE,CAE3B;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,uBAAuB,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAOhG;AAED,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,uBAAuB,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAMrH;AAED,wBAAgB,+BAA+B,CAC7C,OAAO,EAAE,uBAAuB,EAAE,EAClC,OAAO,GAAE;IAAE,wBAAwB,CAAC,EAAE,OAAO,CAAA;CAAO,GACnD,0BAA0B,CAqC5B"}
|
|
@@ -77,6 +77,7 @@ export interface PlatformRules {
|
|
|
77
77
|
}
|
|
78
78
|
export type PrimitiveTranslationMode = 'preserve' | 'translate' | 'degrade' | 'drop';
|
|
79
79
|
export type CoreFourPlatform = Extract<TargetPlatform, 'claude-code' | 'cursor' | 'codex' | 'opencode'>;
|
|
80
|
+
export declare const CORE_FOUR_PLATFORMS: readonly ["claude-code", "cursor", "codex", "opencode"];
|
|
80
81
|
export interface PlatformPrimitiveCapability {
|
|
81
82
|
mode: PrimitiveTranslationMode;
|
|
82
83
|
nativeSurfaces: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-rules.d.ts","sourceRoot":"","sources":["../../src/validation/platform-rules.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;
|
|
1
|
+
{"version":3,"file":"platform-rules.d.ts","sourceRoot":"","sources":["../../src/validation/platform-rules.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orchid-labs/pluxx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
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",
|
|
@@ -66,14 +66,17 @@
|
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@types/node": "^22.15.23",
|
|
69
|
+
"@types/turndown": "^5.0.6",
|
|
69
70
|
"esbuild": "^0.25.4",
|
|
70
71
|
"tsx": "^4.20.3",
|
|
71
72
|
"typescript": "^5.7.0",
|
|
72
73
|
"vitest": "^3.2.4"
|
|
73
74
|
},
|
|
74
75
|
"dependencies": {
|
|
75
|
-
"@clack/prompts": "
|
|
76
|
+
"@clack/prompts": "1.2.0",
|
|
77
|
+
"cheerio": "1.0.0-rc.12",
|
|
76
78
|
"jiti": "^2.6.1",
|
|
79
|
+
"turndown": "^7.2.4",
|
|
77
80
|
"zod": "^3.24.0"
|
|
78
81
|
}
|
|
79
82
|
}
|