@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.
- package/README.md +11 -11
- 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
|
-
| `
|
|
206
|
-
| `
|
|
207
|
-
| `
|
|
208
|
-
| `
|
|
209
|
-
| `
|
|
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
|
-
`
|
|
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
|
-
`
|
|
219
|
-
the reasoning and the alternative it beat. `
|
|
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, `
|
|
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
|
|
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
|
|
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
|
|
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
|
|
34
|
-
"@skylence-ai/skyline-
|
|
35
|
-
"@skylence-ai/skyline-
|
|
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
|
}
|