@fledge/workflow 0.3.0 → 0.5.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 CHANGED
@@ -8,7 +8,7 @@ Workflow skills for the [Fledge](https://github.com/fledge-build/fledge-build) d
8
8
  pnpm add -D @fledge/workflow
9
9
  ```
10
10
 
11
- On install, skills are automatically copied into your project's `.claude/skills/` directory. The `@fledge/cli` binary is resolved via `npx` at runtime, no separate install needed.
11
+ On install, skills are automatically copied into your project's `.claude/skills/` directory. Skills bundle self-contained scripts with all dependencies inlined, so no additional packages are needed at runtime.
12
12
 
13
13
  ## Skills
14
14
 
@@ -26,10 +26,10 @@ The skill walks through:
26
26
  2. **Continue a brief** -- review progress, update tasks, revise scope
27
27
  3. **Complete a brief** -- write a summary, validate, and mark as done
28
28
 
29
- The skill uses `fledge brief` CLI commands for file operations and state transitions. All artifacts are plain markdown files with YAML frontmatter, stored in `.fledge/briefs/`.
29
+ The skill includes bundled scripts for brief lifecycle operations. All artifacts are plain markdown files with YAML frontmatter, stored in `.fledge/briefs/`.
30
30
 
31
31
  ## Dependencies
32
32
 
33
- | Package | Role |
34
- | ------------- | ------------------------------------------------------- |
35
- | `@fledge/cli` | Resolved via `npx` at runtime. Provides brief lifecycle commands, schema validation, and skill installation |
33
+ | Package | Role |
34
+ | ------------- | -------------------------------------------------------------------- |
35
+ | `@fledge/cli` | Build-time dependency. Bundled into self-contained scripts via rolldown |