@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 +5 -5
- package/dist/scripts/brief.js +4041 -0
- package/dist/scripts/frontmatter-BUnjSmTA.js +6980 -0
- package/dist/scripts/skills.js +264 -0
- package/package.json +8 -3
- package/skills/brief/SKILL.md +37 -17
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.
|
|
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
|
|
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` |
|
|
33
|
+
| Package | Role |
|
|
34
|
+
| ------------- | -------------------------------------------------------------------- |
|
|
35
|
+
| `@fledge/cli` | Build-time dependency. Bundled into self-contained scripts via rolldown |
|