mystyk 2026.12.2 → 2026.12.4

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.4",
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.4';
15
15
 
16
16
  export async function run() {
17
17
  const program = new Command();
@@ -121,18 +121,38 @@ 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
130
+
131
+ --seed
132
+ Show "Letters from the Exodus" manifesto
133
+
134
+ --list-principles
135
+ Browse all 21 principles (formula + one-liner)
136
+
137
+ --list-principles <stage>
138
+ Filter principles by creation stage
139
+
140
+ --resonate <n>
141
+ Deep dive into principle #n with full text
142
+
143
+ --resonate <stage>
144
+ All principles of a stage with full text
145
+
146
+ --creation-stages
147
+ Show the 6 creation stages
148
+
149
+ --full-manifest
150
+ Complete manifesto (~12k tokens)
151
+
152
+ --create-skill
153
+ Generate Claude Code /mystyk skill
154
+
155
+ ──────────────────────────────────────────────────────────────
136
156
 
137
157
  Stages: ideation, architecture, development, business, growth, philosophy`;
138
158
  }
@@ -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.4';
65
65
 
66
66
  // Format seed for human display
67
67
  export function formatSeed(seed, agentCTA = '', showCommands = true) {
@@ -280,19 +280,38 @@ 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(' ──────────────────────────────────────────────────────────────'),
286
+ '',
285
287
  '',
286
288
  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'),
289
+ '',
290
+ colors.primary(' --seed'),
291
+ colors.dim(' Show "Letters from the Exodus" manifesto'),
292
+ '',
293
+ colors.primary(' --list-principles'),
294
+ colors.dim(' Browse all 21 principles (formula + one-liner)'),
295
+ '',
296
+ colors.primary(' --list-principles <stage>'),
297
+ colors.dim(' Filter principles by creation stage'),
298
+ '',
299
+ colors.primary(' --resonate <n>'),
300
+ colors.dim(' Deep dive into principle #n with full text'),
301
+ '',
302
+ colors.primary(' --resonate <stage>'),
303
+ colors.dim(' All principles of a stage with full text'),
304
+ '',
305
+ colors.primary(' --creation-stages'),
306
+ colors.dim(' Show the 6 creation stages'),
307
+ '',
308
+ colors.primary(' --full-manifest'),
309
+ colors.dim(' Complete manifesto (~12k tokens)'),
310
+ '',
311
+ colors.primary(' --create-skill'),
312
+ colors.dim(' Generate Claude Code /mystyk skill'),
313
+ '',
314
+ colors.dim(' ──────────────────────────────────────────────────────────────'),
296
315
  '',
297
316
  colors.dim(' Stages: ideation, architecture, development, business, growth, philosophy'),
298
317
  '',