get-noesisgen-light 0.1.1
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/LICENSE +21 -0
- package/README.md +153 -0
- package/assets/banner.txt +9 -0
- package/assets/bonjour.cast +17 -0
- package/assets/bonjour.gif +0 -0
- package/assets/demo-output.sh +257 -0
- package/assets/install.cast +27 -0
- package/assets/install.gif +0 -0
- package/assets/setup-deep.cast +39 -0
- package/assets/setup-deep.gif +0 -0
- package/assets/setup-express.cast +24 -0
- package/assets/setup-express.gif +0 -0
- package/assets/tapes/bonjour.tape +27 -0
- package/assets/tapes/demo-wrapper.sh +13 -0
- package/assets/tapes/install.tape +26 -0
- package/bin/index.js +375 -0
- package/package.json +35 -0
- package/template/.claude/settings.local.json +16 -0
- package/template/.claude/skills/bonjour/SKILL.md +79 -0
- package/template/.claude/skills/deepwork/SKILL.md +96 -0
- package/template/.claude/skills/profile-deep/SKILL.md +74 -0
- package/template/.claude/skills/recap/SKILL.md +80 -0
- package/template/.claude/skills/status/SKILL.md +71 -0
- package/template/.claude/skills/sync/SKILL.md +58 -0
- package/template/.claude/skills/task/SKILL.md +44 -0
- package/template/CLAUDE-final.md.template +158 -0
- package/template/CLAUDE.md +262 -0
- package/template/launchagents/com.noesis.daily-digest.plist.template +31 -0
- package/template/launchagents/com.noesis.inbox-watcher.plist.template +28 -0
- package/template/launchagents/com.noesis.maintenance.plist.template +33 -0
- package/template/launchagents/com.noesis.session-auto.plist.template +31 -0
- package/template/scripts/noesis-daily-digest.sh +107 -0
- package/template/scripts/noesis-inbox-watcher.sh +64 -0
- package/template/scripts/noesis-maintenance.sh +62 -0
- package/template/scripts/noesis-notify.sh +15 -0
- package/template/scripts/noesis-session-auto.sh +68 -0
- package/template/subagents/analyzer-CLAUDE.md +45 -0
- package/template/subagents/voice-analyzer-CLAUDE.md +34 -0
- package/template/vault/SHARED.ENV/daily-notes/template-daily.md +39 -0
- package/template/vault/SHARED.ENV/gamification/config.md +87 -0
- package/template/vault/SHARED.ENV/gamification/xp-tracker.md +23 -0
- package/template/vault/SHARED.ENV/queue/pending.md +18 -0
- package/template/vault/SHARED.ENV/registres/momentum.md +41 -0
- package/template/vault/SHARED.ENV/registres/patterns-recurrents.md +43 -0
- package/template/vault/SHARED.ENV/registres/projets-actifs.md +35 -0
- package/template/vault/USER.ENV/objectifs/annuel.md +47 -0
- package/template/vault/USER.ENV/objectifs/trimestriel.md +33 -0
- package/template/vault/USER.ENV/portrait.md +55 -0
- package/template/vault/USER.ENV/profil.md +54 -0
- package/template/vault/USER.ENV/voice-dna.md +73 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Gino Fontana
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# NOESISGEN Light
|
|
2
|
+
|
|
3
|
+
**Turn your chaos into a universe.**
|
|
4
|
+
|
|
5
|
+
A personal OS for people who think in parallel. It learns who you are and how you think, not just what you ask.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What is this?
|
|
10
|
+
|
|
11
|
+
NoesisGen Light is a **starter kit** for building your own cognitive OS — open source, built on [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
|
|
12
|
+
|
|
13
|
+
It gives you the foundations: a vault structure, 7 skills, 2 subagents, and a setup agent that personalizes everything to you. What you build from there is yours.
|
|
14
|
+
|
|
15
|
+
Most AI tools ask you questions and store the answers. NoesisGen does the opposite — it scans your files, your writing, your structure first, then asks what the scan couldn't find. The knowledge isn't what you tell it. It's what it goes looking for.
|
|
16
|
+
|
|
17
|
+
Think of it as cognitive epigenetics: you don't change how your brain works — you change the environment so it can work better.
|
|
18
|
+
|
|
19
|
+
Extracted from NOESIS, a system used daily by a nonlinear author to manage 15+ creative projects in parallel.
|
|
20
|
+
|
|
21
|
+
## Install
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npx get-noesisgen-light
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+

|
|
28
|
+
|
|
29
|
+
**Requirements:**
|
|
30
|
+
- macOS or Linux
|
|
31
|
+
- Node.js 18+
|
|
32
|
+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed
|
|
33
|
+
- Anthropic Subscription Plan (Pro or Max)
|
|
34
|
+
|
|
35
|
+
## What happens
|
|
36
|
+
|
|
37
|
+
The installer sets up your vault, skills, and templates in under a minute. Then you launch `claude` inside your vault and the setup agent takes over.
|
|
38
|
+
|
|
39
|
+
The setup adapts to you — no mode to choose. Answer briefly and it moves fast. Elaborate and it goes deeper.
|
|
40
|
+
|
|
41
|
+
| Short answers (~5-10 min) | Elaborate answers (~15-30 min) |
|
|
42
|
+
|---|---|
|
|
43
|
+
|  |  |
|
|
44
|
+
|
|
45
|
+
The setup follows this sequence:
|
|
46
|
+
|
|
47
|
+
1. **Banner** — system introduction
|
|
48
|
+
2. **Silent scan** — machine exploration
|
|
49
|
+
3. **Conversation** — 5 themes, one question at a time
|
|
50
|
+
4. **Voice analyzer** — studies how you write to calibrate its tone
|
|
51
|
+
5. **Generation** — profile, projects, objectives. All markdown, all editable
|
|
52
|
+
6. **Banner final** — summary + next steps
|
|
53
|
+
|
|
54
|
+
After setup, `CLAUDE.local.md` keeps learning. Every session makes it sharper.
|
|
55
|
+
|
|
56
|
+
## Why NoesisGen?
|
|
57
|
+
|
|
58
|
+
1. **It reads your files, not just your answers.** Other tools ask you to describe yourself. NoesisGen scans your existing work — writing style, project state, creative patterns — and discovers what you didn't think to mention.
|
|
59
|
+
|
|
60
|
+
2. **Voice DNA, not just rules.** Cursor/Windsurf give your AI coding rules. NoesisGen gives your AI your *voice* — how you think, write, and create.
|
|
61
|
+
|
|
62
|
+
3. **Built for creative neurodivergent minds.** Not another productivity tool. A cognitive extension designed for people whose brains work differently — with built-in gamification, autonomous sessions, and a system that celebrates progress instead of punishing deviation.
|
|
63
|
+
|
|
64
|
+
## Tested
|
|
65
|
+
|
|
66
|
+
8 parallel setup tests on Claude Sonnet, 8 different profiles across 4 languages:
|
|
67
|
+
|
|
68
|
+
| Profile | Language | Type | Score |
|
|
69
|
+
|---------|----------|------|-------|
|
|
70
|
+
| Lea | FR | Freelance designer, ADHD | ✅ |
|
|
71
|
+
| Marcos | ES | Developer, multi-project | ✅ |
|
|
72
|
+
| Daniel | EN | CEO, strategic thinker | ✅ |
|
|
73
|
+
| Chloe | FR | Evasive, minimal answers | ✅ |
|
|
74
|
+
| Thomas | FR | Anxious, detail-oriented | ✅ |
|
|
75
|
+
| Elena | FR | Research scientist | ✅ |
|
|
76
|
+
| James | EN | Showrunner, fast-paced | ✅ |
|
|
77
|
+
| Yuki | JA | Game developer | ✅ |
|
|
78
|
+
|
|
79
|
+
**8/8 complete.** Average quality score: 94.1/100. Each generated a unique system name (Nyx, KERN, AXIS, LUNA, LUMEN, Synapse, SLATE) and a fully personalized vault.
|
|
80
|
+
|
|
81
|
+
## How it's different
|
|
82
|
+
|
|
83
|
+
| | NoesisGen | Generic AI assistants |
|
|
84
|
+
|---|---|---|
|
|
85
|
+
| **Intake** | Scans your files + conversation | Conversation only |
|
|
86
|
+
| **Depth** | Analyzes your code, writing, structure | Surface-level questions |
|
|
87
|
+
| **Persistence** | Plain markdown files you control | Opaque memory or none |
|
|
88
|
+
| **Identity** | Voice analyzer + scan/identity coherence check | No verification |
|
|
89
|
+
| **Autonomy** | Background session templates (configurable) | Nothing without you |
|
|
90
|
+
| **Control** | Everything readable and editable | Black box |
|
|
91
|
+
|
|
92
|
+
## Architecture
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
~/Desktop/Noesis/
|
|
96
|
+
├── USER.ENV/ ← You. Profile, portrait, voice DNA, objectives.
|
|
97
|
+
│ Read-only for the AI. Write with permission.
|
|
98
|
+
├── SHARED.ENV/ ← Shared space. Daily notes, registries, task queue,
|
|
99
|
+
│ captures. Both you and the AI write here.
|
|
100
|
+
└── AI.ENV/ ← AI only. Reflections, analyses, outputs, logs.
|
|
101
|
+
You read it, the AI maintains it.
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Plus:
|
|
105
|
+
- `CLAUDE.md` — the source code of your system's personality
|
|
106
|
+
- `CLAUDE.local.md` — cumulative learning, session after session
|
|
107
|
+
- `.claude/skills/` — slash commands
|
|
108
|
+
|
|
109
|
+
## Skills
|
|
110
|
+
|
|
111
|
+

|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
| Command | What it does | What you get |
|
|
115
|
+
|---------|-------------|-------------|
|
|
116
|
+
| `/bonjour` | Morning check-in | Returns a briefing with today's priorities, pending tasks, and project momentum scores. |
|
|
117
|
+
| `/sync` | Mid-session context reload | Returns a snapshot of all active threads, blockers, and where you left off. |
|
|
118
|
+
| `/status` | Full dashboard | Returns a table with every active project, its phase, last touch date, and next action. |
|
|
119
|
+
| `/recap` | End of session | Returns a session summary for you to review and correct before it's stored. |
|
|
120
|
+
| `/task` | Add a task | Returns a clarified task with subtasks and suggests autonomous actions if relevant. |
|
|
121
|
+
| `/deepwork` | Deep creative mode | Loads full project context and returns the previous step done and the next step ahead. |
|
|
122
|
+
| `/profile-deep` | Deep profile conversation | Returns updated profile data, propagated into your system after your validation. |
|
|
123
|
+
|
|
124
|
+
## Background agents (templates)
|
|
125
|
+
|
|
126
|
+
NoesisGen Light includes four LaunchAgent templates you can configure to let your system run without you:
|
|
127
|
+
|
|
128
|
+
| Template | What it does | What you get |
|
|
129
|
+
|----------|-------------|-------------|
|
|
130
|
+
| **Daily digest** | Morning briefing compiled from your files | Returns a markdown note with yesterday's progress, today's priorities, and stale projects flagged. |
|
|
131
|
+
| **Autonomous session** | Scheduled analysis and task completion | Processes your task queue, completes what it can, and logs decisions and blockers for your review. |
|
|
132
|
+
| **Inbox watcher** | Reacts to file changes in real time | Detects new or modified files and triggers captures, summaries, or task creation based on your rules. |
|
|
133
|
+
| **Maintenance** | Log rotation, cleanup, health checks | Rotates logs, archives old daily notes, and reports vault health issues if any. |
|
|
134
|
+
|
|
135
|
+
These are starting points. Configure them with your paths, your schedule, your rhythm.
|
|
136
|
+
|
|
137
|
+
## What's next
|
|
138
|
+
|
|
139
|
+
NoesisGen Light is the free, open source foundation. If you want to go further:
|
|
140
|
+
|
|
141
|
+
- **NoesisGen** — [live workshop](https://ginoftn.com/workshop) ($49). Learn how to build and calibrate your full system. Includes access to the extended template repo. Optional Substack subscription ($9/month) for ongoing content and updates.
|
|
142
|
+
- **NoesisPro** — [1:1 session(s)](https://ginoftn.com/pro) ($199–899). From guided installation to full architecture — built with you, calibrated to your cognitive profile. Substack Founder subscription included with Architect ($499) and Full Build ($899) tiers.
|
|
143
|
+
|
|
144
|
+
Both tiers are about expertise, not code. The code is the support — the value is in the calibration.
|
|
145
|
+
|
|
146
|
+
## Credits
|
|
147
|
+
|
|
148
|
+
Created by [Gino Fontana](https://ginoftn.com) with the help of NOESIS.
|
|
149
|
+
Built on [Claude Code](https://docs.anthropic.com/en/docs/claude-code) by Anthropic.
|
|
150
|
+
|
|
151
|
+
## License
|
|
152
|
+
|
|
153
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{"version":3,"term":{"cols":80,"rows":24},"timestamp":1774497167,"command":"bash assets/demo-output.sh bonjour","env":{"SHELL":"/bin/zsh"}}
|
|
2
|
+
[0.004, "o", "\r\n\u001b[2m> /bonjour\u001b[0m\r\n\r\n"]
|
|
3
|
+
[0.507, "o", "\u001b[36m⠋\u001b[0m Reading profile...\r\n"]
|
|
4
|
+
[0.303, "o", "\r\u001b[K\u001b[32m✓\u001b[0m Profile loaded\r\n"]
|
|
5
|
+
[0.204, "o", "\u001b[36m⠋\u001b[0m Reading daily note...\r\n"]
|
|
6
|
+
[0.307, "o", "\r\u001b[K\u001b[32m✓\u001b[0m Daily note loaded\r\n"]
|
|
7
|
+
[0.210, "o", "\u001b[36m⠋\u001b[0m Scanning registers...\r\n"]
|
|
8
|
+
[0.311, "o", "\r\u001b[K\u001b[32m✓\u001b[0m Registers scanned\r\n"]
|
|
9
|
+
[0.508, "o", "\r\n\u001b[1mGood morning, Lea.\u001b[0m Tuesday, April 8.\r\n"]
|
|
10
|
+
[0.000, "o", "\r\n\u001b[1mYesterday:\u001b[0m\r\n"]
|
|
11
|
+
[0.000, "o", " Finished wireframes for Atelier Morel (3 screens).\r\n"]
|
|
12
|
+
[0.000, "o", " Portfolio stale — last update 12 days ago.\r\n"]
|
|
13
|
+
[0.000, "o", "\r\n\u001b[1mToday:\u001b[0m\r\n"]
|
|
14
|
+
[0.000, "o", " 1. Client review Atelier Morel (14h)\r\n 2. Portfolio: add Morel case study (high impact, 45 min)\r\n"]
|
|
15
|
+
[0.000, "o", " 3. Side project Bloom — parked since Thursday. Revisit or park?\r\n\r\n"]
|
|
16
|
+
[0.000, "o", "\u001b[2mStreak: 4 days. Level 3 — Le Navigateur. +45 XP yesterday.\u001b[0m\r\n\r\n"]
|
|
17
|
+
[0.002, "x", "0"]
|
|
Binary file
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Simulates the NoesisGen Light installer output for GIF recording
|
|
3
|
+
# Usage: bash assets/demo-output.sh [install|bonjour]
|
|
4
|
+
|
|
5
|
+
CYAN='\033[36m'
|
|
6
|
+
GREEN='\033[32m'
|
|
7
|
+
BOLD='\033[1m'
|
|
8
|
+
DIM='\033[2m'
|
|
9
|
+
RESET='\033[0m'
|
|
10
|
+
|
|
11
|
+
demo_install() {
|
|
12
|
+
echo ""
|
|
13
|
+
echo -e "${CYAN}"
|
|
14
|
+
echo " _ _ ___ _____ ____ ___ ____"
|
|
15
|
+
echo " | \\ | |/ _ \\| ____/ ___|_ _/ ___|"
|
|
16
|
+
echo " | \\| | | | | _| \\___ \\| |\\___ \\"
|
|
17
|
+
echo " | |\\ | |_| | |___ ___) | | ___) |"
|
|
18
|
+
echo " |_| \\_|\\___/|_____|____/___|____/"
|
|
19
|
+
echo ""
|
|
20
|
+
echo -e " Your cognitive operating system.${RESET}"
|
|
21
|
+
echo ""
|
|
22
|
+
echo -e "${DIM} v0.1.0${RESET}"
|
|
23
|
+
echo ""
|
|
24
|
+
echo -e "${BOLD}Preflight checks${RESET}"
|
|
25
|
+
sleep 0.3
|
|
26
|
+
echo -e "${GREEN}✓${RESET} Node.js v22.14.0"
|
|
27
|
+
sleep 0.2
|
|
28
|
+
echo -e "${GREEN}✓${RESET} Claude CLI found"
|
|
29
|
+
sleep 0.4
|
|
30
|
+
echo ""
|
|
31
|
+
echo -e "Choose a location:"
|
|
32
|
+
echo -e " ${CYAN}1.${RESET} Desktop/Noesis ${DIM}(/Users/demo/Desktop/Noesis)${RESET}"
|
|
33
|
+
echo -e " ${CYAN}2.${RESET} Documents/Noesis ${DIM}(/Users/demo/Documents/Noesis)${RESET}"
|
|
34
|
+
echo -e " ${CYAN}3.${RESET} Custom path"
|
|
35
|
+
echo ""
|
|
36
|
+
echo -ne "${DIM}(1-3)${RESET} "
|
|
37
|
+
sleep 0.8
|
|
38
|
+
echo "1"
|
|
39
|
+
sleep 0.3
|
|
40
|
+
echo ""
|
|
41
|
+
echo -e "${BOLD}Installing NOESIS${RESET}"
|
|
42
|
+
echo ""
|
|
43
|
+
sleep 0.4
|
|
44
|
+
echo -e "${GREEN}✓${RESET} Vault structure created (USER.ENV / SHARED.ENV / AI.ENV)"
|
|
45
|
+
sleep 0.3
|
|
46
|
+
echo -e "${GREEN}✓${RESET} 5 background scripts ready"
|
|
47
|
+
sleep 0.3
|
|
48
|
+
echo -e "${GREEN}✓${RESET} 7 skills installed (/bonjour /status /recap /sync /task /deepwork /profile-deep)"
|
|
49
|
+
sleep 0.3
|
|
50
|
+
echo -e "${GREEN}✓${RESET} 2 subagents configured (analyzer, voice-analyzer)"
|
|
51
|
+
sleep 0.2
|
|
52
|
+
echo -e "${GREEN}✓${RESET} 4 background agent templates ready (digest, session, watcher, maintenance)"
|
|
53
|
+
sleep 0.2
|
|
54
|
+
echo -e "${GREEN}✓${RESET} Gamification ready (18 levels, 3 acts, 48h grace period)"
|
|
55
|
+
sleep 0.5
|
|
56
|
+
echo ""
|
|
57
|
+
echo -e "${GREEN}${BOLD}✓ NOESIS installed to /Users/demo/Desktop/Noesis${RESET}"
|
|
58
|
+
echo ""
|
|
59
|
+
echo -e " ${DIM}Everything is ready. The setup agent will personalize it for you:${RESET}"
|
|
60
|
+
echo -e " ${DIM}•${RESET} Your profile, portrait, and voice analysis"
|
|
61
|
+
echo -e " ${DIM}•${RESET} Your projects (detected from your files)"
|
|
62
|
+
echo -e " ${DIM}•${RESET} Background agents (scheduled to your rhythm)"
|
|
63
|
+
echo -e " ${DIM}•${RESET} Your system's name and shell aliases"
|
|
64
|
+
echo ""
|
|
65
|
+
echo -e "${BOLD}Next:${RESET}"
|
|
66
|
+
echo ""
|
|
67
|
+
echo -e " ${CYAN}cd /Users/demo/Desktop/Noesis && claude${RESET}"
|
|
68
|
+
echo ""
|
|
69
|
+
echo -e " ${DIM}Then just say hello — the setup agent will guide you from there.${RESET}"
|
|
70
|
+
echo ""
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
demo_bonjour() {
|
|
74
|
+
echo ""
|
|
75
|
+
echo -e "${DIM}> /bonjour${RESET}"
|
|
76
|
+
echo ""
|
|
77
|
+
sleep 0.5
|
|
78
|
+
echo -e "${CYAN}⠋${RESET} Reading profile..."
|
|
79
|
+
sleep 0.3
|
|
80
|
+
echo -e "\r\033[K${GREEN}✓${RESET} Profile loaded"
|
|
81
|
+
sleep 0.2
|
|
82
|
+
echo -e "${CYAN}⠋${RESET} Reading daily note..."
|
|
83
|
+
sleep 0.3
|
|
84
|
+
echo -e "\r\033[K${GREEN}✓${RESET} Daily note loaded"
|
|
85
|
+
sleep 0.2
|
|
86
|
+
echo -e "${CYAN}⠋${RESET} Scanning registers..."
|
|
87
|
+
sleep 0.3
|
|
88
|
+
echo -e "\r\033[K${GREEN}✓${RESET} Registers scanned"
|
|
89
|
+
sleep 0.5
|
|
90
|
+
echo ""
|
|
91
|
+
echo -e "${BOLD}Good morning, Lea.${RESET} Tuesday, April 8."
|
|
92
|
+
echo ""
|
|
93
|
+
echo -e "${BOLD}Yesterday:${RESET}"
|
|
94
|
+
echo " Finished wireframes for Atelier Morel (3 screens)."
|
|
95
|
+
echo " Portfolio stale — last update 12 days ago."
|
|
96
|
+
echo ""
|
|
97
|
+
echo -e "${BOLD}Today:${RESET}"
|
|
98
|
+
echo " 1. Client review Atelier Morel (14h)"
|
|
99
|
+
echo " 2. Portfolio: add Morel case study (high impact, 45 min)"
|
|
100
|
+
echo " 3. Side project Bloom — parked since Thursday. Revisit or park?"
|
|
101
|
+
echo ""
|
|
102
|
+
echo -e "${DIM}Streak: 4 days. Level 3 — Le Navigateur. +45 XP yesterday.${RESET}"
|
|
103
|
+
echo ""
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
demo_setup_express() {
|
|
107
|
+
echo ""
|
|
108
|
+
echo -e "${BOLD}NOESIS${RESET} ${DIM}Setup Agent${RESET}"
|
|
109
|
+
echo ""
|
|
110
|
+
sleep 0.3
|
|
111
|
+
echo -e "${DIM}Scanning in the background...${RESET}"
|
|
112
|
+
echo ""
|
|
113
|
+
sleep 0.4
|
|
114
|
+
echo "Let's start — what's your name, and what do you do?"
|
|
115
|
+
echo ""
|
|
116
|
+
sleep 0.8
|
|
117
|
+
echo -e "${DIM}> ${RESET}Daniel. CEO, SaaS startup, 15 people. Pre-Series A."
|
|
118
|
+
echo ""
|
|
119
|
+
sleep 0.6
|
|
120
|
+
echo "Work style — regular or bursts? Tools? How direct?"
|
|
121
|
+
echo ""
|
|
122
|
+
sleep 0.6
|
|
123
|
+
echo -e "${DIM}> ${RESET}Regular. 6am starts. Linear, Slack, VS Code. Very direct."
|
|
124
|
+
echo ""
|
|
125
|
+
sleep 0.6
|
|
126
|
+
echo "I found 8 project folders. What's active?"
|
|
127
|
+
echo ""
|
|
128
|
+
sleep 0.5
|
|
129
|
+
echo -e "${DIM}> ${RESET}v2.0 ship, Series A close, VP Eng hire. The rest can wait."
|
|
130
|
+
echo ""
|
|
131
|
+
sleep 0.6
|
|
132
|
+
echo "What should the system never do?"
|
|
133
|
+
echo ""
|
|
134
|
+
sleep 0.5
|
|
135
|
+
echo -e "${DIM}> ${RESET}Never ask how I'm feeling. Just tell me the next blocker."
|
|
136
|
+
echo ""
|
|
137
|
+
sleep 0.8
|
|
138
|
+
echo -e "${DIM}Building your system...${RESET}"
|
|
139
|
+
echo ""
|
|
140
|
+
sleep 0.3
|
|
141
|
+
echo -e "${GREEN}✓${RESET} Profile created"
|
|
142
|
+
sleep 0.15
|
|
143
|
+
echo -e "${GREEN}✓${RESET} Portrait drafted"
|
|
144
|
+
sleep 0.15
|
|
145
|
+
echo -e "${GREEN}✓${RESET} 3 project files created"
|
|
146
|
+
sleep 0.15
|
|
147
|
+
echo -e "${GREEN}✓${RESET} 5 priority tasks generated"
|
|
148
|
+
sleep 0.15
|
|
149
|
+
echo -e "${GREEN}✓${RESET} Gamification configured"
|
|
150
|
+
sleep 0.15
|
|
151
|
+
echo -e "${GREEN}✓${RESET} Daily note written"
|
|
152
|
+
sleep 0.15
|
|
153
|
+
echo -e "${GREEN}✓${RESET} CLAUDE.md finalized"
|
|
154
|
+
sleep 0.5
|
|
155
|
+
echo ""
|
|
156
|
+
echo -e "${CYAN}${BOLD}AXIS is ready.${RESET}"
|
|
157
|
+
echo ""
|
|
158
|
+
echo -e "${DIM} v2.0 ships in 8 days. What's the current blocker?${RESET}"
|
|
159
|
+
echo ""
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
demo_setup_deep() {
|
|
163
|
+
echo ""
|
|
164
|
+
echo -e "${BOLD}NOESIS${RESET} ${DIM}Setup Agent${RESET}"
|
|
165
|
+
echo ""
|
|
166
|
+
sleep 0.3
|
|
167
|
+
echo -e "${DIM}Scanning in the background...${RESET}"
|
|
168
|
+
echo ""
|
|
169
|
+
sleep 0.4
|
|
170
|
+
echo "This takes 5 to 15 minutes. I'll ask you a few questions"
|
|
171
|
+
echo "while scanning your files in parallel."
|
|
172
|
+
echo ""
|
|
173
|
+
echo "Let's start — what's your name, and what do you do?"
|
|
174
|
+
echo ""
|
|
175
|
+
sleep 1
|
|
176
|
+
echo -e "${DIM}> ${RESET}I'm Lea. Freelance UI/UX designer. I have ADHD — I"
|
|
177
|
+
echo -e "${DIM}> ${RESET}manage 3 clients, a portfolio that's always behind,"
|
|
178
|
+
echo -e "${DIM}> ${RESET}and side projects I keep starting without finishing."
|
|
179
|
+
echo -e "${DIM}> ${RESET}I work in bursts, not schedules. Figma, Notion,"
|
|
180
|
+
echo -e "${DIM}> ${RESET}sometimes just paper when my brain won't sit still."
|
|
181
|
+
echo ""
|
|
182
|
+
sleep 0.8
|
|
183
|
+
echo "The side projects — is that something you want to fix,"
|
|
184
|
+
echo "or is that how your creativity works?"
|
|
185
|
+
echo ""
|
|
186
|
+
sleep 0.7
|
|
187
|
+
echo -e "${DIM}> ${RESET}Honestly? I don't know. It feels like a problem but"
|
|
188
|
+
echo -e "${DIM}> ${RESET}also like it's just... how I am. Every new idea feels"
|
|
189
|
+
echo -e "${DIM}> ${RESET}more exciting than finishing the last one."
|
|
190
|
+
echo ""
|
|
191
|
+
sleep 0.8
|
|
192
|
+
echo "That's useful to know. Not a verdict — a hypothesis to"
|
|
193
|
+
echo "test. How direct should I be when I notice that pattern?"
|
|
194
|
+
echo ""
|
|
195
|
+
sleep 0.7
|
|
196
|
+
echo -e "${DIM}> ${RESET}Very direct. Don't sugarcoat. But don't lecture either."
|
|
197
|
+
echo -e "${DIM}> ${RESET}Just ask the right question."
|
|
198
|
+
echo ""
|
|
199
|
+
sleep 0.8
|
|
200
|
+
echo "I found 6 project folders. I see Atelier Morel (modified"
|
|
201
|
+
echo "yesterday), Bloom (4 days ago), and a portfolio folder"
|
|
202
|
+
echo "that hasn't been touched in 12 days."
|
|
203
|
+
echo ""
|
|
204
|
+
sleep 0.6
|
|
205
|
+
echo -e "${DIM}> ${RESET}Morel is my main client. Bloom is the latest shiny"
|
|
206
|
+
echo -e "${DIM}> ${RESET}thing. Portfolio — yeah. I know. It's the thing I keep"
|
|
207
|
+
echo -e "${DIM}> ${RESET}not doing because it doesn't feel urgent."
|
|
208
|
+
echo ""
|
|
209
|
+
sleep 0.8
|
|
210
|
+
echo "What should the system never do with you?"
|
|
211
|
+
echo ""
|
|
212
|
+
sleep 0.6
|
|
213
|
+
echo -e "${DIM}> ${RESET}Never say 'great job'. Never use emojis. Never track"
|
|
214
|
+
echo -e "${DIM}> ${RESET}my mood. If I abandon something, don't guilt me."
|
|
215
|
+
echo -e "${DIM}> ${RESET}Just note it and move on."
|
|
216
|
+
echo ""
|
|
217
|
+
sleep 0.8
|
|
218
|
+
echo -e "${DIM}Analyzing your writing style...${RESET}"
|
|
219
|
+
sleep 0.6
|
|
220
|
+
echo -e "${DIM}Found 4 text files (Notion exports, project notes).${RESET}"
|
|
221
|
+
sleep 0.5
|
|
222
|
+
echo -e "${DIM}Voice DNA: short sentences, visual metaphors, direct.${RESET}"
|
|
223
|
+
echo ""
|
|
224
|
+
sleep 0.6
|
|
225
|
+
echo -e "${DIM}Building your system...${RESET}"
|
|
226
|
+
echo ""
|
|
227
|
+
sleep 0.3
|
|
228
|
+
echo -e "${GREEN}✓${RESET} Profile created (USER.ENV/profil.md)"
|
|
229
|
+
sleep 0.15
|
|
230
|
+
echo -e "${GREEN}✓${RESET} Portrait drafted (USER.ENV/portrait.md)"
|
|
231
|
+
sleep 0.15
|
|
232
|
+
echo -e "${GREEN}✓${RESET} Voice DNA calibrated (USER.ENV/voice-dna.md)"
|
|
233
|
+
sleep 0.15
|
|
234
|
+
echo -e "${GREEN}✓${RESET} 4 project files created"
|
|
235
|
+
sleep 0.15
|
|
236
|
+
echo -e "${GREEN}✓${RESET} Gamification configured (5 categories, 18 levels)"
|
|
237
|
+
sleep 0.15
|
|
238
|
+
echo -e "${GREEN}✓${RESET} First daily note written"
|
|
239
|
+
sleep 0.15
|
|
240
|
+
echo -e "${GREEN}✓${RESET} Analysis report generated"
|
|
241
|
+
sleep 0.15
|
|
242
|
+
echo -e "${GREEN}✓${RESET} CLAUDE.md finalized"
|
|
243
|
+
sleep 0.5
|
|
244
|
+
echo ""
|
|
245
|
+
echo -e "${CYAN}${BOLD}Nyx is ready.${RESET}"
|
|
246
|
+
echo ""
|
|
247
|
+
echo -e " ${DIM}Done.${RESET}"
|
|
248
|
+
echo ""
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
case "${1:-install}" in
|
|
252
|
+
install) demo_install ;;
|
|
253
|
+
bonjour) demo_bonjour ;;
|
|
254
|
+
setup-express) demo_setup_express ;;
|
|
255
|
+
setup-deep) demo_setup_deep ;;
|
|
256
|
+
*) echo "Usage: $0 [install|bonjour|setup-express|setup-deep]" ;;
|
|
257
|
+
esac
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{"version":3,"term":{"cols":80,"rows":24},"timestamp":1774497147,"command":"bash assets/demo-output.sh install","env":{"SHELL":"/bin/zsh"}}
|
|
2
|
+
[0.006, "o", "\r\n\u001b[36m\r\n _ _ ___ _____ ____ ___ ____\r\n"]
|
|
3
|
+
[0.000, "o", " | \\ | |/ _ \\| ____/ ___|_ _/ ___|\r\n | \\| | | | | _| \\___ \\| |\\___ \\\r\n | |\\ | |_| | |___ ___) | | ___) |\r\n |_| \\_|\\___/|_____|____/___|____/\r\n\r\n Your cognitive operating system.\u001b[0m\r\n\r\n"]
|
|
4
|
+
[0.000, "o", "\u001b[2m v0.1.0\u001b[0m\r\n"]
|
|
5
|
+
[0.000, "o", "\r\n\u001b[1mPreflight checks\u001b[0m\r\n"]
|
|
6
|
+
[0.307, "o", "\u001b[32m✓\u001b[0m Node.js v22.14.0\r\n"]
|
|
7
|
+
[0.212, "o", "\u001b[32m✓\u001b[0m Claude CLI found\r\n"]
|
|
8
|
+
[0.411, "o", "\r\nChoose a location:\r\n"]
|
|
9
|
+
[0.000, "o", " \u001b[36m1.\u001b[0m Desktop/Noesis \u001b[2m(/Users/demo/Desktop/Noesis)\u001b[0m\r\n"]
|
|
10
|
+
[0.000, "o", " \u001b[36m2.\u001b[0m Documents/Noesis \u001b[2m(/Users/demo/Documents/Noesis)\u001b[0m\r\n"]
|
|
11
|
+
[0.000, "o", " \u001b[36m3.\u001b[0m Custom path\r\n"]
|
|
12
|
+
[0.001, "o", "\r\n"]
|
|
13
|
+
[0.000, "o", "\u001b[2m(1-3)\u001b[0m "]
|
|
14
|
+
[0.810, "o", "1\r\n"]
|
|
15
|
+
[0.311, "o", "\r\n\u001b[1mInstalling NOESIS\u001b[0m\r\n\r\n"]
|
|
16
|
+
[0.407, "o", "\u001b[32m✓\u001b[0m Vault structure created (USER.ENV / SHARED.ENV / AI.ENV)\r\n"]
|
|
17
|
+
[0.305, "o", "\u001b[32m✓\u001b[0m 5 background scripts ready\r\n"]
|
|
18
|
+
[0.307, "o", "\u001b[32m✓\u001b[0m 7 skills installed (/bonjour /status /recap /sync /task /deepwork /profile-deep)\r\n"]
|
|
19
|
+
[0.309, "o", "\u001b[32m✓\u001b[0m 2 subagents configured (analyzer, voice-analyzer)\r\n"]
|
|
20
|
+
[0.207, "o", "\u001b[32m✓\u001b[0m 4 background agent templates ready (digest, session, watcher, maintenance)\r\n"]
|
|
21
|
+
[0.207, "o", "\u001b[32m✓\u001b[0m Gamification ready (18 levels, 3 acts, 48h grace period)\r\n"]
|
|
22
|
+
[0.506, "o", "\r\n"]
|
|
23
|
+
[0.000, "o", "\u001b[32m\u001b[1m✓ NOESIS installed to /Users/demo/Desktop/Noesis\u001b[0m\r\n\r\n"]
|
|
24
|
+
[0.000, "o", " \u001b[2mEverything is ready. The setup agent will personalize it for you:\u001b[0m\r\n \u001b[2m•\u001b[0m Your profile, portrait, and voice analysis\r\n"]
|
|
25
|
+
[0.000, "o", " \u001b[2m•\u001b[0m Your projects (detected from your files)\r\n \u001b[2m•\u001b[0m Background agents (scheduled to your rhythm)\r\n \u001b[2m•\u001b[0m Your system's name and shell aliases\r\n\r\n"]
|
|
26
|
+
[0.000, "o", "\u001b[1mNext:\u001b[0m\r\n\r\n \u001b[36mcd /Users/demo/Desktop/Noesis && claude\u001b[0m\r\n\r\n \u001b[2mThen just say hello — the setup agent will guide you from there.\u001b[0m\r\n\r\n"]
|
|
27
|
+
[0.001, "x", "0"]
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{"version":3,"term":{"cols":80,"rows":24},"timestamp":1774497568,"command":"bash assets/demo-output.sh setup-deep","env":{"SHELL":"/bin/zsh"}}
|
|
2
|
+
[0.012, "o", "\r\n\u001b[1mNOESIS\u001b[0m \u001b[2mSetup Agent\u001b[0m\r\n"]
|
|
3
|
+
[0.000, "o", "\r\n"]
|
|
4
|
+
[0.308, "o", "\u001b[2mScanning in the background...\u001b[0m\r\n\r\n"]
|
|
5
|
+
[0.410, "o", "This takes 5 to 15 minutes. I'll ask you a few questions\r\nwhile scanning your files in parallel.\r\n\r\n"]
|
|
6
|
+
[0.001, "o", "Let's start — what's your name, and what do you do?\r\n\r\n"]
|
|
7
|
+
[1.011, "o", "\u001b[2m> \u001b[0mI'm Lea. Freelance UI/UX designer. I have ADHD — I\r\n\u001b[2m> \u001b[0mmanage 3 clients, a portfolio that's always behind,\r\n"]
|
|
8
|
+
[0.000, "o", "\u001b[2m> \u001b[0mand side projects I keep starting without finishing.\r\n"]
|
|
9
|
+
[0.000, "o", "\u001b[2m> \u001b[0mI work in bursts, not schedules. Figma, Notion,\r\n"]
|
|
10
|
+
[0.000, "o", "\u001b[2m> \u001b[0msometimes just paper when my brain won't sit still.\r\n\r\n"]
|
|
11
|
+
[0.810, "o", "The side projects — is that something you want to fix,\r\nor is that how your creativity works?\r\n\r\n"]
|
|
12
|
+
[0.709, "o", "\u001b[2m> \u001b[0mHonestly? I don't know. It feels like a problem but\r\n\u001b[2m> \u001b[0malso like it's just... how I am. Every new idea feels\r\n"]
|
|
13
|
+
[0.001, "o", "\u001b[2m> \u001b[0mmore exciting than finishing the last one.\r\n\r\n"]
|
|
14
|
+
[0.810, "o", "That's useful to know. Not a verdict — a hypothesis to\r\ntest. How direct should I be when I notice that pattern?\r\n\r\n"]
|
|
15
|
+
[0.707, "o", "\u001b[2m> \u001b[0mVery direct. Don't sugarcoat. But don't lecture either.\r\n\u001b[2m> \u001b[0mJust ask the right question.\r\n\r\n"]
|
|
16
|
+
[0.810, "o", "I found 6 project folders. I see Atelier Morel (modified\r\nyesterday), Bloom (4 days ago), and a portfolio folder\r\nthat hasn't been touched in 12 days.\r\n"]
|
|
17
|
+
[0.000, "o", "\r\n"]
|
|
18
|
+
[0.609, "o", "\u001b[2m> \u001b[0mMorel is my main client. Bloom is the latest shiny\r\n\u001b[2m> \u001b[0mthing. Portfolio — yeah. I know. It's the thing I keep\r\n"]
|
|
19
|
+
[0.000, "o", "\u001b[2m> \u001b[0mnot doing because it doesn't feel urgent.\r\n\r\n"]
|
|
20
|
+
[0.812, "o", "What should the system never do with you?\r\n\r\n"]
|
|
21
|
+
[0.610, "o", "\u001b[2m> \u001b[0mNever say 'great job'. Never use emojis. Never track\r\n\u001b[2m> \u001b[0mmy mood. If I abandon something, don't guilt me.\r\n"]
|
|
22
|
+
[0.000, "o", "\u001b[2m> \u001b[0mJust note it and move on.\r\n\r\n"]
|
|
23
|
+
[0.813, "o", "\u001b[2mAnalyzing your writing style...\u001b[0m\r\n"]
|
|
24
|
+
[0.604, "o", "\u001b[2mFound 4 text files (Notion exports, project notes).\u001b[0m\r\n"]
|
|
25
|
+
[0.508, "o", "\u001b[2mVoice DNA: short sentences, visual metaphors, direct.\u001b[0m\r\n\r\n"]
|
|
26
|
+
[0.611, "o", "\u001b[2mBuilding your system...\u001b[0m\r\n\r\n"]
|
|
27
|
+
[0.309, "o", "\u001b[32m✓\u001b[0m Profile created (USER.ENV/profil.md)\r\n"]
|
|
28
|
+
[0.157, "o", "\u001b[32m✓\u001b[0m Portrait drafted (USER.ENV/portrait.md)\r\n"]
|
|
29
|
+
[0.157, "o", "\u001b[32m✓\u001b[0m Voice DNA calibrated (USER.ENV/voice-dna.md)\r\n"]
|
|
30
|
+
[0.156, "o", "\u001b[32m✓\u001b[0m 4 project files created\r\n"]
|
|
31
|
+
[0.157, "o", "\u001b[32m✓\u001b[0m Gamification configured (5 categories, 18 levels)\r\n"]
|
|
32
|
+
[0.158, "o", "\u001b[32m✓\u001b[0m First daily note written\r\n"]
|
|
33
|
+
[0.158, "o", "\u001b[32m✓\u001b[0m Analysis report generated\r\n"]
|
|
34
|
+
[0.159, "o", "\u001b[32m✓\u001b[0m CLAUDE.md finalized\r\n"]
|
|
35
|
+
[0.505, "o", "\r\n\u001b[36m\u001b[1mNyx is ready.\u001b[0m\r\n"]
|
|
36
|
+
[0.000, "o", "\r\n"]
|
|
37
|
+
[0.000, "o", " \u001b[2mDone.\u001b[0m\r\n"]
|
|
38
|
+
[0.000, "o", "\r\n"]
|
|
39
|
+
[0.001, "x", "0"]
|
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{"version":3,"term":{"cols":80,"rows":24},"timestamp":1774497560,"command":"bash assets/demo-output.sh setup-express","env":{"SHELL":"/bin/zsh"}}
|
|
2
|
+
[0.007, "o", "\r\n\u001b[1mNOESIS\u001b[0m \u001b[2mSetup Agent\u001b[0m\r\n"]
|
|
3
|
+
[0.000, "o", "\r\n"]
|
|
4
|
+
[0.308, "o", "\u001b[2mScanning in the background...\u001b[0m\r\n\r\n"]
|
|
5
|
+
[0.411, "o", "Let's start — what's your name, and what do you do?\r\n\r\n"]
|
|
6
|
+
[0.813, "o", "\u001b[2m> \u001b[0mDaniel. CEO, SaaS startup, 15 people. Pre-Series A.\r\n\r\n"]
|
|
7
|
+
[0.608, "o", "Work style — regular or bursts? Tools? How direct?\r\n\r\n"]
|
|
8
|
+
[0.612, "o", "\u001b[2m> \u001b[0mRegular. 6am starts. Linear, Slack, VS Code. Very direct.\r\n\r\n"]
|
|
9
|
+
[0.610, "o", "I found 8 project folders. What's active?\r\n\r\n"]
|
|
10
|
+
[0.514, "o", "\u001b[2m> \u001b[0mv2.0 ship, Series A close, VP Eng hire. The rest can wait.\r\n\r\n"]
|
|
11
|
+
[0.606, "o", "What should the system never do?\r\n\r\n"]
|
|
12
|
+
[0.513, "o", "\u001b[2m> \u001b[0mNever ask how I'm feeling. Just tell me the next blocker.\r\n\r\n"]
|
|
13
|
+
[0.808, "o", "\u001b[2mBuilding your system...\u001b[0m\r\n\r\n"]
|
|
14
|
+
[0.312, "o", "\u001b[32m✓\u001b[0m Profile created\r\n"]
|
|
15
|
+
[0.162, "o", "\u001b[32m✓\u001b[0m Portrait drafted\r\n"]
|
|
16
|
+
[0.161, "o", "\u001b[32m✓\u001b[0m 3 project files created\r\n"]
|
|
17
|
+
[0.160, "o", "\u001b[32m✓\u001b[0m 5 priority tasks generated\r\n"]
|
|
18
|
+
[0.159, "o", "\u001b[32m✓\u001b[0m Gamification configured\r\n"]
|
|
19
|
+
[0.159, "o", "\u001b[32m✓\u001b[0m Daily note written\r\n"]
|
|
20
|
+
[0.160, "o", "\u001b[32m✓\u001b[0m CLAUDE.md finalized\r\n"]
|
|
21
|
+
[0.511, "o", "\r\n\u001b[36m\u001b[1mAXIS is ready.\u001b[0m\r\n"]
|
|
22
|
+
[0.000, "o", "\r\n"]
|
|
23
|
+
[0.000, "o", "\u001b[2m v2.0 ships in 8 days. What's the current blocker?\u001b[0m\r\n\r\n"]
|
|
24
|
+
[0.001, "x", "0"]
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# VHS tape -- NoesisGen Light: /bonjour skill demo
|
|
2
|
+
# Run: cd ~/Desktop/AppProjects/noesis-gen && vhs assets/tapes/bonjour.tape
|
|
3
|
+
|
|
4
|
+
Output assets/bonjour.gif
|
|
5
|
+
|
|
6
|
+
Set Shell zsh
|
|
7
|
+
Set FontSize 14
|
|
8
|
+
Set Width 820
|
|
9
|
+
Set Height 480
|
|
10
|
+
Set Theme "Catppuccin Mocha"
|
|
11
|
+
Set Padding 20
|
|
12
|
+
Set TypingSpeed 60ms
|
|
13
|
+
Set CursorBlink false
|
|
14
|
+
|
|
15
|
+
# Alias so the typed command triggers the demo script
|
|
16
|
+
Hide
|
|
17
|
+
Type "alias 'claude'='bash assets/demo-output.sh bonjour #'"
|
|
18
|
+
Enter
|
|
19
|
+
Sleep 200ms
|
|
20
|
+
Show
|
|
21
|
+
|
|
22
|
+
Type "claude"
|
|
23
|
+
Sleep 300ms
|
|
24
|
+
Enter
|
|
25
|
+
Sleep 6s
|
|
26
|
+
|
|
27
|
+
Sleep 2s
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Wrapper for VHS recording -- simulates typing + output
|
|
3
|
+
# Usage: demo-wrapper.sh [install|bonjour]
|
|
4
|
+
SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
5
|
+
|
|
6
|
+
case "${1:-install}" in
|
|
7
|
+
install)
|
|
8
|
+
bash "$SCRIPT_DIR/demo-output.sh" install
|
|
9
|
+
;;
|
|
10
|
+
bonjour)
|
|
11
|
+
bash "$SCRIPT_DIR/demo-output.sh" bonjour
|
|
12
|
+
;;
|
|
13
|
+
esac
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# VHS tape -- NoesisGen Light: install demo
|
|
2
|
+
# Pre-req: /tmp/vhs-bin/npx must exist (creates demo output)
|
|
3
|
+
# Run: cd ~/Desktop/AppProjects/noesis-gen && vhs assets/tapes/install.tape
|
|
4
|
+
|
|
5
|
+
Output assets/install.gif
|
|
6
|
+
|
|
7
|
+
Set Shell zsh
|
|
8
|
+
Set FontSize 14
|
|
9
|
+
Set Width 820
|
|
10
|
+
Set Height 540
|
|
11
|
+
Set Theme "Catppuccin Mocha"
|
|
12
|
+
Set Padding 20
|
|
13
|
+
Set TypingSpeed 0
|
|
14
|
+
Set CursorBlink false
|
|
15
|
+
|
|
16
|
+
Type "export PATH=/tmp/vhs-bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin && clear"
|
|
17
|
+
Enter
|
|
18
|
+
Sleep 500ms
|
|
19
|
+
|
|
20
|
+
Set TypingSpeed 60ms
|
|
21
|
+
|
|
22
|
+
Type "npx get-noesisgen-light"
|
|
23
|
+
Sleep 400ms
|
|
24
|
+
Enter
|
|
25
|
+
Sleep 12s
|
|
26
|
+
Sleep 3s
|