@el-j/magic-helix-plugins 4.0.0-beta.2 → 4.0.0-beta.3

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 (120) hide show
  1. package/dist/architecture/codeowners.md +123 -0
  2. package/dist/architecture/monorepo.md +146 -0
  3. package/dist/architecture/nx.md +122 -0
  4. package/dist/architecture/turborepo.md +114 -0
  5. package/dist/ci/github-actions.md +268 -0
  6. package/dist/ci/gitlab-ci.md +330 -0
  7. package/dist/containers/docker-multistage.md +120 -0
  8. package/dist/containers/kubernetes-deploy.md +210 -0
  9. package/dist/cpp/index.cjs +79 -0
  10. package/dist/cpp/index.mjs +209 -0
  11. package/dist/csharp/index.cjs +2 -2
  12. package/dist/csharp/{index.js → index.mjs} +17 -11
  13. package/dist/csharp/templates/framework-aspnetcore.md +205 -0
  14. package/dist/csharp/templates/framework-blazor.md +271 -0
  15. package/dist/csharp/templates/lang-csharp.md +162 -0
  16. package/dist/devops/docker-compose.md +111 -0
  17. package/dist/devops/docker-dockerfile.md +94 -0
  18. package/dist/devops/github-actions.md +160 -0
  19. package/dist/devops/gitlab-ci.md +210 -0
  20. package/dist/generic/lang-typescript.md +57 -0
  21. package/dist/generic/state-redux.md +21 -0
  22. package/dist/generic/state-rxjs.md +6 -0
  23. package/dist/generic/style-mui.md +23 -0
  24. package/dist/generic/style-tailwind.md +76 -0
  25. package/dist/generic/test-cypress.md +21 -0
  26. package/dist/generic/test-jest.md +20 -0
  27. package/dist/generic/test-playwright.md +21 -0
  28. package/dist/generic/test-vitest.md +131 -0
  29. package/dist/go/index.cjs +3 -3
  30. package/dist/go/{index.js → index.mjs} +18 -15
  31. package/dist/go/templates/lang-go.md +571 -0
  32. package/dist/index.cjs +1 -1
  33. package/dist/index.mjs +24 -0
  34. package/dist/java/index.cjs +2 -2
  35. package/dist/java/{index.js → index.mjs} +25 -19
  36. package/dist/java/templates/build-gradle.md +102 -0
  37. package/dist/java/templates/build-maven.md +86 -0
  38. package/dist/java/templates/framework-spring-boot.md +179 -0
  39. package/dist/java/templates/lang-java.md +78 -0
  40. package/dist/java/templates/lang-kotlin.md +88 -0
  41. package/dist/meta/magic-helix-meta.md +213 -0
  42. package/dist/meta/meta-debug.md +459 -0
  43. package/dist/meta/meta-implement.md +450 -0
  44. package/dist/meta/meta-roadmap.md +265 -0
  45. package/dist/nodejs/templates/angular-core.md +19 -0
  46. package/dist/nodejs/templates/lang-typescript.md +57 -0
  47. package/dist/nodejs/templates/nestjs-core.md +7 -0
  48. package/dist/nodejs/templates/react-core.md +677 -0
  49. package/dist/nodejs/templates/react-zustand.md +7 -0
  50. package/dist/nodejs/templates/state-redux.md +21 -0
  51. package/dist/nodejs/templates/state-rxjs.md +6 -0
  52. package/dist/nodejs/templates/style-primevue.md +6 -0
  53. package/dist/nodejs/templates/style-quasar.md +22 -0
  54. package/dist/nodejs/templates/style-tailwind.md +76 -0
  55. package/dist/nodejs/templates/test-cypress.md +21 -0
  56. package/dist/nodejs/templates/test-jest.md +20 -0
  57. package/dist/nodejs/templates/test-playwright.md +21 -0
  58. package/dist/nodejs/templates/test-vitest.md +131 -0
  59. package/dist/nodejs/templates/vue-core.md +108 -0
  60. package/dist/nodejs/templates/vue-pinia.md +5 -0
  61. package/dist/patterns/architecture/clean-architecture.md +469 -0
  62. package/dist/patterns/architecture/dependency-injection.md +517 -0
  63. package/dist/patterns/architecture/domain-driven-design.md +621 -0
  64. package/dist/patterns/architecture/layered-architecture.md +382 -0
  65. package/dist/patterns/architecture/repository-pattern.md +408 -0
  66. package/dist/patterns/domain-expertise/nextjs-rules.md +115 -0
  67. package/dist/patterns/domain-expertise/react-patterns.md +181 -0
  68. package/dist/patterns/domain-expertise/server-components.md +212 -0
  69. package/dist/patterns/domain-expertise/shadcn-ui.md +52 -0
  70. package/dist/patterns/domain-expertise/tailwind-patterns.md +52 -0
  71. package/dist/patterns/environment/container-awareness.md +17 -0
  72. package/dist/patterns/environment/ide-features.md +17 -0
  73. package/dist/patterns/environment/os-commands.md +17 -0
  74. package/dist/patterns/organization/heading-hierarchy.md +103 -0
  75. package/dist/patterns/organization/sequential-workflows.md +102 -0
  76. package/dist/patterns/organization/xml-rule-groups.md +64 -0
  77. package/dist/patterns/reasoning/agent-loop.md +151 -0
  78. package/dist/patterns/reasoning/confirmation-gates.md +141 -0
  79. package/dist/patterns/reasoning/dependency-analysis.md +132 -0
  80. package/dist/patterns/reasoning/one-tool-per-iteration.md +152 -0
  81. package/dist/patterns/reasoning/preview-before-action.md +194 -0
  82. package/dist/patterns/reasoning/reflection-checkpoints.md +166 -0
  83. package/dist/patterns/reasoning/result-verification.md +157 -0
  84. package/dist/patterns/reasoning/subtask-breakdown.md +131 -0
  85. package/dist/patterns/reasoning/thinking-tags.md +100 -0
  86. package/dist/patterns/role-definition/capability-declarations.md +72 -0
  87. package/dist/patterns/role-definition/expert-identity.md +45 -0
  88. package/dist/patterns/role-definition/scope-boundaries.md +61 -0
  89. package/dist/patterns/safety/code-safety-rules.md +17 -0
  90. package/dist/patterns/safety/credential-handling.md +17 -0
  91. package/dist/patterns/safety/destructive-warnings.md +17 -0
  92. package/dist/patterns/safety/refusal-messages.md +17 -0
  93. package/dist/patterns/tone/adaptive-tone.md +17 -0
  94. package/dist/patterns/tone/concise-communication.md +17 -0
  95. package/dist/patterns/tone/forbidden-phrases.md +17 -0
  96. package/dist/patterns/tool-guidelines/function-schemas.md +143 -0
  97. package/dist/patterns/tool-guidelines/parameter-examples.md +137 -0
  98. package/dist/patterns/tool-guidelines/usage-policies.md +105 -0
  99. package/dist/php/index.cjs +2 -2
  100. package/dist/php/{index.js → index.mjs} +12 -6
  101. package/dist/php/templates/framework-laravel.md +112 -0
  102. package/dist/php/templates/lang-php.md +94 -0
  103. package/dist/python/index.cjs +4 -4
  104. package/dist/python/{index.js → index.mjs} +10 -7
  105. package/dist/python/templates/lang-python.md +508 -0
  106. package/dist/ruby/index.cjs +2 -2
  107. package/dist/ruby/{index.js → index.mjs} +16 -10
  108. package/dist/ruby/templates/framework-rails.md +309 -0
  109. package/dist/ruby/templates/framework-sinatra.md +227 -0
  110. package/dist/ruby/templates/lang-ruby.md +216 -0
  111. package/dist/rust/index.cjs +3 -3
  112. package/dist/rust/{index.js → index.mjs} +24 -18
  113. package/dist/rust/templates/lang-rust.md +89 -0
  114. package/dist/swift/index.cjs +32 -0
  115. package/dist/swift/index.mjs +112 -0
  116. package/dist/swift/templates/framework-vapor.md +352 -0
  117. package/dist/swift/templates/lang-swift.md +291 -0
  118. package/package.json +31 -21
  119. package/dist/index.js +0 -20
  120. /package/dist/nodejs/{index.js → index.mjs} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@el-j/magic-helix-plugins",
3
- "version": "4.0.0-beta.2",
3
+ "version": "4.0.0-beta.3",
4
4
  "description": "Official language detection plugins for MagicAgentHelix",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,49 +8,59 @@
8
8
  "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./dist/index.d.ts",
11
12
  "import": "./dist/index.mjs",
12
- "require": "./dist/index.cjs",
13
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/index.cjs"
14
14
  },
15
15
  "./nodejs": {
16
+ "types": "./dist/nodejs/index.d.ts",
16
17
  "import": "./dist/nodejs/index.mjs",
17
- "require": "./dist/nodejs/index.cjs",
18
- "types": "./dist/nodejs/index.d.ts"
18
+ "require": "./dist/nodejs/index.cjs"
19
19
  },
20
20
  "./go": {
21
+ "types": "./dist/go/index.d.ts",
21
22
  "import": "./dist/go/index.mjs",
22
- "require": "./dist/go/index.cjs",
23
- "types": "./dist/go/index.d.ts"
23
+ "require": "./dist/go/index.cjs"
24
24
  },
25
25
  "./python": {
26
+ "types": "./dist/python/index.d.ts",
26
27
  "import": "./dist/python/index.mjs",
27
- "require": "./dist/python/index.cjs",
28
- "types": "./dist/python/index.d.ts"
28
+ "require": "./dist/python/index.cjs"
29
29
  },
30
30
  "./rust": {
31
+ "types": "./dist/rust/index.d.ts",
31
32
  "import": "./dist/rust/index.mjs",
32
- "require": "./dist/rust/index.cjs",
33
- "types": "./dist/rust/index.d.ts"
33
+ "require": "./dist/rust/index.cjs"
34
34
  },
35
35
  "./java": {
36
+ "types": "./dist/java/index.d.ts",
36
37
  "import": "./dist/java/index.mjs",
37
- "require": "./dist/java/index.cjs",
38
- "types": "./dist/java/index.d.ts"
38
+ "require": "./dist/java/index.cjs"
39
39
  },
40
40
  "./ruby": {
41
+ "types": "./dist/ruby/index.d.ts",
41
42
  "import": "./dist/ruby/index.mjs",
42
- "require": "./dist/ruby/index.cjs",
43
- "types": "./dist/ruby/index.d.ts"
43
+ "require": "./dist/ruby/index.cjs"
44
44
  },
45
45
  "./php": {
46
+ "types": "./dist/php/index.d.ts",
46
47
  "import": "./dist/php/index.mjs",
47
- "require": "./dist/php/index.cjs",
48
- "types": "./dist/php/index.d.ts"
48
+ "require": "./dist/php/index.cjs"
49
49
  },
50
50
  "./csharp": {
51
+ "types": "./dist/csharp/index.d.ts",
51
52
  "import": "./dist/csharp/index.mjs",
52
- "require": "./dist/csharp/index.cjs",
53
- "types": "./dist/csharp/index.d.ts"
53
+ "require": "./dist/csharp/index.cjs"
54
+ },
55
+ "./cpp": {
56
+ "types": "./dist/cpp/index.d.ts",
57
+ "import": "./dist/cpp/index.mjs",
58
+ "require": "./dist/cpp/index.cjs"
59
+ },
60
+ "./swift": {
61
+ "types": "./dist/swift/index.d.ts",
62
+ "import": "./dist/swift/index.mjs",
63
+ "require": "./dist/swift/index.cjs"
54
64
  }
55
65
  },
56
66
  "files": [
@@ -58,8 +68,8 @@
58
68
  "README.md"
59
69
  ],
60
70
  "scripts": {
61
- "build": "npm run build:types && npm run build:bundle && npm run copy:templates",
62
- "build:types": "tsc --project tsconfig.json",
71
+ "build": "npm run build:bundle && npm run copy:templates",
72
+ "build:types": "tsc --project tsconfig.declarations.json --outDir dist",
63
73
  "build:bundle": "vite build",
64
74
  "copy:templates": "node scripts/copy-templates.js",
65
75
  "dev": "vite build --watch",
package/dist/index.js DELETED
@@ -1,20 +0,0 @@
1
- import { B as P } from "./BasePlugin-6wv0hYJ9.js";
2
- import { NodeJSPlugin as t } from "./nodejs/index.js";
3
- import { GoPlugin as n } from "./go/index.js";
4
- import { PythonPlugin as f } from "./python/index.js";
5
- import { RustPlugin as i } from "./rust/index.js";
6
- import { JavaPlugin as m } from "./java/index.js";
7
- import { RubyPlugin as a } from "./ruby/index.js";
8
- import { PHPPlugin as h } from "./php/index.js";
9
- import { CSharpPlugin as B } from "./csharp/index.js";
10
- export {
11
- P as BasePlugin,
12
- B as CSharpPlugin,
13
- n as GoPlugin,
14
- m as JavaPlugin,
15
- t as NodeJSPlugin,
16
- h as PHPPlugin,
17
- f as PythonPlugin,
18
- a as RubyPlugin,
19
- i as RustPlugin
20
- };
File without changes