@fledge/workflow 0.2.0 → 0.4.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 +35 -0
- package/dist/scripts/brief.js +4032 -0
- package/dist/scripts/frontmatter-BUnjSmTA.js +6980 -0
- package/dist/scripts/skills.js +264 -0
- package/package.json +9 -4
- package/skills/brief/SKILL.md +28 -16
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @fledge/workflow
|
|
2
|
+
|
|
3
|
+
Workflow skills for the [Fledge](https://github.com/fledge-build/fledge-build) development workflow. Provides agent skills that guide feature planning, brief creation, and lifecycle management.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add -D @fledge/workflow
|
|
9
|
+
```
|
|
10
|
+
|
|
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
|
+
|
|
13
|
+
## Skills
|
|
14
|
+
|
|
15
|
+
### `fledge-brief`
|
|
16
|
+
|
|
17
|
+
Guides the agent through feature brief creation and lifecycle. Invoked directly:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
/fledge-brief
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The skill walks through:
|
|
24
|
+
|
|
25
|
+
1. **New brief** -- gather context from completed briefs, define requirements, break down into tasks
|
|
26
|
+
2. **Continue a brief** -- review progress, update tasks, revise scope
|
|
27
|
+
3. **Complete a brief** -- write a summary, validate, and mark as done
|
|
28
|
+
|
|
29
|
+
The skill includes bundled scripts for brief lifecycle operations. All artifacts are plain markdown files with YAML frontmatter, stored in `.fledge/briefs/`.
|
|
30
|
+
|
|
31
|
+
## Dependencies
|
|
32
|
+
|
|
33
|
+
| Package | Role |
|
|
34
|
+
| ------------- | -------------------------------------------------------------------- |
|
|
35
|
+
| `@fledge/cli` | Build-time dependency. Bundled into self-contained scripts via rolldown |
|