docs: developer experience improvements#993
Merged
zbigniewsobiecki merged 1 commit intodevfrom Mar 23, 2026
Merged
Conversation
- Add `dev:all` script (concurrently, with --kill-others-on-fail) to start router + dashboard + frontend in one command - Add `verify` script (lint + typecheck + unit tests) as the pre-PR check - Move both scripts to logical positions in package.json (dev:all after dev:web, verify after typecheck) - CONTRIBUTING.md: add missing `npm run build` step before dev servers; renumber setup steps 5→7; add trigger-discover step in Adding New Agents - README.md: add dev:all + verify to Commands table; update Contributing item 3 to use `npm run verify`; add MIT + Node.js badges - CLAUDE.md: add Quick Start as first Table of Contents entry Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dev:allscript (concurrently --kill-others-on-fail) to start all three services (router + dashboard + frontend) with one commandverifyscript (lint + typecheck + unit tests) as the canonical pre-PR check, referenced throughout docspackage.json(dev:allafterdev:web,verifyaftertypecheck)npm run buildstep (step 5) before dev servers; renumber steps 5→7; replace manuallint + typecheck + testwithnpm run verify; expand Adding New Agents with full YAML workflow +trigger-discoverstepdev:allandverifyto the Commands table; update Contributing item 3 tonpm run verify; add MIT + Node.js version badgesTest plan
npm run lint— passes cleannpm run typecheck— passes cleannpm test— all 6326 unit tests passnpm run build && npm run dev:all— all three services start with color-coded output; killing one terminates the restnpm run verify— lint + typecheck + tests run sequentially and all pass🤖 Generated with Claude Code