@flydocs/cli 0.6.0-alpha.31 → 0.6.0-alpha.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.
- package/dist/cli.js +965 -287
- package/package.json +1 -1
- package/template/.flydocs/config.json +1 -1
- package/template/.flydocs/version +1 -1
- package/template/CHANGELOG.md +31 -0
- package/template/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.0-alpha.
|
|
1
|
+
0.6.0-alpha.32
|
package/template/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,37 @@ Versioning: [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.6.0-alpha.32] — 2026-04-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Server-managed artifact sync** — Init and sync fetch skills, hooks,
|
|
15
|
+
commands, agents, and IDE configs from relay API with incremental versioning
|
|
16
|
+
via `artifactVersion` (FLY-567)
|
|
17
|
+
- **`flydocs scan` command** — Trigger server-side AI scanning to generate
|
|
18
|
+
`project.md` and `service.json`. Admin-only with spinner UX. Also available
|
|
19
|
+
as `flydocs init --scan` (FLY-568)
|
|
20
|
+
- **Init scan auto-detection** — When no generated context exists, admins are
|
|
21
|
+
prompted to scan; non-admins get guidance to contact their admin (FLY-569)
|
|
22
|
+
- **IDE config archiving** — Existing `.cursorrules`, `.claude/CLAUDE.md`, and
|
|
23
|
+
`.cursor/rules/` are backed up to `flydocs/knowledge/archived/` before
|
|
24
|
+
server-managed files overwrite them (FLY-570)
|
|
25
|
+
- **Topology-adaptive writes** — Multi-repo workspaces write artifacts to the
|
|
26
|
+
workspace parent; child repos only get context files. Includes migration
|
|
27
|
+
cleanup of server-managed files from prior single-repo setups (FLY-571)
|
|
28
|
+
- **Expanded gitignore** — Server-managed paths (`.claude/skills/`, `commands/`,
|
|
29
|
+
`hooks/`, `agents/`, `settings.json`, `CLAUDE.md`, `.cursor/rules/`,
|
|
30
|
+
`.cursor/commands/`, `AGENTS.md`) now gitignored. Sync updates existing
|
|
31
|
+
gitignore files (FLY-572)
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- **Contract updates** — Added `artifactVersion` to config/generate and
|
|
36
|
+
config/check responses. Added `role` to identity block. New artifact and
|
|
37
|
+
scan response types aligned with App relay endpoints.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
10
41
|
## [0.6.0-alpha.24] — 2026-03-30
|
|
11
42
|
|
|
12
43
|
### Added
|
package/template/manifest.json
CHANGED