kylon-cli 0.3.10-next.712 → 0.3.10-next.713
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 +17 -3
- package/dist/kylon-bundle.manifest.json +3 -3
- package/dist/kylon-bundle.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -93,9 +93,23 @@ the browser confirmation is the only gate.
|
|
|
93
93
|
It detects, offline and read-only, the project (the nearest `.git` ancestor,
|
|
94
94
|
named from its `origin` repository when available and otherwise from its
|
|
95
95
|
directory), the `CLAUDE.md` instruction files (project, `.claude/`, and
|
|
96
|
-
user-level),
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
user-level), and direct child skill packages under these exact repository
|
|
97
|
+
locations:
|
|
98
|
+
|
|
99
|
+
- `.claude/skills`
|
|
100
|
+
- `.agents/skills`
|
|
101
|
+
- `.github/skills`
|
|
102
|
+
- `agent_resources/skills`
|
|
103
|
+
- `skills`
|
|
104
|
+
|
|
105
|
+
The user's Claude Code skill directory and the project's Claude Code memory
|
|
106
|
+
entries are also included. Each skill package must be a direct child directory
|
|
107
|
+
with a top-level `SKILL.md`. Discovery checks only the listed roots; it does not
|
|
108
|
+
recursively search the repository for directories named `skills`. Roots are
|
|
109
|
+
processed in the listed order, duplicate package names keep the first match,
|
|
110
|
+
and an unusually large root is skipped before any packages inside it are read.
|
|
111
|
+
|
|
112
|
+
Env files, credential-shaped content, binaries, empty files, oversized
|
|
99
113
|
files, and symlinks are never uploaded. Its terminal summary shows the semantic
|
|
100
114
|
project name and its source separately from the physical checkout root. It then
|
|
101
115
|
asks once (Enter confirms) and opens your browser: you sign in or sign up,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.10-next.
|
|
3
|
-
"fingerprint": "
|
|
4
|
-
"source_commit": "
|
|
2
|
+
"version": "0.3.10-next.713",
|
|
3
|
+
"fingerprint": "1469f9c1bb3247af7869a7f171120f9388dcc3927cae5d03632498f5ce99927a",
|
|
4
|
+
"source_commit": "135254dd93fa5305b6b6b42c3d4c4741e1a3a892"
|
|
5
5
|
}
|