kshana 0.14.1 → 0.15.0

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 CHANGED
@@ -43,7 +43,7 @@ citable table in [`docs/PROVENANCE.md`](docs/PROVENANCE.md).
43
43
  *Free and open source under Apache-2.0, professionally developed and maintained by
44
44
  Ashforde OÜ — commercial support, integration, and proprietary extensions available.*
45
45
 
46
- > **Status: v0.14.1 · a simulation substrate, not yet a product.** A validated,
46
+ > **Status: v0.15.0 · a simulation substrate, not yet a product.** A validated,
47
47
  > fully reproducible engine spanning the PNT stack — orbit geometry and constellation
48
48
  > design, a numerical (Cowell) propagator with a six-perturbation force model, maneuver
49
49
  > and trajectory design, time systems, inertial navigation (incl. map-aided and
@@ -303,6 +303,29 @@ const result = JSON.parse(run(tomlText));
303
303
  console.log(version(), result.classical.fom.timing_p95_ns);
304
304
  ```
305
305
 
306
+ ### AI agents (MCP)
307
+
308
+ Kshana ships an [MCP](https://modelcontextprotocol.io) server, [`kshana-mcp`](mcp/kshana-mcp/),
309
+ so AI assistants and agents can run the **validated** engine instead of guessing the
310
+ math — usable from **Cursor, JetBrains AI Assistant / Junie, and any MCP-compatible
311
+ assistant or agent**. It exposes `run_scenario`, `list_scenario_kinds`,
312
+ `validate_scenario`, `export_sp3`, and `export_omm` (each a thin wrapper over
313
+ `kshana::api`).
314
+
315
+ ```bash
316
+ cargo install kshana-mcp # crates.io
317
+ docker run --rm -i ghcr.io/ashfordeou/kshana-mcp # or OCI, no Rust toolchain
318
+ ```
319
+
320
+ Then register `kshana-mcp` in your client's `mcpServers` config — see
321
+ [`mcp/kshana-mcp/README.md`](mcp/kshana-mcp/README.md) for per-client snippets. The
322
+ server is a standalone, workspace-excluded crate (the `rmcp` SDK is edition 2024), so it
323
+ never affects the lean published `kshana` crate or its build.
324
+
325
+ **In a JetBrains IDE** you can also install the **Kshana** plugin from the JetBrains
326
+ Marketplace (Settings → Plugins → search "Kshana") to run scenarios from a right-click —
327
+ see [`ide/jetbrains/`](ide/jetbrains/).
328
+
306
329
  ## Scenario format
307
330
 
308
331
  Scenarios are declarative TOML. A top-level `kind` selects the pack (`clock` is
@@ -715,7 +738,7 @@ entry for every user-visible change. Participation is governed by our
715
738
 
716
739
  If you use Kshana in academic or technical work, please cite it. Machine-readable
717
740
  metadata is in [`CITATION.cff`](CITATION.cff) (GitHub renders a "Cite this repository"
718
- button from it); cite the version you used (e.g. `v0.14.1`) together with the
741
+ button from it); cite the version you used (e.g. `v0.15.0`) together with the
719
742
  scenario and seed for full reproducibility. Every release is archived on Zenodo with
720
743
  a citable DOI — the concept DOI [10.5281/zenodo.20528627](https://doi.org/10.5281/zenodo.20528627)
721
744
  always resolves to the latest version.
package/kshana_bg.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Chakshu Baweja <contact@ashforde.org>"
6
6
  ],
7
7
  "description": "Open, reproducible PNT-resilience simulator with quantum-sensor performance models",
8
- "version": "0.14.1",
8
+ "version": "0.15.0",
9
9
  "license": "Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "kshana.d.ts"
18
18
  ],
19
19
  "main": "kshana.js",
20
- "homepage": "https://github.com/AshfordeOU/kshana",
20
+ "homepage": "https://kshana.dev",
21
21
  "types": "kshana.d.ts",
22
22
  "sideEffects": [
23
23
  "./snippets/*"