paracosm 0.3.74 → 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 +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -234,16 +234,35 @@ Leaders are abstract decision-making entities. The same engine handles any domai
|
|
|
234
234
|
|
|
235
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
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
|
+
|
|
237
254
|
## Roadmap
|
|
238
255
|
|
|
239
256
|
### Enterprise Edition (Planned)
|
|
240
257
|
|
|
241
258
|
| Feature | Description |
|
|
242
259
|
|---------|-------------|
|
|
260
|
+
| **Fleet Orchestration** | Run 10, 50, or 100+ leaders through the same scenario in parallel. Distributed worker nodes. Aggregate comparison dashboards. |
|
|
243
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. |
|
|
244
262
|
| **Custom Scenario Forms** | Visual form-based scenario editor instead of raw JSON. Drag-and-drop departments, metric configuration, event category builder. |
|
|
245
263
|
| **Persistent Agents** | Agent chat that persists across sessions with durable memory. Resume conversations days later with full recall. |
|
|
246
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. |
|
|
247
266
|
|
|
248
267
|
## License
|
|
249
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",
|