@cregis-dev/cckit 0.6.6 → 0.6.8

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.
Files changed (54) hide show
  1. package/LICENSE +21 -21
  2. package/bin/cckit.js +3 -3
  3. package/package.json +53 -53
  4. package/registry.json +145 -145
  5. package/src/cli.js +79 -79
  6. package/src/commands/init.js +174 -174
  7. package/src/commands/status.js +125 -125
  8. package/src/commands/update.js +192 -192
  9. package/src/core/config.js +82 -75
  10. package/src/core/orchestrator.js +79 -79
  11. package/src/core/registry.js +60 -60
  12. package/src/steps/add-plugin.js +148 -116
  13. package/src/steps/configure-user.js +181 -181
  14. package/src/steps/enable-plugins.js +97 -97
  15. package/src/steps/install-bmad.js +85 -85
  16. package/src/steps/install-mcp.js +70 -70
  17. package/src/steps/install-rules.js +69 -69
  18. package/src/steps/install-skills.js +56 -56
  19. package/src/utils/compare-versions.js +106 -106
  20. package/src/utils/fs.js +33 -33
  21. package/src/utils/logger.js +16 -16
  22. package/src/utils/manifest.js +101 -101
  23. package/src/utils/prompt.js +41 -41
  24. package/templates/mcp/claude-code/.mcp.json +40 -40
  25. package/templates/rules/README.md +103 -103
  26. package/templates/rules/common/agents.md +49 -49
  27. package/templates/rules/common/coding-style.md +48 -48
  28. package/templates/rules/common/development-workflow.md +37 -37
  29. package/templates/rules/common/git-workflow.md +24 -24
  30. package/templates/rules/common/hooks.md +30 -30
  31. package/templates/rules/common/patterns.md +31 -31
  32. package/templates/rules/common/performance.md +55 -55
  33. package/templates/rules/common/security.md +29 -29
  34. package/templates/rules/common/testing.md +29 -29
  35. package/templates/rules/golang/coding-style.md +32 -32
  36. package/templates/rules/golang/hooks.md +17 -17
  37. package/templates/rules/golang/patterns.md +45 -45
  38. package/templates/rules/golang/security.md +34 -34
  39. package/templates/rules/golang/testing.md +31 -31
  40. package/templates/rules/python/coding-style.md +42 -42
  41. package/templates/rules/python/hooks.md +19 -19
  42. package/templates/rules/python/patterns.md +39 -39
  43. package/templates/rules/python/security.md +30 -30
  44. package/templates/rules/python/testing.md +38 -38
  45. package/templates/rules/swift/coding-style.md +47 -47
  46. package/templates/rules/swift/hooks.md +20 -20
  47. package/templates/rules/swift/patterns.md +66 -66
  48. package/templates/rules/swift/security.md +33 -33
  49. package/templates/rules/swift/testing.md +45 -45
  50. package/templates/rules/typescript/coding-style.md +65 -65
  51. package/templates/rules/typescript/hooks.md +22 -22
  52. package/templates/rules/typescript/patterns.md +52 -52
  53. package/templates/rules/typescript/security.md +28 -28
  54. package/templates/rules/typescript/testing.md +18 -18
@@ -1,30 +1,30 @@
1
- # Hooks System
2
-
3
- ## Hook Types
4
-
5
- - **PreToolUse**: Before tool execution (validation, parameter modification)
6
- - **PostToolUse**: After tool execution (auto-format, checks)
7
- - **Stop**: When session ends (final verification)
8
-
9
- ## Auto-Accept Permissions
10
-
11
- Use with caution:
12
- - Enable for trusted, well-defined plans
13
- - Disable for exploratory work
14
- - Never use dangerously-skip-permissions flag
15
- - Configure `allowedTools` in `~/.claude.json` instead
16
-
17
- ## TodoWrite Best Practices
18
-
19
- Use TodoWrite tool to:
20
- - Track progress on multi-step tasks
21
- - Verify understanding of instructions
22
- - Enable real-time steering
23
- - Show granular implementation steps
24
-
25
- Todo list reveals:
26
- - Out of order steps
27
- - Missing items
28
- - Extra unnecessary items
29
- - Wrong granularity
30
- - Misinterpreted requirements
1
+ # Hooks System
2
+
3
+ ## Hook Types
4
+
5
+ - **PreToolUse**: Before tool execution (validation, parameter modification)
6
+ - **PostToolUse**: After tool execution (auto-format, checks)
7
+ - **Stop**: When session ends (final verification)
8
+
9
+ ## Auto-Accept Permissions
10
+
11
+ Use with caution:
12
+ - Enable for trusted, well-defined plans
13
+ - Disable for exploratory work
14
+ - Never use dangerously-skip-permissions flag
15
+ - Configure `allowedTools` in `~/.claude.json` instead
16
+
17
+ ## TodoWrite Best Practices
18
+
19
+ Use TodoWrite tool to:
20
+ - Track progress on multi-step tasks
21
+ - Verify understanding of instructions
22
+ - Enable real-time steering
23
+ - Show granular implementation steps
24
+
25
+ Todo list reveals:
26
+ - Out of order steps
27
+ - Missing items
28
+ - Extra unnecessary items
29
+ - Wrong granularity
30
+ - Misinterpreted requirements
@@ -1,31 +1,31 @@
1
- # Common Patterns
2
-
3
- ## Skeleton Projects
4
-
5
- When implementing new functionality:
6
- 1. Search for battle-tested skeleton projects
7
- 2. Use parallel agents to evaluate options:
8
- - Security assessment
9
- - Extensibility analysis
10
- - Relevance scoring
11
- - Implementation planning
12
- 3. Clone best match as foundation
13
- 4. Iterate within proven structure
14
-
15
- ## Design Patterns
16
-
17
- ### Repository Pattern
18
-
19
- Encapsulate data access behind a consistent interface:
20
- - Define standard operations: findAll, findById, create, update, delete
21
- - Concrete implementations handle storage details (database, API, file, etc.)
22
- - Business logic depends on the abstract interface, not the storage mechanism
23
- - Enables easy swapping of data sources and simplifies testing with mocks
24
-
25
- ### API Response Format
26
-
27
- Use a consistent envelope for all API responses:
28
- - Include a success/status indicator
29
- - Include the data payload (nullable on error)
30
- - Include an error message field (nullable on success)
31
- - Include metadata for paginated responses (total, page, limit)
1
+ # Common Patterns
2
+
3
+ ## Skeleton Projects
4
+
5
+ When implementing new functionality:
6
+ 1. Search for battle-tested skeleton projects
7
+ 2. Use parallel agents to evaluate options:
8
+ - Security assessment
9
+ - Extensibility analysis
10
+ - Relevance scoring
11
+ - Implementation planning
12
+ 3. Clone best match as foundation
13
+ 4. Iterate within proven structure
14
+
15
+ ## Design Patterns
16
+
17
+ ### Repository Pattern
18
+
19
+ Encapsulate data access behind a consistent interface:
20
+ - Define standard operations: findAll, findById, create, update, delete
21
+ - Concrete implementations handle storage details (database, API, file, etc.)
22
+ - Business logic depends on the abstract interface, not the storage mechanism
23
+ - Enables easy swapping of data sources and simplifies testing with mocks
24
+
25
+ ### API Response Format
26
+
27
+ Use a consistent envelope for all API responses:
28
+ - Include a success/status indicator
29
+ - Include the data payload (nullable on error)
30
+ - Include an error message field (nullable on success)
31
+ - Include metadata for paginated responses (total, page, limit)
@@ -1,55 +1,55 @@
1
- # Performance Optimization
2
-
3
- ## Model Selection Strategy
4
-
5
- **Haiku 4.5** (90% of Sonnet capability, 3x cost savings):
6
- - Lightweight agents with frequent invocation
7
- - Pair programming and code generation
8
- - Worker agents in multi-agent systems
9
-
10
- **Sonnet 4.6** (Best coding model):
11
- - Main development work
12
- - Orchestrating multi-agent workflows
13
- - Complex coding tasks
14
-
15
- **Opus 4.5** (Deepest reasoning):
16
- - Complex architectural decisions
17
- - Maximum reasoning requirements
18
- - Research and analysis tasks
19
-
20
- ## Context Window Management
21
-
22
- Avoid last 20% of context window for:
23
- - Large-scale refactoring
24
- - Feature implementation spanning multiple files
25
- - Debugging complex interactions
26
-
27
- Lower context sensitivity tasks:
28
- - Single-file edits
29
- - Independent utility creation
30
- - Documentation updates
31
- - Simple bug fixes
32
-
33
- ## Extended Thinking + Plan Mode
34
-
35
- Extended thinking is enabled by default, reserving up to 31,999 tokens for internal reasoning.
36
-
37
- Control extended thinking via:
38
- - **Toggle**: Option+T (macOS) / Alt+T (Windows/Linux)
39
- - **Config**: Set `alwaysThinkingEnabled` in `~/.claude/settings.json`
40
- - **Budget cap**: `export MAX_THINKING_TOKENS=10000`
41
- - **Verbose mode**: Ctrl+O to see thinking output
42
-
43
- For complex tasks requiring deep reasoning:
44
- 1. Ensure extended thinking is enabled (on by default)
45
- 2. Enable **Plan Mode** for structured approach
46
- 3. Use multiple critique rounds for thorough analysis
47
- 4. Use split role sub-agents for diverse perspectives
48
-
49
- ## Build Troubleshooting
50
-
51
- If build fails:
52
- 1. Use **build-error-resolver** agent
53
- 2. Analyze error messages
54
- 3. Fix incrementally
55
- 4. Verify after each fix
1
+ # Performance Optimization
2
+
3
+ ## Model Selection Strategy
4
+
5
+ **Haiku 4.5** (90% of Sonnet capability, 3x cost savings):
6
+ - Lightweight agents with frequent invocation
7
+ - Pair programming and code generation
8
+ - Worker agents in multi-agent systems
9
+
10
+ **Sonnet 4.6** (Best coding model):
11
+ - Main development work
12
+ - Orchestrating multi-agent workflows
13
+ - Complex coding tasks
14
+
15
+ **Opus 4.5** (Deepest reasoning):
16
+ - Complex architectural decisions
17
+ - Maximum reasoning requirements
18
+ - Research and analysis tasks
19
+
20
+ ## Context Window Management
21
+
22
+ Avoid last 20% of context window for:
23
+ - Large-scale refactoring
24
+ - Feature implementation spanning multiple files
25
+ - Debugging complex interactions
26
+
27
+ Lower context sensitivity tasks:
28
+ - Single-file edits
29
+ - Independent utility creation
30
+ - Documentation updates
31
+ - Simple bug fixes
32
+
33
+ ## Extended Thinking + Plan Mode
34
+
35
+ Extended thinking is enabled by default, reserving up to 31,999 tokens for internal reasoning.
36
+
37
+ Control extended thinking via:
38
+ - **Toggle**: Option+T (macOS) / Alt+T (Windows/Linux)
39
+ - **Config**: Set `alwaysThinkingEnabled` in `~/.claude/settings.json`
40
+ - **Budget cap**: `export MAX_THINKING_TOKENS=10000`
41
+ - **Verbose mode**: Ctrl+O to see thinking output
42
+
43
+ For complex tasks requiring deep reasoning:
44
+ 1. Ensure extended thinking is enabled (on by default)
45
+ 2. Enable **Plan Mode** for structured approach
46
+ 3. Use multiple critique rounds for thorough analysis
47
+ 4. Use split role sub-agents for diverse perspectives
48
+
49
+ ## Build Troubleshooting
50
+
51
+ If build fails:
52
+ 1. Use **build-error-resolver** agent
53
+ 2. Analyze error messages
54
+ 3. Fix incrementally
55
+ 4. Verify after each fix
@@ -1,29 +1,29 @@
1
- # Security Guidelines
2
-
3
- ## Mandatory Security Checks
4
-
5
- Before ANY commit:
6
- - [ ] No hardcoded secrets (API keys, passwords, tokens)
7
- - [ ] All user inputs validated
8
- - [ ] SQL injection prevention (parameterized queries)
9
- - [ ] XSS prevention (sanitized HTML)
10
- - [ ] CSRF protection enabled
11
- - [ ] Authentication/authorization verified
12
- - [ ] Rate limiting on all endpoints
13
- - [ ] Error messages don't leak sensitive data
14
-
15
- ## Secret Management
16
-
17
- - NEVER hardcode secrets in source code
18
- - ALWAYS use environment variables or a secret manager
19
- - Validate that required secrets are present at startup
20
- - Rotate any secrets that may have been exposed
21
-
22
- ## Security Response Protocol
23
-
24
- If security issue found:
25
- 1. STOP immediately
26
- 2. Use **security-reviewer** agent
27
- 3. Fix CRITICAL issues before continuing
28
- 4. Rotate any exposed secrets
29
- 5. Review entire codebase for similar issues
1
+ # Security Guidelines
2
+
3
+ ## Mandatory Security Checks
4
+
5
+ Before ANY commit:
6
+ - [ ] No hardcoded secrets (API keys, passwords, tokens)
7
+ - [ ] All user inputs validated
8
+ - [ ] SQL injection prevention (parameterized queries)
9
+ - [ ] XSS prevention (sanitized HTML)
10
+ - [ ] CSRF protection enabled
11
+ - [ ] Authentication/authorization verified
12
+ - [ ] Rate limiting on all endpoints
13
+ - [ ] Error messages don't leak sensitive data
14
+
15
+ ## Secret Management
16
+
17
+ - NEVER hardcode secrets in source code
18
+ - ALWAYS use environment variables or a secret manager
19
+ - Validate that required secrets are present at startup
20
+ - Rotate any secrets that may have been exposed
21
+
22
+ ## Security Response Protocol
23
+
24
+ If security issue found:
25
+ 1. STOP immediately
26
+ 2. Use **security-reviewer** agent
27
+ 3. Fix CRITICAL issues before continuing
28
+ 4. Rotate any exposed secrets
29
+ 5. Review entire codebase for similar issues
@@ -1,29 +1,29 @@
1
- # Testing Requirements
2
-
3
- ## Minimum Test Coverage: 80%
4
-
5
- Test Types (ALL required):
6
- 1. **Unit Tests** - Individual functions, utilities, components
7
- 2. **Integration Tests** - API endpoints, database operations
8
- 3. **E2E Tests** - Critical user flows (framework chosen per language)
9
-
10
- ## Test-Driven Development
11
-
12
- MANDATORY workflow:
13
- 1. Write test first (RED)
14
- 2. Run test - it should FAIL
15
- 3. Write minimal implementation (GREEN)
16
- 4. Run test - it should PASS
17
- 5. Refactor (IMPROVE)
18
- 6. Verify coverage (80%+)
19
-
20
- ## Troubleshooting Test Failures
21
-
22
- 1. Use **tdd-guide** agent
23
- 2. Check test isolation
24
- 3. Verify mocks are correct
25
- 4. Fix implementation, not tests (unless tests are wrong)
26
-
27
- ## Agent Support
28
-
29
- - **tdd-guide** - Use PROACTIVELY for new features, enforces write-tests-first
1
+ # Testing Requirements
2
+
3
+ ## Minimum Test Coverage: 80%
4
+
5
+ Test Types (ALL required):
6
+ 1. **Unit Tests** - Individual functions, utilities, components
7
+ 2. **Integration Tests** - API endpoints, database operations
8
+ 3. **E2E Tests** - Critical user flows (framework chosen per language)
9
+
10
+ ## Test-Driven Development
11
+
12
+ MANDATORY workflow:
13
+ 1. Write test first (RED)
14
+ 2. Run test - it should FAIL
15
+ 3. Write minimal implementation (GREEN)
16
+ 4. Run test - it should PASS
17
+ 5. Refactor (IMPROVE)
18
+ 6. Verify coverage (80%+)
19
+
20
+ ## Troubleshooting Test Failures
21
+
22
+ 1. Use **tdd-guide** agent
23
+ 2. Check test isolation
24
+ 3. Verify mocks are correct
25
+ 4. Fix implementation, not tests (unless tests are wrong)
26
+
27
+ ## Agent Support
28
+
29
+ - **tdd-guide** - Use PROACTIVELY for new features, enforces write-tests-first
@@ -1,32 +1,32 @@
1
- ---
2
- paths:
3
- - "**/*.go"
4
- - "**/go.mod"
5
- - "**/go.sum"
6
- ---
7
- # Go Coding Style
8
-
9
- > This file extends [common/coding-style.md](../common/coding-style.md) with Go specific content.
10
-
11
- ## Formatting
12
-
13
- - **gofmt** and **goimports** are mandatory — no style debates
14
-
15
- ## Design Principles
16
-
17
- - Accept interfaces, return structs
18
- - Keep interfaces small (1-3 methods)
19
-
20
- ## Error Handling
21
-
22
- Always wrap errors with context:
23
-
24
- ```go
25
- if err != nil {
26
- return fmt.Errorf("failed to create user: %w", err)
27
- }
28
- ```
29
-
30
- ## Reference
31
-
32
- See skill: `golang-patterns` for comprehensive Go idioms and patterns.
1
+ ---
2
+ paths:
3
+ - "**/*.go"
4
+ - "**/go.mod"
5
+ - "**/go.sum"
6
+ ---
7
+ # Go Coding Style
8
+
9
+ > This file extends [common/coding-style.md](../common/coding-style.md) with Go specific content.
10
+
11
+ ## Formatting
12
+
13
+ - **gofmt** and **goimports** are mandatory — no style debates
14
+
15
+ ## Design Principles
16
+
17
+ - Accept interfaces, return structs
18
+ - Keep interfaces small (1-3 methods)
19
+
20
+ ## Error Handling
21
+
22
+ Always wrap errors with context:
23
+
24
+ ```go
25
+ if err != nil {
26
+ return fmt.Errorf("failed to create user: %w", err)
27
+ }
28
+ ```
29
+
30
+ ## Reference
31
+
32
+ See skill: `golang-patterns` for comprehensive Go idioms and patterns.
@@ -1,17 +1,17 @@
1
- ---
2
- paths:
3
- - "**/*.go"
4
- - "**/go.mod"
5
- - "**/go.sum"
6
- ---
7
- # Go Hooks
8
-
9
- > This file extends [common/hooks.md](../common/hooks.md) with Go specific content.
10
-
11
- ## PostToolUse Hooks
12
-
13
- Configure in `~/.claude/settings.json`:
14
-
15
- - **gofmt/goimports**: Auto-format `.go` files after edit
16
- - **go vet**: Run static analysis after editing `.go` files
17
- - **staticcheck**: Run extended static checks on modified packages
1
+ ---
2
+ paths:
3
+ - "**/*.go"
4
+ - "**/go.mod"
5
+ - "**/go.sum"
6
+ ---
7
+ # Go Hooks
8
+
9
+ > This file extends [common/hooks.md](../common/hooks.md) with Go specific content.
10
+
11
+ ## PostToolUse Hooks
12
+
13
+ Configure in `~/.claude/settings.json`:
14
+
15
+ - **gofmt/goimports**: Auto-format `.go` files after edit
16
+ - **go vet**: Run static analysis after editing `.go` files
17
+ - **staticcheck**: Run extended static checks on modified packages
@@ -1,45 +1,45 @@
1
- ---
2
- paths:
3
- - "**/*.go"
4
- - "**/go.mod"
5
- - "**/go.sum"
6
- ---
7
- # Go Patterns
8
-
9
- > This file extends [common/patterns.md](../common/patterns.md) with Go specific content.
10
-
11
- ## Functional Options
12
-
13
- ```go
14
- type Option func(*Server)
15
-
16
- func WithPort(port int) Option {
17
- return func(s *Server) { s.port = port }
18
- }
19
-
20
- func NewServer(opts ...Option) *Server {
21
- s := &Server{port: 8080}
22
- for _, opt := range opts {
23
- opt(s)
24
- }
25
- return s
26
- }
27
- ```
28
-
29
- ## Small Interfaces
30
-
31
- Define interfaces where they are used, not where they are implemented.
32
-
33
- ## Dependency Injection
34
-
35
- Use constructor functions to inject dependencies:
36
-
37
- ```go
38
- func NewUserService(repo UserRepository, logger Logger) *UserService {
39
- return &UserService{repo: repo, logger: logger}
40
- }
41
- ```
42
-
43
- ## Reference
44
-
45
- See skill: `golang-patterns` for comprehensive Go patterns including concurrency, error handling, and package organization.
1
+ ---
2
+ paths:
3
+ - "**/*.go"
4
+ - "**/go.mod"
5
+ - "**/go.sum"
6
+ ---
7
+ # Go Patterns
8
+
9
+ > This file extends [common/patterns.md](../common/patterns.md) with Go specific content.
10
+
11
+ ## Functional Options
12
+
13
+ ```go
14
+ type Option func(*Server)
15
+
16
+ func WithPort(port int) Option {
17
+ return func(s *Server) { s.port = port }
18
+ }
19
+
20
+ func NewServer(opts ...Option) *Server {
21
+ s := &Server{port: 8080}
22
+ for _, opt := range opts {
23
+ opt(s)
24
+ }
25
+ return s
26
+ }
27
+ ```
28
+
29
+ ## Small Interfaces
30
+
31
+ Define interfaces where they are used, not where they are implemented.
32
+
33
+ ## Dependency Injection
34
+
35
+ Use constructor functions to inject dependencies:
36
+
37
+ ```go
38
+ func NewUserService(repo UserRepository, logger Logger) *UserService {
39
+ return &UserService{repo: repo, logger: logger}
40
+ }
41
+ ```
42
+
43
+ ## Reference
44
+
45
+ See skill: `golang-patterns` for comprehensive Go patterns including concurrency, error handling, and package organization.
@@ -1,34 +1,34 @@
1
- ---
2
- paths:
3
- - "**/*.go"
4
- - "**/go.mod"
5
- - "**/go.sum"
6
- ---
7
- # Go Security
8
-
9
- > This file extends [common/security.md](../common/security.md) with Go specific content.
10
-
11
- ## Secret Management
12
-
13
- ```go
14
- apiKey := os.Getenv("OPENAI_API_KEY")
15
- if apiKey == "" {
16
- log.Fatal("OPENAI_API_KEY not configured")
17
- }
18
- ```
19
-
20
- ## Security Scanning
21
-
22
- - Use **gosec** for static security analysis:
23
- ```bash
24
- gosec ./...
25
- ```
26
-
27
- ## Context & Timeouts
28
-
29
- Always use `context.Context` for timeout control:
30
-
31
- ```go
32
- ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
33
- defer cancel()
34
- ```
1
+ ---
2
+ paths:
3
+ - "**/*.go"
4
+ - "**/go.mod"
5
+ - "**/go.sum"
6
+ ---
7
+ # Go Security
8
+
9
+ > This file extends [common/security.md](../common/security.md) with Go specific content.
10
+
11
+ ## Secret Management
12
+
13
+ ```go
14
+ apiKey := os.Getenv("OPENAI_API_KEY")
15
+ if apiKey == "" {
16
+ log.Fatal("OPENAI_API_KEY not configured")
17
+ }
18
+ ```
19
+
20
+ ## Security Scanning
21
+
22
+ - Use **gosec** for static security analysis:
23
+ ```bash
24
+ gosec ./...
25
+ ```
26
+
27
+ ## Context & Timeouts
28
+
29
+ Always use `context.Context` for timeout control:
30
+
31
+ ```go
32
+ ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
33
+ defer cancel()
34
+ ```
@@ -1,31 +1,31 @@
1
- ---
2
- paths:
3
- - "**/*.go"
4
- - "**/go.mod"
5
- - "**/go.sum"
6
- ---
7
- # Go Testing
8
-
9
- > This file extends [common/testing.md](../common/testing.md) with Go specific content.
10
-
11
- ## Framework
12
-
13
- Use the standard `go test` with **table-driven tests**.
14
-
15
- ## Race Detection
16
-
17
- Always run with the `-race` flag:
18
-
19
- ```bash
20
- go test -race ./...
21
- ```
22
-
23
- ## Coverage
24
-
25
- ```bash
26
- go test -cover ./...
27
- ```
28
-
29
- ## Reference
30
-
31
- See skill: `golang-testing` for detailed Go testing patterns and helpers.
1
+ ---
2
+ paths:
3
+ - "**/*.go"
4
+ - "**/go.mod"
5
+ - "**/go.sum"
6
+ ---
7
+ # Go Testing
8
+
9
+ > This file extends [common/testing.md](../common/testing.md) with Go specific content.
10
+
11
+ ## Framework
12
+
13
+ Use the standard `go test` with **table-driven tests**.
14
+
15
+ ## Race Detection
16
+
17
+ Always run with the `-race` flag:
18
+
19
+ ```bash
20
+ go test -race ./...
21
+ ```
22
+
23
+ ## Coverage
24
+
25
+ ```bash
26
+ go test -cover ./...
27
+ ```
28
+
29
+ ## Reference
30
+
31
+ See skill: `golang-testing` for detailed Go testing patterns and helpers.