You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
6.**GitHub Issues for TODOs** - Use `gh` CLI to manage issues, no local TODO files. Use conventional commit format for issue titles
26
26
7.**Pull Requests** - Use the conventional commit format for PR titles as you do for commits
27
-
8.**Run validation before commits** - Run `npm run check` (format, lint, test) before committing and pushing
27
+
8.**Run validation before commits** - Run `./rnr check` (format, lint, test) before committing and pushing
28
28
9.**Working an issue** - When working an issue, always create a new branch from an updated main branch
29
29
10.**Branch Names** - Always use the conventional commit `type` from the issue title as the first prefix, and the `scope` as the second, then a very short description, example `feat/ci/integration-tests`
30
30
11.**Check branch status before pushing** - ALWAYS verify the remote tracking branch still exists before pushing. If a PR was merged/deleted, create a new branch from main instead of trying to push to the old one.
@@ -35,7 +35,20 @@ Guidance for Claude Code when working with the dtvem codebase.
35
35
36
36
## Quick Reference
37
37
38
-
### Build Commands
38
+
### Task Runner (rnr)
39
+
40
+
```bash
41
+
./rnr --list # List all available tasks
42
+
./rnr check # Format, lint, and test
43
+
./rnr build # Build both CLI and shim
44
+
./rnr test# Run tests
45
+
./rnr format # Format code
46
+
./rnr lint # Run linter
47
+
./rnr clean # Remove build artifacts
48
+
./rnr deploy-local # Build and deploy to local installation
Looking for something to work on? Check out [good first issues](https://github.com/CodingWithCalvin/dtvem.cli/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
0 commit comments