diff --git a/.huskies/work/1_backlog/484_story_story_dependencies_in_pipeline_auto_assign.md b/.huskies/work/1_backlog/484_story_story_dependencies_in_pipeline_auto_assign.md deleted file mode 100644 index 84877f41..00000000 --- a/.huskies/work/1_backlog/484_story_story_dependencies_in_pipeline_auto_assign.md +++ /dev/null @@ -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 [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 diff --git a/.huskies/work/1_backlog/485_story_documentation_site_for_huskies_dev.md b/.huskies/work/1_backlog/485_story_documentation_site_for_huskies_dev.md new file mode 100644 index 00000000..ef08298a --- /dev/null +++ b/.huskies/work/1_backlog/485_story_documentation_site_for_huskies_dev.md @@ -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