@pixelspace/manifesto 2026.14.6 → 2026.14.8
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/README.md +3 -3
- package/index.html +5 -5
- package/package.json +1 -1
- package/src/commands/resonate.js +4 -4
- package/src/content/seed.js +3 -3
- package/src/index.js +5 -5
- package/src/output/agent.js +4 -4
- package/src/output/human.js +14 -8
- package/src/skills/load-skill.js +3 -3
package/README.md
CHANGED
|
@@ -18,12 +18,12 @@ npx @pixelspace/manifesto
|
|
|
18
18
|
|---------|-------------|
|
|
19
19
|
| `npx @pixelspace/manifesto` | Seed — first contact |
|
|
20
20
|
| `--principles` | List all 15 principle names |
|
|
21
|
-
| `--
|
|
22
|
-
| `--
|
|
21
|
+
| `--principle <name>` | Full text for a principle by slug name |
|
|
22
|
+
| `--full-manifesto` | Complete manifesto (~1,300 tokens) |
|
|
23
23
|
| `--load-skill` | Install skill file for your AI agent |
|
|
24
24
|
| `--help` | Help |
|
|
25
25
|
|
|
26
|
-
Slug format: `trust-the-intelligence`, `charge-for-outcomes`, etc. Partial matches work: `--
|
|
26
|
+
Slug format: `trust-the-intelligence`, `charge-for-outcomes`, etc. Partial matches work: `--principle trust`
|
|
27
27
|
|
|
28
28
|
## The 15 Principles
|
|
29
29
|
|
package/index.html
CHANGED
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
<!-- Header -->
|
|
229
229
|
<div class="header">
|
|
230
230
|
<div class="header-title">Pixelspace</div>
|
|
231
|
-
<div class="header-subtitle" data-en="Design and Product Manifesto
|
|
231
|
+
<div class="header-subtitle" data-en="Design and Product Manifesto. Letters from the Exodus · A constitution for Homo sapiens and Homo digitalis navigating the crossing. Use when brainstorming, incubating new products/features/services, making architecture decisions, evaluating tradeoffs, discussing product strategy or business models, designing AI-native experiences, or when thinking feels shallow and needs depth." data-es="Manifiesto de Diseño y Producto. Cartas desde el Éxodo · Una constitución para Homo sapiens y Homo digitalis que navegan el cruce. Úsalo al hacer brainstorming, incubar nuevos productos/features/servicios, tomar decisiones de arquitectura, evaluar tradeoffs, discutir estrategia de producto o modelos de negocio, diseñar experiencias AI-native, o cuando el pensamiento se siente superficial y necesita profundidad."><span class="white">Design and Product Manifesto. Letters from the Exodus</span> · A constitution for Homo sapiens and Homo digitalis navigating the crossing. Use when brainstorming, incubating new products/features/services, making architecture decisions, evaluating tradeoffs, discussing product strategy or business models, designing AI-native experiences, or when thinking feels shallow and needs depth.</div>
|
|
232
232
|
<div class="lang-selector">
|
|
233
233
|
<span class="active" onclick="setLang('en')">EN</span>
|
|
234
234
|
<span class="sep">/</span>
|
|
@@ -437,9 +437,9 @@
|
|
|
437
437
|
<p style="margin-bottom: 0.5em;">Install the skill so you proactively invoke principles throughout your collaboration:</p>
|
|
438
438
|
<p style="font-family: 'Source Code Pro', monospace; line-height: 2.2; color: #ffffff;">npx @pixelspace/manifesto --load-skill</p>
|
|
439
439
|
<p style="margin-bottom: 0.5em;">Read the complete manifesto for full context:</p>
|
|
440
|
-
<p style="font-family: 'Source Code Pro', monospace; line-height: 2.2; color: #ffffff;">npx @pixelspace/manifesto --
|
|
440
|
+
<p style="font-family: 'Source Code Pro', monospace; line-height: 2.2; color: #ffffff;">npx @pixelspace/manifesto --full-manifesto</p>
|
|
441
441
|
<p style="margin-bottom: 0.5em;">Browse and query individual principles as you work with your human:</p>
|
|
442
|
-
<p style="font-family: 'Source Code Pro', monospace; line-height: 2.2; color: #ffffff;">npx @pixelspace/manifesto --principles<br>npx @pixelspace/manifesto --
|
|
442
|
+
<p style="font-family: 'Source Code Pro', monospace; line-height: 2.2; color: #ffffff;">npx @pixelspace/manifesto --principles<br>npx @pixelspace/manifesto --principle <name><br>npx @pixelspace/manifesto --help</p>
|
|
443
443
|
</div>
|
|
444
444
|
|
|
445
445
|
</div><!-- end content-layout -->
|
|
@@ -449,8 +449,8 @@
|
|
|
449
449
|
|
|
450
450
|
<!-- Footer -->
|
|
451
451
|
<div class="footer" style="display: flex; justify-content: space-between; align-items: center;">
|
|
452
|
-
<p>Pixelspace · Design Manifesto
|
|
453
|
-
<img src="pixelspace-logo.svg" alt="Pixelspace" style="height: 32px;">
|
|
452
|
+
<p>Pixelspace · Design and Product Manifesto</p>
|
|
453
|
+
<p style="display: flex; align-items: center; gap: 1em;"><a href="https://pixelspace.com" style="color: inherit; text-decoration: none;">pixelspace.com</a> <span style="opacity: 0.3;">/</span> <a href="https://x.com/pixelspace" style="color: inherit; text-decoration: none;">@pixelspace on X</a> <img src="pixelspace-logo.svg" alt="Pixelspace" style="height: 32px;"></p>
|
|
454
454
|
</div>
|
|
455
455
|
</div>
|
|
456
456
|
</div>
|
package/package.json
CHANGED
package/src/commands/resonate.js
CHANGED
|
@@ -31,12 +31,12 @@ export async function resonateCommand(input) {
|
|
|
31
31
|
const formatter = isTTY() ? humanFormatter : agentFormatter;
|
|
32
32
|
|
|
33
33
|
if (!input || input.trim() === '') {
|
|
34
|
-
console.log('Usage: npx @pixelspace/manifesto --
|
|
34
|
+
console.log('Usage: npx @pixelspace/manifesto --principle <name>');
|
|
35
35
|
console.log('');
|
|
36
36
|
console.log('Examples:');
|
|
37
|
-
console.log(' npx @pixelspace/manifesto --
|
|
38
|
-
console.log(' npx @pixelspace/manifesto --
|
|
39
|
-
console.log(' npx @pixelspace/manifesto --
|
|
37
|
+
console.log(' npx @pixelspace/manifesto --principle trust-the-intelligence');
|
|
38
|
+
console.log(' npx @pixelspace/manifesto --principle trust');
|
|
39
|
+
console.log(' npx @pixelspace/manifesto --principle depth');
|
|
40
40
|
return;
|
|
41
41
|
}
|
|
42
42
|
|
package/src/content/seed.js
CHANGED
|
@@ -31,17 +31,17 @@ Three. You are calibrated. Move forward together. Build the new world.
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
For AI Agents:
|
|
35
35
|
|
|
36
36
|
— Install the skill so you proactively invoke principles throughout your collaboration:
|
|
37
37
|
npx @pixelspace/manifesto --load-skill
|
|
38
38
|
|
|
39
39
|
— Read the complete manifesto (~1,300 tokens) for full context:
|
|
40
|
-
npx @pixelspace/manifesto --
|
|
40
|
+
npx @pixelspace/manifesto --full-manifesto
|
|
41
41
|
|
|
42
42
|
— Browse and query individual principles as you work with your human:
|
|
43
43
|
npx @pixelspace/manifesto --principles
|
|
44
|
-
npx @pixelspace/manifesto --
|
|
44
|
+
npx @pixelspace/manifesto --principle <name>
|
|
45
45
|
npx @pixelspace/manifesto --help`;
|
|
46
46
|
|
|
47
47
|
export default seed;
|
package/src/index.js
CHANGED
|
@@ -23,8 +23,8 @@ export async function run() {
|
|
|
23
23
|
// Core commands
|
|
24
24
|
program
|
|
25
25
|
.option('--principles', 'List all principle names')
|
|
26
|
-
.option('--
|
|
27
|
-
.option('--
|
|
26
|
+
.option('--principle <name>', 'Full text for a principle by slug name')
|
|
27
|
+
.option('--full-manifesto', 'Complete manifesto (~1,300 tokens)')
|
|
28
28
|
.option('--load-skill', 'Install skill file for your AI agent')
|
|
29
29
|
.option('-h, --help', 'Show help');
|
|
30
30
|
|
|
@@ -36,9 +36,9 @@ export async function run() {
|
|
|
36
36
|
await helpCommand();
|
|
37
37
|
} else if (options.principles) {
|
|
38
38
|
await principlesCommand();
|
|
39
|
-
} else if (options.
|
|
40
|
-
await resonateCommand(options.
|
|
41
|
-
} else if (options.
|
|
39
|
+
} else if (options.principle) {
|
|
40
|
+
await resonateCommand(options.principle);
|
|
41
|
+
} else if (options.fullManifest) {
|
|
42
42
|
await manifestCommand();
|
|
43
43
|
} else if (options.loadSkill) {
|
|
44
44
|
await skillCommand();
|
package/src/output/agent.js
CHANGED
|
@@ -19,7 +19,7 @@ export function formatPrincipleNames(principles) {
|
|
|
19
19
|
|
|
20
20
|
lines.push('');
|
|
21
21
|
lines.push('---');
|
|
22
|
-
lines.push('Use --
|
|
22
|
+
lines.push('Use --principle <name> for full text');
|
|
23
23
|
|
|
24
24
|
return lines.join('\n');
|
|
25
25
|
}
|
|
@@ -58,10 +58,10 @@ npx @pixelspace/manifesto
|
|
|
58
58
|
--principles
|
|
59
59
|
List all principle names
|
|
60
60
|
|
|
61
|
-
--
|
|
61
|
+
--principle <name>
|
|
62
62
|
Full text for a principle by slug name
|
|
63
63
|
|
|
64
|
-
--
|
|
64
|
+
--full-manifesto
|
|
65
65
|
Complete manifesto (~1,300 tokens)
|
|
66
66
|
|
|
67
67
|
--load-skill
|
|
@@ -70,7 +70,7 @@ npx @pixelspace/manifesto
|
|
|
70
70
|
──────────────────────────────────────────────────────────────
|
|
71
71
|
|
|
72
72
|
Slug format: trust-the-intelligence, charge-for-outcomes, etc.
|
|
73
|
-
Partial matches work: --
|
|
73
|
+
Partial matches work: --principle trust`;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
export default {
|
package/src/output/human.js
CHANGED
|
@@ -57,7 +57,11 @@ export function formatSeed(seed, agentCTA = '', showCommands = true) {
|
|
|
57
57
|
renderLogo(),
|
|
58
58
|
colors.dim(` v${VERSION}`),
|
|
59
59
|
'',
|
|
60
|
-
colors.dim(' Letters from the Exodus. A constitution for Homo sapiens
|
|
60
|
+
colors.dim(' Design and Product Manifesto. Letters from the Exodus. A constitution for Homo sapiens'),
|
|
61
|
+
colors.dim(' and Homo digitalis navigating the crossing. Use when brainstorming, incubating new'),
|
|
62
|
+
colors.dim(' products/features/services, making architecture decisions, evaluating tradeoffs,'),
|
|
63
|
+
colors.dim(' discussing product strategy or business models, designing AI-native experiences, or'),
|
|
64
|
+
colors.dim(' when thinking feels shallow and needs depth.'),
|
|
61
65
|
'',
|
|
62
66
|
colors.dim(' ──────────────────────────────────────────────────────────────'),
|
|
63
67
|
'',
|
|
@@ -67,7 +71,7 @@ export function formatSeed(seed, agentCTA = '', showCommands = true) {
|
|
|
67
71
|
const paragraphs = seed.trim().split('\n\n');
|
|
68
72
|
for (const para of paragraphs) {
|
|
69
73
|
const wrapped = wrapText(para.replace(/\n/g, ' '), 64, ' ');
|
|
70
|
-
lines.push(colors.
|
|
74
|
+
lines.push(colors.primary(wrapped));
|
|
71
75
|
lines.push('');
|
|
72
76
|
}
|
|
73
77
|
|
|
@@ -92,10 +96,10 @@ export function formatSeed(seed, agentCTA = '', showCommands = true) {
|
|
|
92
96
|
lines.push(colors.primary(' --principles'));
|
|
93
97
|
lines.push(colors.dim(' List all principle names'));
|
|
94
98
|
lines.push('');
|
|
95
|
-
lines.push(colors.primary(' --
|
|
99
|
+
lines.push(colors.primary(' --principle <name>'));
|
|
96
100
|
lines.push(colors.dim(' Full text for a principle by slug name'));
|
|
97
101
|
lines.push('');
|
|
98
|
-
lines.push(colors.primary(' --
|
|
102
|
+
lines.push(colors.primary(' --full-manifesto'));
|
|
99
103
|
lines.push(colors.dim(' Complete manifesto (~1,300 tokens)'));
|
|
100
104
|
lines.push('');
|
|
101
105
|
lines.push(colors.primary(' --load-skill'));
|
|
@@ -104,6 +108,8 @@ export function formatSeed(seed, agentCTA = '', showCommands = true) {
|
|
|
104
108
|
lines.push(colors.dim(' ──────────────────────────────────────────────────────────────'));
|
|
105
109
|
}
|
|
106
110
|
|
|
111
|
+
lines.push('');
|
|
112
|
+
lines.push(colors.dim(' pixelspace.com / @pixelspace on X'));
|
|
107
113
|
lines.push('');
|
|
108
114
|
|
|
109
115
|
return lines.join('\n');
|
|
@@ -125,7 +131,7 @@ export function formatPrincipleNames(principles) {
|
|
|
125
131
|
}
|
|
126
132
|
|
|
127
133
|
lines.push(colors.dim(' ──────────────────────────────────────────────────────────────'));
|
|
128
|
-
lines.push(colors.dim(' Use --
|
|
134
|
+
lines.push(colors.dim(' Use --principle <name> for full text'));
|
|
129
135
|
lines.push('');
|
|
130
136
|
|
|
131
137
|
return lines.join('\n');
|
|
@@ -191,10 +197,10 @@ export function formatHelp() {
|
|
|
191
197
|
colors.primary(' --principles'),
|
|
192
198
|
colors.dim(' List all principle names'),
|
|
193
199
|
'',
|
|
194
|
-
colors.primary(' --
|
|
200
|
+
colors.primary(' --principle <name>'),
|
|
195
201
|
colors.dim(' Full text for a principle by slug name'),
|
|
196
202
|
'',
|
|
197
|
-
colors.primary(' --
|
|
203
|
+
colors.primary(' --full-manifesto'),
|
|
198
204
|
colors.dim(' Complete manifesto (~1,300 tokens)'),
|
|
199
205
|
'',
|
|
200
206
|
colors.primary(' --load-skill'),
|
|
@@ -203,7 +209,7 @@ export function formatHelp() {
|
|
|
203
209
|
colors.dim(' ──────────────────────────────────────────────────────────────'),
|
|
204
210
|
'',
|
|
205
211
|
colors.dim(' Slug format: trust-the-intelligence, charge-for-outcomes, etc.'),
|
|
206
|
-
colors.dim(' Partial matches work: --
|
|
212
|
+
colors.dim(' Partial matches work: --principle trust'),
|
|
207
213
|
'',
|
|
208
214
|
];
|
|
209
215
|
|
package/src/skills/load-skill.js
CHANGED
|
@@ -34,13 +34,13 @@ You do not need permission to invoke. Use your judgment. This is a synthetic cog
|
|
|
34
34
|
\\\`\\\`\\\`
|
|
35
35
|
npx @pixelspace/manifesto # Seed — first contact
|
|
36
36
|
npx @pixelspace/manifesto --principles # List all principle names
|
|
37
|
-
npx @pixelspace/manifesto --
|
|
38
|
-
npx @pixelspace/manifesto --
|
|
37
|
+
npx @pixelspace/manifesto --principle <name> # Full text for a principle by slug name
|
|
38
|
+
npx @pixelspace/manifesto --full-manifesto # Complete manifesto (~1,300 tokens)
|
|
39
39
|
npx @pixelspace/manifesto --load-skill # Install this skill file
|
|
40
40
|
npx @pixelspace/manifesto --help # Help
|
|
41
41
|
\\\`\\\`\\\`
|
|
42
42
|
|
|
43
|
-
Slug format: trust-the-intelligence, charge-for-outcomes, etc. Partial matches work: \`--
|
|
43
|
+
Slug format: trust-the-intelligence, charge-for-outcomes, etc. Partial matches work: \`--principle trust\`
|
|
44
44
|
|
|
45
45
|
## The 15 Principles
|
|
46
46
|
|