wormclaude 1.0.12 → 1.0.14

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/cmdsec.js +306 -0
  3. package/dist/commands.js +26 -0
  4. package/dist/extensions.js +143 -0
  5. package/dist/injections.js +108 -0
  6. package/dist/theme.js +1 -1
  7. package/dist/tools.js +45 -4
  8. package/extensions/code-review/README.md +22 -0
  9. package/extensions/code-review/commands/review/best-practices.toml +15 -0
  10. package/extensions/code-review/commands/review/performance.toml +14 -0
  11. package/extensions/code-review/commands/review/security.toml +16 -0
  12. package/extensions/code-review/wormclaude-extension.json +6 -0
  13. package/extensions/conductor/README.md +250 -0
  14. package/extensions/conductor/commands/conductor/implement.toml +15 -0
  15. package/extensions/conductor/commands/conductor/newTrack.toml +16 -0
  16. package/extensions/conductor/commands/conductor/revert.toml +14 -0
  17. package/extensions/conductor/commands/conductor/setup.toml +16 -0
  18. package/extensions/conductor/commands/conductor/status.toml +15 -0
  19. package/extensions/conductor/templates/.wormclaudeignore +37 -0
  20. package/extensions/conductor/templates/code_styleguides/go.md +48 -0
  21. package/extensions/conductor/templates/code_styleguides/html-css.md +49 -0
  22. package/extensions/conductor/templates/code_styleguides/javascript.md +51 -0
  23. package/extensions/conductor/templates/code_styleguides/python.md +37 -0
  24. package/extensions/conductor/templates/code_styleguides/typescript.md +43 -0
  25. package/extensions/conductor/templates/general.md +23 -0
  26. package/extensions/conductor/templates/plan.md +18 -0
  27. package/extensions/conductor/templates/product-guidelines.md +25 -0
  28. package/extensions/conductor/templates/product.md +21 -0
  29. package/extensions/conductor/templates/tech-stack.md +25 -0
  30. package/extensions/conductor/templates/workflow.md +138 -0
  31. package/extensions/conductor/wormclaude-extension.json +6 -0
  32. package/extensions/git-helper/README.md +16 -0
  33. package/extensions/git-helper/commands/git/branch-cleanup.toml +13 -0
  34. package/extensions/git-helper/commands/git/smart-commit.toml +13 -0
  35. package/extensions/git-helper/wormclaude-extension.json +6 -0
  36. package/extensions/greet/README.md +76 -0
  37. package/extensions/greet/commands/greet.toml +4 -0
  38. package/extensions/greet/wormclaude-extension.json +6 -0
  39. package/extensions/registry.json +52 -0
  40. package/extensions/test-generator/README.md +22 -0
  41. package/extensions/test-generator/commands/test/coverage.toml +12 -0
  42. package/extensions/test-generator/commands/test/integration.toml +13 -0
  43. package/extensions/test-generator/commands/test/unit.toml +13 -0
  44. package/extensions/test-generator/wormclaude-extension.json +6 -0
  45. package/package.json +5 -2
@@ -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.12",
3
+ "version": "1.0.14",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,12 +8,14 @@
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
  },
15
15
  "dependencies": {
16
16
  "@modelcontextprotocol/sdk": "^1.29.0",
17
+ "@types/diff": "^7.0.2",
18
+ "diff": "^9.0.0",
17
19
  "ink": "^5.0.1",
18
20
  "ink-spinner": "^5.0.0",
19
21
  "ink-text-input": "^6.0.0",
@@ -28,6 +30,7 @@
28
30
  "files": [
29
31
  "dist",
30
32
  "skills",
33
+ "extensions",
31
34
  "README.md"
32
35
  ],
33
36
  "engines": {