organtic 1.0.1 → 1.1.0
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/index.mjs +9 -9
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -55,7 +55,7 @@ const PLUGINS = [
|
|
|
55
55
|
name: "pipeline",
|
|
56
56
|
desc: "Pipeline orchestrator",
|
|
57
57
|
experts: null,
|
|
58
|
-
agents: "Chains 15
|
|
58
|
+
agents: "Chains 15 explore experts across validate > build > launch",
|
|
59
59
|
},
|
|
60
60
|
];
|
|
61
61
|
|
|
@@ -237,18 +237,18 @@ async function main() {
|
|
|
237
237
|
` ${bold("validate")} ${dim("\u2500\u2500\u25b6")} ${bold("build")} ${dim("\u2500\u2500\u25b6")} ${bold("launch")}`,
|
|
238
238
|
` ${dim("3 experts")} ${dim("5 experts")} ${dim("7 experts")}`,
|
|
239
239
|
"",
|
|
240
|
-
], { title: "
|
|
240
|
+
], { title: "Explore", width: W }));
|
|
241
241
|
|
|
242
242
|
console.log(box(chalk, [
|
|
243
243
|
"",
|
|
244
244
|
` ${bold("craft")} ${bold("document")} ${bold("present")} ${bold("studio")}`,
|
|
245
245
|
` ${dim("4 agents")} ${dim("2 agents")} ${dim("1 agent")} ${dim("3 agents")}`,
|
|
246
246
|
"",
|
|
247
|
-
], { title: "
|
|
247
|
+
], { title: "Exploit", width: W }));
|
|
248
248
|
|
|
249
249
|
console.log(box(chalk, [
|
|
250
250
|
"",
|
|
251
|
-
` ${bold("pipeline")} ${dim("\u2014 chains all 15
|
|
251
|
+
` ${bold("pipeline")} ${dim("\u2014 chains all 15 explore experts")}`,
|
|
252
252
|
"",
|
|
253
253
|
], { title: "Orchestration", width: W }));
|
|
254
254
|
|
|
@@ -259,13 +259,13 @@ async function main() {
|
|
|
259
259
|
console.log(` ${gradientText(chalk, "Select plugins to install:")}`);
|
|
260
260
|
console.log();
|
|
261
261
|
|
|
262
|
-
console.log(` ${dim("
|
|
262
|
+
console.log(` ${dim("Explore:")}`);
|
|
263
263
|
PLUGINS.slice(0, 3).forEach((p, i) => {
|
|
264
264
|
console.log(` ${cyan(`[${i + 1}]`)} ${bold(p.name)} ${dim(`${p.experts} experts \u2014 ${p.agents}`)}`);
|
|
265
265
|
});
|
|
266
266
|
|
|
267
267
|
console.log();
|
|
268
|
-
console.log(` ${dim("
|
|
268
|
+
console.log(` ${dim("Exploit:")}`);
|
|
269
269
|
PLUGINS.slice(3, 7).forEach((p, i) => {
|
|
270
270
|
console.log(` ${cyan(`[${i + 4}]`)} ${bold(p.name)} ${dim(`${p.experts} agent${p.experts > 1 ? "s" : ""} \u2014 ${p.agents}`)}`);
|
|
271
271
|
});
|
|
@@ -276,14 +276,14 @@ async function main() {
|
|
|
276
276
|
|
|
277
277
|
console.log();
|
|
278
278
|
console.log(` ${green("[A]")} ${bold("All plugins")} ${dim("(recommended)")}`);
|
|
279
|
-
console.log(` ${green("[
|
|
279
|
+
console.log(` ${green("[E]")} ${bold("Explore only")} ${dim("(validate + build + launch + pipeline)")}`);
|
|
280
280
|
console.log();
|
|
281
281
|
|
|
282
282
|
// ── User Selection ────────────────────────────────────────────────────
|
|
283
283
|
|
|
284
284
|
const rl = createInterface({ input: process.stdin, output: process.stdout });
|
|
285
285
|
const choice = await new Promise((resolve) => {
|
|
286
|
-
rl.question(` ${cyan("\u276f")} Your choice (1-8, A,
|
|
286
|
+
rl.question(` ${cyan("\u276f")} Your choice (1-8, A, E, comma-separated): `, resolve);
|
|
287
287
|
});
|
|
288
288
|
rl.close();
|
|
289
289
|
|
|
@@ -291,7 +291,7 @@ async function main() {
|
|
|
291
291
|
const c = choice.trim().toLowerCase();
|
|
292
292
|
if (c === "a" || c === "") {
|
|
293
293
|
selected = PLUGINS;
|
|
294
|
-
} else if (c === "
|
|
294
|
+
} else if (c === "e") {
|
|
295
295
|
selected = PLUGINS.filter((p) =>
|
|
296
296
|
["validate", "build", "launch", "pipeline"].includes(p.name)
|
|
297
297
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "organtic",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "The AI-native organization. 25 experts from idea to launch. Strategy pipeline (validate > build > launch) + execution plugins (craft, document, present, studio). Claude Code plugin ecosystem.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"organtic": "./index.mjs"
|