command-code 0.10.10 → 0.10.11

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 CHANGED
@@ -21,4 +21,27 @@ npm i -g command-code
21
21
  ```bash
22
22
  command-code <command> [options]
23
23
  ```
24
- For detailed usage instructions, please refer to the [documentation](https://commandcode.ai/docs/workflows).
24
+
25
+ For detailed usage instructions, please refer to the [documentation](https://commandcode.ai/docs).
26
+
27
+ ## Running Tests
28
+
29
+ ```bash
30
+ # Unit tests
31
+ pnpm test
32
+
33
+ # Integration tests (PTY-based terminal simulation)
34
+ pnpm build && pnpm test:integration
35
+
36
+ # All tests
37
+ pnpm test:all
38
+
39
+ # With verbose output
40
+ VERBOSE=true pnpm test:integration
41
+ ```
42
+
43
+ See `tests/integration/README.md` for integration test documentation.
44
+
45
+ ## Telemetry
46
+
47
+ Command Code uses OpenTelemetry for tracing. See `specs/telemetry.md` for architecture, developer access, and Axiom dashboard details.