paracosm 0.3.73 → 0.3.75
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 +48 -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,50 @@ 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
|
+
|
|
237
|
+
## Open Source vs. Hosted
|
|
238
|
+
|
|
239
|
+
| | Open Source (Apache-2.0) | Hosted Dashboard (Planned) |
|
|
240
|
+
|-|--------------------------|---------------------------|
|
|
241
|
+
| **Leaders** | Unlimited via API. Dashboard shows 2 side-by-side. | N leaders in parallel with fleet management UI. |
|
|
242
|
+
| **Simulations** | Sequential or self-managed parallelism. | Distributed parallelization across worker nodes. |
|
|
243
|
+
| **Scenarios** | JSON + Compiler, unlimited. | Visual scenario editor, team sharing, version control. |
|
|
244
|
+
| **Agent Chat** | Available after first turn completes. | Persistent agents with durable memory across sessions. |
|
|
245
|
+
| **Cost** | Free forever. You provide LLM API keys. | Tiered pricing for teams, orgs, and government agencies. |
|
|
246
|
+
| **Support** | Community (Discord, GitHub). | SLA, dedicated support, private deployment. |
|
|
247
|
+
|
|
248
|
+
The open-source engine and library are the permanent foundation. The API (`runSimulation`, `runBatch`, `compileScenario`) supports unlimited leaders and simulations today. The dashboard demo at [paracosm.agentos.sh](https://paracosm.agentos.sh) runs two leaders side-by-side to demonstrate divergence.
|
|
249
|
+
|
|
250
|
+
The planned hosted product targets organizations that need to run dozens or hundreds of simulations in parallel: defense agencies stress-testing doctrine, corporations modeling leadership scenarios, game studios generating divergent NPC civilizations at scale. Distributed parallelization, fleet orchestration, team workspaces, persistent storage, and enterprise auth are on the roadmap.
|
|
251
|
+
|
|
252
|
+
Contact [team@frame.dev](mailto:team@frame.dev) for early access or partnership.
|
|
253
|
+
|
|
215
254
|
## Roadmap
|
|
216
255
|
|
|
217
256
|
### Enterprise Edition (Planned)
|
|
218
257
|
|
|
219
258
|
| Feature | Description |
|
|
220
259
|
|---------|-------------|
|
|
221
|
-
| **
|
|
222
|
-
| **Alternate Timelines** | Fork a simulation mid-run to explore "what if" branches. Split at any turn, change
|
|
260
|
+
| **Fleet Orchestration** | Run 10, 50, or 100+ leaders through the same scenario in parallel. Distributed worker nodes. Aggregate comparison dashboards. |
|
|
261
|
+
| **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
262
|
| **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
|
|
263
|
+
| **Persistent Agents** | Agent chat that persists across sessions with durable memory. Resume conversations days later with full recall. |
|
|
264
|
+
| **Multi-Scenario Comparison** | Run the same leaders across different scenarios and compare how personality adapts to different domains. |
|
|
265
|
+
| **Private Deployment** | Self-hosted or cloud-managed deployment for organizations that need data sovereignty, audit trails, and compliance controls. |
|
|
226
266
|
|
|
227
267
|
## License
|
|
228
268
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paracosm",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.75",
|
|
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",
|