paracosm 0.3.73 → 0.3.74
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 +29 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,9 +27,13 @@
|
|
|
27
27
|
|
|
28
28
|
## What Is Paracosm
|
|
29
29
|
|
|
30
|
-
Define a
|
|
30
|
+
Define a world as JSON. Assign AI leaders with distinct personalities. Watch their decisions compound into divergent outcomes from identical starting conditions.
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Leaders are top-down decision makers. They can be colony commanders, CEOs, generals, ship captains, department heads, AI systems, governing councils, or any entity that receives information, evaluates options, and makes choices that shape the world. The simulation doesn't care what they represent. It cares how they decide.
|
|
33
|
+
|
|
34
|
+
Each turn: a Crisis Director generates events based on the world's current state. Department agents analyze the situation and forge computational tools at runtime. Leaders decide. A deterministic kernel applies consequences. Personality traits drift from experience. The world evolves.
|
|
35
|
+
|
|
36
|
+
Same seed, same starting conditions, different leaders, different civilizations.
|
|
33
37
|
|
|
34
38
|
## Quickstart
|
|
35
39
|
|
|
@@ -88,7 +92,10 @@ const scenario = await compileScenario(worldJson, {
|
|
|
88
92
|
model: 'claude-sonnet-4-6',
|
|
89
93
|
});
|
|
90
94
|
|
|
91
|
-
// Define leaders with HEXACO personality profiles
|
|
95
|
+
// Define leaders with HEXACO personality profiles.
|
|
96
|
+
// Leaders can be any top-down decision maker: commander, CEO, general,
|
|
97
|
+
// governing council, AI system, department head. The engine doesn't care
|
|
98
|
+
// what they represent, only how their personality shapes decisions.
|
|
92
99
|
const leaders = [
|
|
93
100
|
{
|
|
94
101
|
name: 'Captain Reyes',
|
|
@@ -123,7 +130,7 @@ const results = await Promise.all(
|
|
|
123
130
|
);
|
|
124
131
|
```
|
|
125
132
|
|
|
126
|
-
Each call to `runSimulation` takes one leader. Run one, two, or twenty. The dashboard runs two side-by-side for comparison, but the API has no limit.
|
|
133
|
+
Each call to `runSimulation` takes one leader. Run one, two, or twenty. The dashboard runs two side-by-side for comparison, but the API has no limit. Leaders don't need to be people. They can model competing strategies, policy frameworks, organizational philosophies, or autonomous systems responding to the same events with different decision profiles.
|
|
127
134
|
|
|
128
135
|
### 3. Or use the dashboard
|
|
129
136
|
|
|
@@ -212,17 +219,31 @@ Paracosm uses [AgentOS](https://agentos.sh) for agent orchestration, LLM calls,
|
|
|
212
219
|
| AgentOS | [agentos.sh](https://agentos.sh) |
|
|
213
220
|
| Discord | [wilds.ai/discord](https://wilds.ai/discord) |
|
|
214
221
|
|
|
222
|
+
## What You Can Simulate
|
|
223
|
+
|
|
224
|
+
Leaders are abstract decision-making entities. The same engine handles any domain where top-down decisions shape outcomes over time:
|
|
225
|
+
|
|
226
|
+
| Domain | Leaders | Departments | Events |
|
|
227
|
+
|--------|---------|-------------|--------|
|
|
228
|
+
| **Space colonies** | Colony commanders | Medical, Engineering, Agriculture | Dust storms, water crises, first native-born generation |
|
|
229
|
+
| **Corporate strategy** | CEOs, board members | Finance, Operations, R&D, Legal | Market shifts, acquisitions, regulatory changes |
|
|
230
|
+
| **Military wargaming** | Theater commanders | Intelligence, Logistics, Air, Ground | Escalation, supply disruption, allied coordination |
|
|
231
|
+
| **Game worlds** | Faction leaders, AI governors | Economy, Military, Diplomacy, Culture | Invasions, trade disputes, technological breakthroughs |
|
|
232
|
+
| **Policy simulation** | Government agencies, councils | Healthcare, Education, Infrastructure | Pandemics, budget crises, demographic shifts |
|
|
233
|
+
| **Autonomous systems** | AI decision frameworks | Sensor, Planning, Execution | Sensor failure, objective conflict, resource contention |
|
|
234
|
+
|
|
235
|
+
Define departments, metrics, events, and progression hooks in JSON. The engine generates crises, runs department analysis, forges tools, and applies consequences through the deterministic kernel. The scenario owns the domain. The engine owns the chassis.
|
|
236
|
+
|
|
215
237
|
## Roadmap
|
|
216
238
|
|
|
217
239
|
### Enterprise Edition (Planned)
|
|
218
240
|
|
|
219
241
|
| Feature | Description |
|
|
220
242
|
|---------|-------------|
|
|
221
|
-
| **
|
|
222
|
-
| **Alternate Timelines** | Fork a simulation mid-run to explore "what if" branches. Split at any turn, change commander or settings, compare divergent futures from a single decision point. |
|
|
243
|
+
| **Alternate Timelines** | Fork a simulation mid-run to explore "what if" branches. Split at any turn, change leader or settings, compare divergent futures from a single decision point. |
|
|
223
244
|
| **Custom Scenario Forms** | Visual form-based scenario editor instead of raw JSON. Drag-and-drop departments, metric configuration, event category builder. |
|
|
224
|
-
| **Persistent Agents** |
|
|
225
|
-
| **Multi-Scenario Comparison** | Run the same leaders across different scenarios
|
|
245
|
+
| **Persistent Agents** | Agent chat that persists across sessions with durable memory. Resume conversations days later with full recall. |
|
|
246
|
+
| **Multi-Scenario Comparison** | Run the same leaders across different scenarios and compare how personality adapts to different domains. |
|
|
226
247
|
|
|
227
248
|
## License
|
|
228
249
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paracosm",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.74",
|
|
4
4
|
"description": "AI agent swarm simulation engine with emergent crises, runtime tool forging, HEXACO personality drift, and deterministic kernels. Built on AgentOS.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/engine/index.js",
|