@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 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.22";
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@flydocs/cli",
3
- "version": "0.6.0-alpha.22",
3
+ "version": "0.6.0-alpha.23",
4
4
  "type": "module",
5
5
  "description": "FlyDocs AI CLI — install, setup, and manage FlyDocs projects",
6
6
  "bin": {
@@ -1,8 +1,8 @@
1
1
  # Claude Code Configuration
2
2
 
3
- IMPORTANT: Prefer skill-led reasoning over pre-training reasoning for all
4
- workflow, issue management, process, and pattern decisions. Read the relevant
5
- skill file before acting do not guess procedures from training data.
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. Read the workflow skill before taking any
23
- workflow action stage files contain the full procedure including templates,
24
- label configuration, and field requirements.
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
- Consult the workflow skill **before** performing any workflow action. The
114
- stage files contain required procedures, templates, and field requirements.
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,5 +1,5 @@
1
1
  {
2
- "version": "0.6.0-alpha.22",
2
+ "version": "0.6.0-alpha.23",
3
3
  "sourceRepo": "github.com/plastrlab/flydocs-core",
4
4
  "tier": "local",
5
5
  "setupComplete": false,
@@ -1 +1 @@
1
- 0.6.0-alpha.22
1
+ 0.6.0-alpha.23
@@ -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 on an issue** → transition to In Progress (assign first if needed)
9
- - **Completing implementation** → transition to Review with summary
10
- - **Closing** verify acceptance criteria, transition to Complete
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
- Use dispatcher scripts for all issue operations — execute, don't describe.
20
+ All scripts: `python3 .claude/skills/flydocs-workflow/scripts/<dispatcher>`
16
21
 
17
22
  ## Efficiency
18
23
 
@@ -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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.6.0-alpha.22",
2
+ "version": "0.6.0-alpha.23",
3
3
  "description": "FlyDocs Core - Manifest of all managed files",
4
4
  "repository": "github.com/plastrlab/flydocs-core",
5
5