@skylence-ai/skyline 1.0.103 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +11 -11
  2. package/package.json +7 -4
package/README.md CHANGED
@@ -202,21 +202,21 @@ agent read before its first edit; the PHP code-intelligence headline:
202
202
 
203
203
  | Tool | What it answers |
204
204
  |------|-----------------|
205
- | `skyline_symbol_card` | One call for a symbol: declaration, resolution trace across same-named candidates, callers, and tests |
206
- | `skyline_impact` | Upstream blast radius by symbol NAME to a bounded depth; every hop tagged `exact` or `name_only`, so a name collision never inflates the result silently |
207
- | `skyline_unreferenced` | Deletion-safety for a class NAME: code references plus Laravel convention surfaces (policies, observers, container bindings, Blade/Livewire), naming the surfaces it did not check so a negative stays honest |
208
- | `skyline_diagnostics` | Undefined class, method, and function checks plus wrong-argument-count warnings |
209
- | `skyline_rename` | Conservative rename; on PHP it refuses, with the exact-versus-uncertain match counts, rather than risk a wrong-receiver edit |
205
+ | `symbol_card` | One call for a symbol: declaration, resolution trace across same-named candidates, callers, and tests |
206
+ | `impact` | Upstream blast radius by symbol NAME to a bounded depth; every hop tagged `exact` or `name_only`, so a name collision never inflates the result silently |
207
+ | `unreferenced` | Deletion-safety for a class NAME: code references plus Laravel convention surfaces (policies, observers, container bindings, Blade/Livewire), naming the surfaces it did not check so a negative stays honest |
208
+ | `diagnostics` | Undefined class, method, and function checks plus wrong-argument-count warnings |
209
+ | `rename_symbol` | Conservative rename; on PHP it refuses, with the exact-versus-uncertain match counts, rather than risk a wrong-receiver edit |
210
210
 
211
- `skyline_impact` and `skyline_unreferenced` are the newest additions: they
211
+ `impact` and `unreferenced` are the newest additions: they
212
212
  collapse an iterated call-hierarchy walk and a manual deletion audit into one
213
213
  call each.
214
214
 
215
215
  ### Memory that outlives the session
216
216
 
217
217
  skyline ships an operator-wide memory bank, skylore, as two more MCP tools.
218
- `skyline_lore_mark` keeps a durable decision, preference, or gotcha along with
219
- the reasoning and the alternative it beat. `skyline_lore_recall` gets it back:
218
+ `lore_mark` keeps a durable decision, preference, or gotcha along with
219
+ the reasoning and the alternative it beat. `lore_recall` gets it back:
220
220
  BM25-ranked over the whole bank, scoped by repo, branch, and project, with every
221
221
  hit citing its provenance and the commit it was anchored to.
222
222
 
@@ -244,7 +244,7 @@ stream returns to the zero-cost baseline.
244
244
  ### When something is missing, it tells you
245
245
 
246
246
  Degraded state is reported, never papered over. When the semantic layer is not
247
- trustworthy, `skyline_lsp_warm` and `skyline_diagnostics` name the actual blocker
247
+ trustworthy, `lsp_warm` and `diagnostics` name the actual blocker
248
248
  and the one action that clears it:
249
249
 
250
250
  ```text
@@ -257,7 +257,7 @@ php-server is indexing this workspace's vendor/, so vendor symbols do not
257
257
  resolve yet); gate on ready_semantic, retry shortly …
258
258
 
259
259
  semantic layer not trustworthy (project layer stale); gate on ready_semantic,
260
- re-warm skyline_lsp_warm on a tracked file after HEAD moves to rebuild the
260
+ re-warm lsp_warm on a tracked file after HEAD moves to rebuild the
261
261
  project layer fresh
262
262
  ```
263
263
 
@@ -335,4 +335,4 @@ Proprietary. Free to use during the invited beta; activating the software means
335
335
  accepting the terms. Full text:
336
336
  https://github.com/skylence-be/skyline/blob/main/LICENSE
337
337
 
338
- <!-- synced from README blob bf1c51dceaa4c44fc563493ad4f17519b3280d0b -->
338
+ <!-- synced from README blob 284ef73a9c6cfb8917f18ce0b4d452fb3fc188d5 -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skylence-ai/skyline",
3
- "version": "1.0.103",
3
+ "version": "1.1.0",
4
4
  "description": "Content-hash line editor — CLI and MCP server",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {
@@ -30,8 +30,11 @@
30
30
  "skylore": "skylore.js"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@skylence-ai/skyline-darwin-arm64": "1.0.103",
34
- "@skylence-ai/skyline-win32-x64": "1.0.103",
35
- "@skylence-ai/skyline-win32-arm64": "1.0.103"
33
+ "@skylence-ai/skyline-darwin-arm64": "1.1.0",
34
+ "@skylence-ai/skyline-darwin-x64": "1.1.0",
35
+ "@skylence-ai/skyline-linux-arm64": "1.1.0",
36
+ "@skylence-ai/skyline-linux-x64": "1.1.0",
37
+ "@skylence-ai/skyline-win32-x64": "1.1.0",
38
+ "@skylence-ai/skyline-win32-arm64": "1.1.0"
36
39
  }
37
40
  }