@baseline-studio/cli 2.6.2 → 2.7.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/dist/commands/init.js +24 -9
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -239,10 +239,25 @@ async function init() {
|
|
|
239
239
|
["Frameworks:", `${frameworkCount}`],
|
|
240
240
|
["Scripts:", `${scriptCount}`],
|
|
241
241
|
]);
|
|
242
|
+
// Context importance + file listing
|
|
243
|
+
console.log(` ${ui.bold("Context is what makes the system yours.")}`);
|
|
244
|
+
console.log(` Every skill uses your context to produce personalized output.`);
|
|
245
|
+
console.log(` The more detailed your context, the better every skill performs.\n`);
|
|
246
|
+
console.log(` ${ui.dim("Your context files:")}`);
|
|
247
|
+
console.log(` ${ui.accent("core/identity.md")} ${ui.dim("— who you are, what you do, differentiators")}`);
|
|
248
|
+
console.log(` ${ui.accent("core/voice.md")} ${ui.dim("— tone, language rules, brand personality")}`);
|
|
249
|
+
console.log(` ${ui.accent("extended/product.md")} ${ui.dim("— features, workflows, technical details")}`);
|
|
250
|
+
console.log(` ${ui.accent("extended/users.md")} ${ui.dim("— personas, goals, pain points")}`);
|
|
251
|
+
console.log(` ${ui.accent("extended/icp.md")} ${ui.dim("— ideal customer profile, buyer psychology")}`);
|
|
252
|
+
console.log(` ${ui.accent("extended/competitive.md")} ${ui.dim("— competitors, positioning, alternatives")}`);
|
|
253
|
+
console.log(` ${ui.accent("extended/pricing.md")} ${ui.dim("— tiers, objection handling, value props")}`);
|
|
254
|
+
console.log(` ${ui.accent("extended/technical.md")} ${ui.dim("— tech stack, integrations, constraints")}`);
|
|
255
|
+
console.log(` ${ui.accent("extended/visual-identity.md")} ${ui.dim("— colors, fonts, visual style")}`);
|
|
256
|
+
console.log(` ${ui.accent("extended/formatting.md")} ${ui.dim("— document structure, heading rules")}`);
|
|
257
|
+
console.log();
|
|
242
258
|
ui.nextSteps([
|
|
243
|
-
`
|
|
244
|
-
`
|
|
245
|
-
`Run ${ui.accent("npx baseline context")} to update context with guided prompts`,
|
|
259
|
+
`Fill in your context files — start with ${ui.accent("identity")}, ${ui.accent("voice")}, ${ui.accent("product")}, ${ui.accent("users")}`,
|
|
260
|
+
`Run ${ui.accent("npx baseline context")} for guided prompts to help you fill them in`,
|
|
246
261
|
`Open this folder in your AI tool and start using skills`,
|
|
247
262
|
]);
|
|
248
263
|
console.log();
|
|
@@ -372,9 +387,9 @@ Match the user's request to a skill using this table:
|
|
|
372
387
|
| Coded prototypes, demos, POCs | \`prototyping\` |
|
|
373
388
|
| Planning, tracking, sprints | \`project-management\` |
|
|
374
389
|
| User guides, help center, release notes | \`technical-documentation\` |
|
|
375
|
-
| Presentations,
|
|
376
|
-
|
|
|
377
|
-
|
|
|
390
|
+
| Presentations, diagrams, decision visualization | \`visual-communication\` |
|
|
391
|
+
| Positioning, messaging, launch briefs | \`product-marketing\` |
|
|
392
|
+
| Pricing strategy, launch planning, channels | \`go-to-market-planning\` |
|
|
378
393
|
| Creating new skills | \`skill-building\` |
|
|
379
394
|
|
|
380
395
|
### Step 2: Read the Manifest
|
|
@@ -543,9 +558,9 @@ In AI coding tools, this is fully automated via the \`AGENTS.md\` file. Just des
|
|
|
543
558
|
| **Prototyping** | Coded prototypes, demos, proof-of-concepts |
|
|
544
559
|
| **Project Management** | Sprint planning, tracking, retrospectives |
|
|
545
560
|
| **Technical Documentation** | User guides, API docs, release notes, help content |
|
|
546
|
-
| **
|
|
547
|
-
| **Marketing** |
|
|
548
|
-
| **
|
|
561
|
+
| **Visual Communication** | Presentations, diagrams, decision visualization, data storytelling |
|
|
562
|
+
| **Product Marketing** | Positioning, messaging frameworks, launch briefs, competitive messaging |
|
|
563
|
+
| **Go-to-Market Planning** | Pricing strategy, launch planning, channel strategy, distribution |
|
|
549
564
|
| **Skill Building** | Create new custom skills for your team |
|
|
550
565
|
|
|
551
566
|
See [\`skills/_README.md\`](skills/_README.md) for detailed documentation on each skill.
|