@skylence-ai/skyline 1.0.31 → 1.0.32

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.
Files changed (2) hide show
  1. package/README.md +3 -7
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -17,16 +17,13 @@ talks to. Start it once and every tool call is fast.
17
17
  <summary>Why a daemon instead of a per-call binary?</summary>
18
18
 
19
19
  - No cold starts: the warm daemon answers a full `tools/list` round-trip in
20
- **10 to 40 ms**. A per-session stdio server pays its full startup cost
21
- before the first call, every session.
20
+ **10 to 40 ms** no per-session startup.
22
21
  - Language servers stay warm: the one-time cold index on a ~224k-line workspace
23
22
  took **95 s**; warm calls are **sub-second**. With a daemon that price is paid
24
23
  once per workspace, not once per session.
25
24
  - One process for every client: Claude Code, other MCP clients, and scripts all
26
25
  share the same warm state, one audit stream, and one bench stream.
27
- - The per-session stdio mode works too; it just re-pays startup and indexing in
28
- every new session. Numbers: [docs/benchmarks.md](https://github.com/skylence-be/binary-skyline/blob/main/docs/benchmarks.md). Setup for
29
- both modes: [docs/install.md](https://github.com/skylence-be/binary-skyline/blob/main/docs/install.md).
26
+ - See [docs/benchmarks.md](https://github.com/skylence-be/binary-skyline/blob/main/docs/benchmarks.md) for full numbers.
30
27
 
31
28
  </details>
32
29
 
@@ -121,8 +118,7 @@ Full detail and the methodology are in [docs/benchmarks.md](https://github.com/s
121
118
  corrupted that comment.
122
119
  - **No search penalty.** A controlled query returned the same 66 matches as ripgrep, because
123
120
  skyline uses the same engine and gitignore-aware walk.
124
- - **No startup tax.** The warm daemon answers in 10 to 40 ms with no per-session startup, while
125
- spawning the tool per session costs about a second each time.
121
+ - **No startup tax.** The warm daemon answers in 10 to 40 ms with no per-session startup.
126
122
 
127
123
  ## Tools
128
124
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skylence-ai/skyline",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Content-hash line editor — CLI and MCP server",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -25,10 +25,11 @@
25
25
  "skyline": "bin.js"
26
26
  },
27
27
  "optionalDependencies": {
28
- "@skylence-ai/skyline-darwin-arm64": "1.0.31",
29
- "@skylence-ai/skyline-darwin-x64": "1.0.31",
30
- "@skylence-ai/skyline-linux-arm64": "1.0.31",
31
- "@skylence-ai/skyline-linux-x64": "1.0.31",
32
- "@skylence-ai/skyline-win32-x64": "1.0.31"
28
+ "@skylence-ai/skyline-darwin-arm64": "1.0.32",
29
+ "@skylence-ai/skyline-darwin-x64": "1.0.32",
30
+ "@skylence-ai/skyline-linux-arm64": "1.0.32",
31
+ "@skylence-ai/skyline-linux-x64": "1.0.32",
32
+ "@skylence-ai/skyline-win32-x64": "1.0.32",
33
+ "@skylence-ai/skyline-win32-arm64": "1.0.32"
33
34
  }
34
35
  }