@flydocs/cli 0.6.0-alpha.22 → 0.6.0-alpha.23
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 +1 -1
- package/package.json +1 -1
- package/template/.claude/CLAUDE.md +8 -8
- package/template/.flydocs/config.json +1 -1
- package/template/.flydocs/version +1 -1
- package/template/AGENTS.md +10 -5
- package/template/CHANGELOG.md +11 -0
- package/template/manifest.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -15,7 +15,7 @@ var CLI_VERSION, CLI_NAME, PACKAGE_NAME, POSTHOG_API_KEY;
|
|
|
15
15
|
var init_constants = __esm({
|
|
16
16
|
"src/lib/constants.ts"() {
|
|
17
17
|
"use strict";
|
|
18
|
-
CLI_VERSION = "0.6.0-alpha.
|
|
18
|
+
CLI_VERSION = "0.6.0-alpha.23";
|
|
19
19
|
CLI_NAME = "flydocs";
|
|
20
20
|
PACKAGE_NAME = "@flydocs/cli";
|
|
21
21
|
POSTHOG_API_KEY = "phc_v1MSJTQDFkMS90CBh3mxIz3v8bYCCnKU6v1ir6bz0Xn";
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Claude Code Configuration
|
|
2
2
|
|
|
3
|
-
IMPORTANT:
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
IMPORTANT: For workflow operations (issue creation, status transitions,
|
|
4
|
+
session management), prefer skill-led reasoning — read the relevant skill
|
|
5
|
+
file before acting. For general coding tasks, just write code.
|
|
6
6
|
|
|
7
7
|
> For cross-platform agent instructions, see `AGENTS.md`.
|
|
8
8
|
|
|
@@ -19,9 +19,9 @@ These are non-negotiable and enforced by hooks:
|
|
|
19
19
|
|
|
20
20
|
## Workflow
|
|
21
21
|
|
|
22
|
-
The FlyDocs development lifecycle.
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
The FlyDocs development lifecycle. Slash commands (`/capture`, `/activate`,
|
|
23
|
+
etc.) load stage procedures automatically. For manual workflow actions, the
|
|
24
|
+
stage files contain required procedures, templates, and field requirements.
|
|
25
25
|
|
|
26
26
|
| Action | Skill | Entry Point |
|
|
27
27
|
| -------------------- | ------------------ | --------------------------------- |
|
|
@@ -110,8 +110,8 @@ response — session summaries, issue comments, status updates, and plans.
|
|
|
110
110
|
|
|
111
111
|
## Skills Index
|
|
112
112
|
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
For issue operations and status transitions only — not general coding.
|
|
114
|
+
Slash commands load procedures automatically; use scripts directly for CRUD.
|
|
115
115
|
|
|
116
116
|
| Skill | Triggers | Entry |
|
|
117
117
|
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.0-alpha.
|
|
1
|
+
0.6.0-alpha.23
|
package/template/AGENTS.md
CHANGED
|
@@ -5,14 +5,19 @@
|
|
|
5
5
|
These behaviors are **always on**. Execute them automatically as part of doing
|
|
6
6
|
the work — do not wait for explicit commands.
|
|
7
7
|
|
|
8
|
-
- **Starting work
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
- **Starting work** → assign if needed, then transition:
|
|
9
|
+
`issues.py assign REF ASSIGNEE`
|
|
10
|
+
`issues.py transition REF IMPLEMENTING "Starting implementation"`
|
|
11
|
+
- **Completing implementation** → transition with summary:
|
|
12
|
+
`issues.py transition REF REVIEW "Implementation complete — [summary]"`
|
|
13
|
+
- **Closing** → verify AC, then transition:
|
|
14
|
+
`issues.py transition REF COMPLETE "All acceptance criteria verified"`
|
|
11
15
|
- **Every transition gets a comment** — no silent moves, no exceptions
|
|
12
|
-
- **Checkboxes in description, never comments** — update AC as you go
|
|
16
|
+
- **Checkboxes in description, never comments** — update AC as you go:
|
|
17
|
+
`issues.py description REF --text "updated description with checked boxes"`
|
|
13
18
|
- **Session wrap posts a summary** via `session.py project-update`
|
|
14
19
|
|
|
15
|
-
|
|
20
|
+
All scripts: `python3 .claude/skills/flydocs-workflow/scripts/<dispatcher>`
|
|
16
21
|
|
|
17
22
|
## Efficiency
|
|
18
23
|
|
package/template/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ Versioning: [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.6.0-alpha.23] — 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **CLAUDE.md** — scoped skill-led reasoning to workflow operations only; general
|
|
15
|
+
coding no longer triggers skill file reads (FLY-450)
|
|
16
|
+
- **AGENTS.md** — added exact script commands to Automatic Workflow Behavior section
|
|
17
|
+
for deterministic issue transitions (FLY-450)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
10
21
|
## [0.6.0-alpha.4] — 2026-03-13
|
|
11
22
|
|
|
12
23
|
### Added
|
package/template/manifest.json
CHANGED