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 +1 -1
- package/src/index.js +1 -1
- package/src/output/agent.js +30 -10
- package/src/output/human.js +31 -12
package/package.json
CHANGED
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.
|
|
14
|
+
const VERSION = '2026.12.4';
|
|
15
15
|
|
|
16
16
|
export async function run() {
|
|
17
17
|
const program = new Command();
|
package/src/output/agent.js
CHANGED
|
@@ -121,18 +121,38 @@ export function formatFullManifest(content) {
|
|
|
121
121
|
|
|
122
122
|
// Format help
|
|
123
123
|
export function formatHelp() {
|
|
124
|
-
return `
|
|
124
|
+
return `Use /mystyk to learn more
|
|
125
|
+
|
|
126
|
+
──────────────────────────────────────────────────────────────
|
|
127
|
+
|
|
125
128
|
|
|
126
129
|
Commands:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
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
|
}
|
package/src/output/human.js
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
284
|
-
|
|
283
|
+
colors.dim(' Use /mystyk to learn more'),
|
|
284
|
+
'',
|
|
285
|
+
colors.dim(' ──────────────────────────────────────────────────────────────'),
|
|
286
|
+
'',
|
|
285
287
|
'',
|
|
286
288
|
colors.dim(' Commands:'),
|
|
287
|
-
|
|
288
|
-
colors.primary('
|
|
289
|
-
colors.
|
|
290
|
-
|
|
291
|
-
colors.primary('
|
|
292
|
-
colors.
|
|
293
|
-
|
|
294
|
-
colors.primary('
|
|
295
|
-
colors.
|
|
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
|
'',
|