mystyk 2026.12.2 → 2026.12.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mystyk",
3
- "version": "2026.12.2",
3
+ "version": "2026.12.3",
4
4
  "description": "A Resonance Inducer for Human and AI Agents",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -11,7 +11,7 @@ import fullManifestCommand from './commands/full-manifest.js';
11
11
  import helpCommand from './commands/help.js';
12
12
  import skillCommand from './skills/claude-code.js';
13
13
 
14
- const VERSION = '2026.12.2';
14
+ const VERSION = '2026.12.3';
15
15
 
16
16
  export async function run() {
17
17
  const program = new Command();
@@ -121,20 +121,19 @@ export function formatFullManifest(content) {
121
121
 
122
122
  // Format help
123
123
  export function formatHelp() {
124
- return `MṾSTṾK Help
124
+ return `Use /mystyk to learn more
125
+
126
+ ──────────────────────────────────────────────────────────────
127
+
125
128
 
126
129
  Commands:
127
- npx mystyk Seed + how-to
128
- npx mystyk --seed Manifesto seed
129
- npx mystyk --list-principles All principles (micro)
130
- npx mystyk --list-principles <s> By stage (micro)
131
- npx mystyk --resonate <n> Principle by number (full)
132
- npx mystyk --resonate <stage> By stage (full)
133
- npx mystyk --creation-stages List 6 stages
134
- npx mystyk --full-manifest Complete manifesto (~12k tokens)
135
- npx mystyk --create-skill Generate skill
136
-
137
- Stages: ideation, architecture, development, business, growth, philosophy`;
130
+ --seed Manifesto seed
131
+ --list-principles Browse all (micro)
132
+ --list-principles <s> Filter by stage
133
+ --resonate <n|stage> Deep dive (full)
134
+ --creation-stages The 6 stages
135
+ --full-manifest Complete manifesto (~12k tokens)
136
+ --create-skill Claude Code skill`;
138
137
  }
139
138
 
140
139
  export default {
@@ -61,7 +61,7 @@ function wrapText(text, width = 64, indent = ' ') {
61
61
  }
62
62
 
63
63
  // Version from package.json
64
- const VERSION = '2026.12.2';
64
+ const VERSION = '2026.12.3';
65
65
 
66
66
  // Format seed for human display
67
67
  export function formatSeed(seed, agentCTA = '', showCommands = true) {
@@ -280,21 +280,19 @@ export function formatFirstContact(seed) {
280
280
  export function formatHelp() {
281
281
  const lines = [
282
282
  '',
283
- renderLogo(),
284
- colors.dim(` v${VERSION}`) + colors.dim(' · ') + colors.secondary('mṿstṿk.io'),
283
+ colors.dim(' Use /mystyk to learn more'),
284
+ '',
285
+ colors.dim(' ──────────────────────────────────────────────────────────────'),
285
286
  '',
286
- colors.dim(' Commands:'),
287
- colors.primary(' npx mystyk') + colors.dim(' Seed + how-to'),
288
- colors.primary(' npx mystyk --seed') + colors.dim(' Manifesto seed'),
289
- colors.primary(' npx mystyk --list-principles') + colors.dim(' All principles (micro)'),
290
- colors.primary(' npx mystyk --list-principles') + colors.dim(' <s> By stage (micro)'),
291
- colors.primary(' npx mystyk --resonate') + colors.dim(' <n> Principle by number (full)'),
292
- colors.primary(' npx mystyk --resonate') + colors.dim(' <stage> By stage (full)'),
293
- colors.primary(' npx mystyk --creation-stages') + colors.dim(' List 6 stages'),
294
- colors.primary(' npx mystyk --full-manifest') + colors.dim(' Complete manifesto (~12k tokens)'),
295
- colors.primary(' npx mystyk --create-skill') + colors.dim(' Generate skill'),
296
287
  '',
297
- colors.dim(' Stages: ideation, architecture, development, business, growth, philosophy'),
288
+ colors.dim(' Commands:'),
289
+ colors.primary(' --seed') + colors.dim(' Manifesto seed'),
290
+ colors.primary(' --list-principles') + colors.dim(' Browse all (micro)'),
291
+ colors.primary(' --list-principles <s>') + colors.dim(' Filter by stage'),
292
+ colors.primary(' --resonate <n|stage>') + colors.dim(' Deep dive (full)'),
293
+ colors.primary(' --creation-stages') + colors.dim(' The 6 stages'),
294
+ colors.primary(' --full-manifest') + colors.dim(' Complete manifesto (~12k tokens)'),
295
+ colors.primary(' --create-skill') + colors.dim(' Claude Code skill'),
298
296
  '',
299
297
  ];
300
298