huskies: create 485_story_documentation_site_for_huskies_dev

This commit is contained in:
dave
2026-04-04 21:32:05 +00:00
parent 22611b9a77
commit 893f5b4984
2 changed files with 27 additions and 24 deletions
@@ -1,24 +0,0 @@
---
name: "Story dependencies in pipeline auto-assign"
---
# Story 484: Story dependencies in pipeline auto-assign
## User Story
As a user creating stories that depend on each other, I want to specify dependencies in the story front matter so auto-assign skips stories whose dependencies haven't landed yet.
## Acceptance Criteria
- [ ] New optional `depends_on` field in story front matter accepts a list of story numbers (e.g. `depends_on: [477, 478]`)
- [ ] Auto-assign skips stories in current whose dependencies are not yet in done or archived
- [ ] Stories with unmet dependencies stay in current but are not assigned an agent
- [ ] When a dependency reaches done, auto-assign re-evaluates and picks up the now-unblocked story
- [ ] Status command shows dependency info for stories waiting on deps
- [ ] Stories with no depends_on field behave as before (no change)
- [ ] Bot command `depends <number> <dep1> [dep2...]` to set dependencies from chat (all transports) and web UI slash command
- [ ] Command wired up in bot_command.rs dispatch for web UI and registered in shared command registry for all chat transports
## Out of Scope
- TBD
@@ -0,0 +1,27 @@
---
name: "Documentation site for huskies.dev"
---
# Story 485: Documentation site for huskies.dev
## User Story
As a new user discovering huskies, I want documentation on huskies.dev so I can learn how to set up and use the tool without having to read the source code.
## Acceptance Criteria
- [ ] Docs site lives under website/ directory alongside the existing landing page
- [ ] Accessible from huskies.dev (e.g. huskies.dev/docs/ or docs.huskies.dev)
- [ ] Navigation link added to the main site header
- [ ] Getting started / quickstart guide (Docker setup, first story, first agent run)
- [ ] Configuration reference: project.toml, agents.toml, bot.toml
- [ ] Bot commands reference (auto-generated from command registry or manually maintained)
- [ ] Pipeline stages explained (backlog, current, QA, merge, done)
- [ ] Chat transports guide (Matrix, WhatsApp, Slack, web UI)
- [ ] CLI reference (huskies, huskies init, huskies agent)
- [ ] Matches the visual style of the existing landing page
- [ ] Static HTML — no build step required
## Out of Scope
- TBD