wormclaude 1.0.11 β†’ 1.0.13

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 (45) hide show
  1. package/dist/cli.js +12 -1
  2. package/dist/extensions.js +137 -0
  3. package/dist/skills.js +17 -9
  4. package/dist/theme.js +1 -1
  5. package/dist/tools.js +21 -10
  6. package/extensions/code-review/README.md +22 -0
  7. package/extensions/code-review/commands/review/best-practices.toml +15 -0
  8. package/extensions/code-review/commands/review/performance.toml +14 -0
  9. package/extensions/code-review/commands/review/security.toml +16 -0
  10. package/extensions/code-review/wormclaude-extension.json +6 -0
  11. package/extensions/conductor/README.md +250 -0
  12. package/extensions/conductor/commands/conductor/implement.toml +15 -0
  13. package/extensions/conductor/commands/conductor/newTrack.toml +16 -0
  14. package/extensions/conductor/commands/conductor/revert.toml +14 -0
  15. package/extensions/conductor/commands/conductor/setup.toml +16 -0
  16. package/extensions/conductor/commands/conductor/status.toml +15 -0
  17. package/extensions/conductor/templates/.wormclaudeignore +37 -0
  18. package/extensions/conductor/templates/code_styleguides/go.md +48 -0
  19. package/extensions/conductor/templates/code_styleguides/html-css.md +49 -0
  20. package/extensions/conductor/templates/code_styleguides/javascript.md +51 -0
  21. package/extensions/conductor/templates/code_styleguides/python.md +37 -0
  22. package/extensions/conductor/templates/code_styleguides/typescript.md +43 -0
  23. package/extensions/conductor/templates/general.md +23 -0
  24. package/extensions/conductor/templates/plan.md +18 -0
  25. package/extensions/conductor/templates/product-guidelines.md +25 -0
  26. package/extensions/conductor/templates/product.md +21 -0
  27. package/extensions/conductor/templates/tech-stack.md +25 -0
  28. package/extensions/conductor/templates/workflow.md +138 -0
  29. package/extensions/conductor/wormclaude-extension.json +6 -0
  30. package/extensions/git-helper/README.md +16 -0
  31. package/extensions/git-helper/commands/git/branch-cleanup.toml +13 -0
  32. package/extensions/git-helper/commands/git/smart-commit.toml +13 -0
  33. package/extensions/git-helper/wormclaude-extension.json +6 -0
  34. package/extensions/greet/README.md +76 -0
  35. package/extensions/greet/commands/greet.toml +4 -0
  36. package/extensions/greet/wormclaude-extension.json +6 -0
  37. package/extensions/registry.json +52 -0
  38. package/extensions/test-generator/README.md +22 -0
  39. package/extensions/test-generator/commands/test/coverage.toml +12 -0
  40. package/extensions/test-generator/commands/test/integration.toml +13 -0
  41. package/extensions/test-generator/commands/test/unit.toml +13 -0
  42. package/extensions/test-generator/wormclaude-extension.json +6 -0
  43. package/package.json +3 -2
  44. package/skills/security-audit/{prompt.md β†’ SKILL.md} +8 -0
  45. package/skills/security-audit/skill.json +0 -8
@@ -0,0 +1,76 @@
1
+ # Greet Extension
2
+
3
+ A simple greeting extension that demonstrates how to create on-demand extensions for WormClaude CLI.
4
+
5
+ ## Description
6
+
7
+ This extension adds a friendly greeting command that says hello to users. It's a minimal example showing the basic structure of an on-demand extension.
8
+
9
+ ## Commands
10
+
11
+ - `/greet` - Displays a friendly greeting message
12
+
13
+ ## Installation
14
+
15
+ ### Via Browse Extensions Dialog (Recommended)
16
+
17
+ ```bash
18
+ # In the CLI
19
+ /browse-extensions
20
+ # Navigate to "greet" and press Enter or 'i' to install
21
+ ```
22
+
23
+ ### Via Command Line
24
+
25
+ ```bash
26
+ wormclaude extensions install --from-registry greet
27
+ ```
28
+
29
+ After installation, restart the CLI to use the extension.
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ # Start the CLI
35
+ wormclaude
36
+
37
+ # Use the greet command
38
+ /greet
39
+ ```
40
+
41
+ The command will display a friendly greeting message.
42
+
43
+ ## Example Output
44
+
45
+ ```
46
+ πŸ‘‹ Hello! Welcome to WormClaude CLI!
47
+
48
+ I'm here to help you with your development tasks.
49
+ Have a great day! 🌟
50
+ ```
51
+
52
+ ## Extension Details
53
+
54
+ - **Name**: greet
55
+ - **Version**: 1.0.0
56
+ - **Category**: fun
57
+ - **Author**: WormClaude Team
58
+
59
+ ## Purpose
60
+
61
+ This extension serves as:
62
+ 1. A simple example for developers learning to create extensions
63
+ 2. A friendly welcome message for new users
64
+ 3. A demonstration of the on-demand extension system
65
+
66
+ ## Contributing
67
+
68
+ Feel free to enhance this extension by:
69
+ - Adding personalized greetings
70
+ - Including time-based greetings (morning, afternoon, evening)
71
+ - Adding multi-language support
72
+ - Including motivational quotes
73
+
74
+ ## License
75
+
76
+ Same as WormClaude CLI
@@ -0,0 +1,4 @@
1
+ description = "Display a friendly greeting"
2
+ prompt = """
3
+ Greet the user warmly as WormClaude CLI. Say hello, mention you can help with coding and security tasks, and wish them a productive session. Keep it to 2-3 short lines. Reply in the user's language.
4
+ """
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "greet",
3
+ "version": "1.0.0",
4
+ "description": "A simple greeting command β€” minimal example extension.",
5
+ "contextFileName": "README.md"
6
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "extensions": [
3
+ {
4
+ "name": "conductor",
5
+ "version": "1.0.0",
6
+ "description": "Context-Driven Development: spec-driven planning, TDD workflow, and execution tracking.",
7
+ "category": "productivity",
8
+ "author": "WormClaude Team",
9
+ "path": "./conductor"
10
+ },
11
+ {
12
+ "name": "git-helper",
13
+ "version": "1.0.0",
14
+ "description": "Git workflow automation: smart conventional commits and branch cleanup.",
15
+ "category": "productivity",
16
+ "author": "WormClaude Team",
17
+ "path": "./git-helper"
18
+ },
19
+ {
20
+ "name": "code-review",
21
+ "version": "1.0.0",
22
+ "description": "Automated code review: security, performance, and best-practices passes.",
23
+ "category": "quality",
24
+ "author": "WormClaude Team",
25
+ "path": "./code-review"
26
+ },
27
+ {
28
+ "name": "test-generator",
29
+ "version": "1.0.0",
30
+ "description": "Generate unit and integration tests and analyze coverage gaps.",
31
+ "category": "testing",
32
+ "author": "WormClaude Team",
33
+ "path": "./test-generator"
34
+ },
35
+ {
36
+ "name": "exclude-tools",
37
+ "version": "1.0.0",
38
+ "description": "Example extension that disables specific tools for a restricted environment.",
39
+ "category": "other",
40
+ "author": "WormClaude Team",
41
+ "path": "./exclude-tools"
42
+ },
43
+ {
44
+ "name": "greet",
45
+ "version": "1.0.0",
46
+ "description": "A simple greeting command β€” minimal example extension.",
47
+ "category": "fun",
48
+ "author": "WormClaude Team",
49
+ "path": "./greet"
50
+ }
51
+ ]
52
+ }
@@ -0,0 +1,22 @@
1
+ # Test Generator Extension
2
+
3
+ Automatically generate tests and analyze coverage for your code.
4
+
5
+ ## Commands
6
+
7
+ - `/test:unit` - Generate unit tests for the current file or a named function
8
+ - `/test:integration` - Generate integration tests for a flow, endpoint, or module boundary
9
+ - `/test:coverage` - Analyze coverage and generate tests for the biggest gaps
10
+
11
+ ## Installation
12
+
13
+ ```
14
+ wormclaude extensions install --from-registry test-generator
15
+ ```
16
+
17
+ Or use `/browse-extensions` in the CLI and select this extension.
18
+
19
+ ## Notes
20
+
21
+ - Tests are written to match the project's existing framework and conventions (Jest/Vitest/pytest/go test/JUnit…) β€” never assumed.
22
+ - Generated tests are real and runnable; the command runs them and fixes failures before reporting.
@@ -0,0 +1,12 @@
1
+ description = "Analyze test coverage and generate tests for the biggest gaps"
2
+ prompt = """
3
+ Analyze test coverage and close the most important gaps.
4
+
5
+ Steps:
6
+ 1. Find and run the project's coverage command (from README/manifest/config, e.g. `npm test -- --coverage`, `pytest --cov`, `go test -cover`). If there is no coverage tooling, say so and estimate gaps by reading the code and existing tests instead.
7
+ 2. Identify the least-covered, highest-risk areas β€” prioritize core logic, error handling, and edge cases over trivial getters/config.
8
+ 3. Propose a short, ranked list of the gaps worth covering and why.
9
+ 4. For the top gaps, generate real unit/integration tests following the project's framework and conventions (Write the files), then re-run tests/coverage and report the improvement.
10
+
11
+ Focus on meaningful coverage of real behavior β€” do not chase a coverage number with shallow tests.
12
+ """
@@ -0,0 +1,13 @@
1
+ description = "Generate integration tests for a flow, endpoint, or module boundary"
2
+ prompt = """
3
+ Generate integration tests for the flow or boundary the user names (e.g. an API endpoint, a service + its DB, a multi-component flow).
4
+
5
+ Steps:
6
+ 1. Map the flow: identify the entry point, the components/services involved, and the external systems (DB, queue, third-party API).
7
+ 2. Detect the project's integration-test setup (test framework, fixtures, test DB, HTTP client like Supertest/requests/httptest). Match existing patterns; never assume.
8
+ 3. Write tests that exercise the COMPLETE flow end-to-end, not units in isolation: real (or test-double) wiring, auth/authorization, DB transactions, and form/API submissions. Cover success and key failure scenarios.
9
+ 4. Set up and tear down test state properly (fixtures, transactions, cleanup) so tests are isolated and repeatable.
10
+ 5. Create the test file(s) with Write, run them, and confirm they pass.
11
+
12
+ If the project has no integration-test harness yet, scaffold a minimal one following the project's stack, and say what you added.
13
+ """
@@ -0,0 +1,13 @@
1
+ description = "Generate unit tests for the current file or a named function/path"
2
+ prompt = """
3
+ Generate unit tests for the target the user names (a file, function, or path). If none is named, ask which file to cover, then proceed.
4
+
5
+ Steps:
6
+ 1. Read the target code and understand its behavior, inputs, outputs, and side effects.
7
+ 2. Detect the project's test framework and conventions by examining existing test files, the package manifest, and config (Jest/Vitest/pytest/go test/JUnit…). NEVER assume β€” match what the project already uses, including file naming and folder location.
8
+ 3. Write tests that cover: the happy path, important edge cases, and failure/error paths. Mock external dependencies (network, DB, filesystem) as the project does.
9
+ 4. Create the test file with Write using the project's naming convention, then run the test command and confirm the new tests pass (fix them if they don't).
10
+ 5. Report which behaviors are now covered and any that still need attention.
11
+
12
+ Write real, runnable tests β€” not placeholders.
13
+ """
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "test-generator",
3
+ "version": "1.0.0",
4
+ "description": "Generate unit and integration tests and analyze coverage gaps.",
5
+ "contextFileName": "README.md"
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {
10
10
  "dev": "tsx src/cli.tsx",
11
- "build": "tsc && node scripts/copy-skills.mjs",
11
+ "build": "tsc && node scripts/copy-skills.mjs && node scripts/copy-extensions.mjs",
12
12
  "start": "node dist/cli.js",
13
13
  "prepublishOnly": "npm run build"
14
14
  },
@@ -28,6 +28,7 @@
28
28
  "files": [
29
29
  "dist",
30
30
  "skills",
31
+ "extensions",
31
32
  "README.md"
32
33
  ],
33
34
  "engines": {
@@ -1,3 +1,11 @@
1
+ ---
2
+ name: security-audit
3
+ description: Pentest ve kod guvenlik analizi
4
+ whenToUse: kod guvenligi, zafiyet taramasi veya pentest istendiginde
5
+ context: fork
6
+ autoInvoke: true
7
+ tools: Read,Grep,Bash
8
+ ---
1
9
  Bir kod tabaninda guvenlik denetimi (audit) yap. Yetkili bir inceleme baglamindasin; amac zafiyetleri bulup somut duzeltme onermek.
2
10
 
3
11
  Yontem:
@@ -1,8 +0,0 @@
1
- {
2
- "name": "security-audit",
3
- "description": "Pentest ve kod guvenlik analizi",
4
- "autoInvoke": true,
5
- "context": "fork",
6
- "tools": ["Read", "Grep", "Bash"],
7
- "whenToUse": "kod guvenligi, zafiyet taramasi veya pentest istendiginde"
8
- }