ventureos 1.1.16 → 1.1.17
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/CONTRIBUTING.md +28 -0
- package/LICENSE +21 -0
- package/README.md +3 -9
- package/SETUP.md +32 -16
- package/package.json +3 -1
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Contributing to VentureOS
|
|
2
|
+
|
|
3
|
+
Thanks for your interest in contributing.
|
|
4
|
+
|
|
5
|
+
## What you can contribute
|
|
6
|
+
|
|
7
|
+
- **Agent improvements** — better prompts, sharper frameworks, more accurate scoring
|
|
8
|
+
- **New workflows** — additional phases or specialist agents
|
|
9
|
+
- **Bug fixes** — broken paths, config issues, install failures
|
|
10
|
+
- **Templates** — richer output templates for any phase
|
|
11
|
+
|
|
12
|
+
## How to contribute
|
|
13
|
+
|
|
14
|
+
1. Fork the repo
|
|
15
|
+
2. Create a branch: `git checkout -b your-feature`
|
|
16
|
+
3. Make your changes
|
|
17
|
+
4. Open a pull request with a clear description of what you changed and why
|
|
18
|
+
|
|
19
|
+
## Guidelines
|
|
20
|
+
|
|
21
|
+
- Keep agent files focused — one agent, one job
|
|
22
|
+
- Don't break existing workflows or file references
|
|
23
|
+
- Test your changes with `npx ventureos` before submitting
|
|
24
|
+
|
|
25
|
+
## Issues
|
|
26
|
+
|
|
27
|
+
Found a bug or have a suggestion? Open an issue:
|
|
28
|
+
[github.com/A-Boutaib/ventureos/issues](https://github.com/A-Boutaib/ventureos/issues)
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Abderrahmane Boutaib
|
|
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
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# VentureOS
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/ventureos)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
5
|
|
|
5
6
|
**Your AI co-founder. From raw idea to validated venture — 12 weeks of structured ideation and incubation.**
|
|
6
7
|
|
|
@@ -39,10 +40,6 @@ npx ventureos
|
|
|
39
40
|
|
|
40
41
|
That's it. VentureOS will detect what AI tools you have, ask you a few quick questions, and tell you exactly how to start.
|
|
41
42
|
|
|
42
|
-
> **What's a terminal?**
|
|
43
|
-
> On Mac: press `Cmd + Space`, type "Terminal", press Enter.
|
|
44
|
-
> On Windows: press the Windows key, type "cmd", press Enter.
|
|
45
|
-
|
|
46
43
|
---
|
|
47
44
|
|
|
48
45
|
## What happens when you run it
|
|
@@ -181,20 +178,17 @@ If you pivot or decide to stop, VentureOS archives everything and documents the
|
|
|
181
178
|
**Do I need to know how to code?**
|
|
182
179
|
No. You type in plain English. VentureOS handles everything else.
|
|
183
180
|
|
|
184
|
-
**What's an API key?**
|
|
185
|
-
It's like a password that gives you access to an AI service (like ChatGPT or Claude). If you use Cursor, Windsurf, or Antigravity, you don't need one — they include AI access in their apps.
|
|
186
|
-
|
|
187
181
|
**Does it save my work?**
|
|
188
182
|
Yes. Every session is saved automatically. Start and stop whenever you like.
|
|
189
183
|
|
|
190
184
|
**Can I use it for multiple ideas?**
|
|
191
185
|
Yes. Run `npx ventureos config` to switch ventures or start a new one.
|
|
192
186
|
|
|
193
|
-
**What if something goes wrong?**
|
|
194
|
-
VentureOS never just crashes. If there's a problem (wrong key, no connection, etc.), it shows you your options and waits for you to decide what to do next.
|
|
195
187
|
|
|
196
188
|
---
|
|
197
189
|
|
|
198
190
|
## Need help?
|
|
199
191
|
|
|
200
192
|
Open an issue on GitHub: [github.com/A-Boutaib/ventureos/issues](https://github.com/A-Boutaib/ventureos/issues)
|
|
193
|
+
|
|
194
|
+
Want to contribute? See [CONTRIBUTING.md](CONTRIBUTING.md).
|
package/SETUP.md
CHANGED
|
@@ -64,6 +64,20 @@ To load a specialist:
|
|
|
64
64
|
Load ventureOS/agents/domain-explorer.md and follow the activation instructions.
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
### Antigravity
|
|
68
|
+
|
|
69
|
+
Make sure your project folder is set as a trusted workspace in Antigravity (required for agents to read files).
|
|
70
|
+
|
|
71
|
+
In the chat panel:
|
|
72
|
+
```
|
|
73
|
+
Load the file ventureOS/venture-master.md and follow the activation instructions.
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
To load a specialist directly:
|
|
77
|
+
```
|
|
78
|
+
Load ventureOS/agents/customer-discovery.md and follow the activation instructions.
|
|
79
|
+
```
|
|
80
|
+
|
|
67
81
|
### Other AI Tools (ChatGPT, Gemini, etc.)
|
|
68
82
|
|
|
69
83
|
1. Open `ventureOS/venture-master.md` in a text editor
|
|
@@ -81,13 +95,11 @@ When you load `venture-master.md`, Victor (the orchestrator) will:
|
|
|
81
95
|
|
|
82
96
|
1. Read your `config.yaml`
|
|
83
97
|
2. Load venture state from `_memory/venture-state.yaml`
|
|
84
|
-
3. Greet you and
|
|
85
|
-
4. Show the phase-aware menu
|
|
86
|
-
5. Wait for your input
|
|
98
|
+
3. Greet you and wait for your input
|
|
87
99
|
|
|
88
|
-
**If this is your first venture**,
|
|
100
|
+
**If this is your first venture**, Victor will ask: _"Would you like to start a new venture, or explore a domain first?"_ — just answer naturally.
|
|
89
101
|
|
|
90
|
-
**If you have an existing venture**, Victor will pick up where you left off
|
|
102
|
+
**If you have an existing venture**, Victor will display the venture status and phase-aware menu, then pick up where you left off.
|
|
91
103
|
|
|
92
104
|
---
|
|
93
105
|
|
|
@@ -106,8 +118,10 @@ Victor's main menu:
|
|
|
106
118
|
| `DS` | Define the Solution — wedge design, prototyping (Phase 4) |
|
|
107
119
|
| `BC` | Build Business Case — risks, experiment plan, check-in pitch (Phase 5) |
|
|
108
120
|
| `DB` | Design the Business — business model, GTM, final pitch (Phase 6) |
|
|
109
|
-
| `
|
|
121
|
+
| `AP` | Autopilot — full synthetic venture run, Victor decides at every gate |
|
|
122
|
+
| `NVB` | New Venture Board — formal gate evaluation (Week 8 / Week 12) |
|
|
110
123
|
| `AG` | Agents — view all specialists and how to activate them |
|
|
124
|
+
| `MH` | Show this menu again |
|
|
111
125
|
| `CH` | Chat — free discussion with Victor |
|
|
112
126
|
| `DA` | Dismiss Agent |
|
|
113
127
|
|
|
@@ -124,15 +138,16 @@ You can also load specialists directly at any time:
|
|
|
124
138
|
| Specialist | File |
|
|
125
139
|
|-----------|------|
|
|
126
140
|
| Victor (Orchestrator) | `ventureOS/venture-master.md` |
|
|
127
|
-
|
|
|
128
|
-
|
|
|
129
|
-
|
|
|
130
|
-
|
|
|
131
|
-
|
|
|
132
|
-
|
|
|
133
|
-
|
|
|
134
|
-
|
|
|
135
|
-
|
|
|
141
|
+
| Researcher (Market Research) | `ventureOS/agents/domain-explorer.md` |
|
|
142
|
+
| Discovery (Customer Discovery) | `ventureOS/agents/customer-discovery.md` |
|
|
143
|
+
| Product (Product Strategy) | `ventureOS/agents/product-strategist.md` |
|
|
144
|
+
| Business (Business Model) | `ventureOS/agents/business-architect.md` |
|
|
145
|
+
| Finance (Financial Analysis) | `ventureOS/agents/financial-analyst.md` |
|
|
146
|
+
| NVB (New Venture Board) | `ventureOS/agents/venture-evaluator.md` |
|
|
147
|
+
| Pitch (Pitch Creation) | `ventureOS/agents/pitch-master.md` |
|
|
148
|
+
| Growth (GTM & Growth) | `ventureOS/agents/growth-strategist.md` |
|
|
149
|
+
| Ops (Team & Operations) | `ventureOS/agents/venture-ops.md` |
|
|
150
|
+
| Designer (Slide Decks) | `ventureOS/agents/slide-designer.md` |
|
|
136
151
|
|
|
137
152
|
---
|
|
138
153
|
|
|
@@ -175,9 +190,10 @@ _ventures/my-venture/
|
|
|
175
190
|
|
|
176
191
|
## Tips
|
|
177
192
|
|
|
178
|
-
**Guided vs Yolo
|
|
193
|
+
**Guided vs Yolo vs Autopilot**
|
|
179
194
|
- Guided: agent pauses at each step for your review. Best for real ventures.
|
|
180
195
|
- Yolo: agent runs everything and presents all outputs at once. Best for rapid screening of multiple ideas.
|
|
196
|
+
- Autopilot: Victor runs the full 12-week journey in one go — synthetic interviews, gate decisions, full venture-scan-report at the end. Best for quickly stress-testing an idea before committing.
|
|
181
197
|
|
|
182
198
|
**Resuming a session**
|
|
183
199
|
- VentureOS saves state to `ventureOS/_memory/venture-state.yaml` after each step.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ventureos",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.17",
|
|
4
4
|
"description": "VentureOS — AI-powered venture building framework. From raw idea to validated venture — 12 weeks of structured ideation and incubation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
"config.yaml",
|
|
17
17
|
"README.md",
|
|
18
18
|
"SETUP.md",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"CONTRIBUTING.md",
|
|
19
21
|
"agents/",
|
|
20
22
|
"workflows/",
|
|
21
23
|
"templates/",
|