@el-j/magic-helix-plugins 4.0.0-beta.1 → 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.
- package/dist/architecture/codeowners.md +123 -0
- package/dist/architecture/monorepo.md +146 -0
- package/dist/architecture/nx.md +122 -0
- package/dist/architecture/turborepo.md +114 -0
- package/dist/ci/github-actions.md +268 -0
- package/dist/ci/gitlab-ci.md +330 -0
- package/dist/containers/docker-multistage.md +120 -0
- package/dist/containers/kubernetes-deploy.md +210 -0
- package/dist/cpp/index.cjs +79 -0
- package/dist/cpp/index.mjs +209 -0
- package/dist/csharp/index.cjs +2 -2
- package/dist/csharp/{index.js → index.mjs} +17 -11
- package/dist/csharp/templates/framework-aspnetcore.md +205 -0
- package/dist/csharp/templates/framework-blazor.md +271 -0
- package/dist/csharp/templates/lang-csharp.md +162 -0
- package/dist/devops/docker-compose.md +111 -0
- package/dist/devops/docker-dockerfile.md +94 -0
- package/dist/devops/github-actions.md +160 -0
- package/dist/devops/gitlab-ci.md +210 -0
- package/dist/generic/lang-typescript.md +57 -0
- package/dist/generic/state-redux.md +21 -0
- package/dist/generic/state-rxjs.md +6 -0
- package/dist/generic/style-mui.md +23 -0
- package/dist/generic/style-tailwind.md +76 -0
- package/dist/generic/test-cypress.md +21 -0
- package/dist/generic/test-jest.md +20 -0
- package/dist/generic/test-playwright.md +21 -0
- package/dist/generic/test-vitest.md +131 -0
- package/dist/go/index.cjs +3 -3
- package/dist/go/{index.js → index.mjs} +18 -15
- package/dist/go/templates/lang-go.md +571 -0
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +24 -0
- package/dist/java/index.cjs +2 -2
- package/dist/java/{index.js → index.mjs} +25 -19
- package/dist/java/templates/build-gradle.md +102 -0
- package/dist/java/templates/build-maven.md +86 -0
- package/dist/java/templates/framework-spring-boot.md +179 -0
- package/dist/java/templates/lang-java.md +78 -0
- package/dist/java/templates/lang-kotlin.md +88 -0
- package/dist/meta/magic-helix-meta.md +213 -0
- package/dist/meta/meta-debug.md +459 -0
- package/dist/meta/meta-implement.md +450 -0
- package/dist/meta/meta-roadmap.md +265 -0
- package/dist/nodejs/templates/angular-core.md +19 -0
- package/dist/nodejs/templates/lang-typescript.md +57 -0
- package/dist/nodejs/templates/nestjs-core.md +7 -0
- package/dist/nodejs/templates/react-core.md +677 -0
- package/dist/nodejs/templates/react-zustand.md +7 -0
- package/dist/nodejs/templates/state-redux.md +21 -0
- package/dist/nodejs/templates/state-rxjs.md +6 -0
- package/dist/nodejs/templates/style-primevue.md +6 -0
- package/dist/nodejs/templates/style-quasar.md +22 -0
- package/dist/nodejs/templates/style-tailwind.md +76 -0
- package/dist/nodejs/templates/test-cypress.md +21 -0
- package/dist/nodejs/templates/test-jest.md +20 -0
- package/dist/nodejs/templates/test-playwright.md +21 -0
- package/dist/nodejs/templates/test-vitest.md +131 -0
- package/dist/nodejs/templates/vue-core.md +108 -0
- package/dist/nodejs/templates/vue-pinia.md +5 -0
- package/dist/patterns/architecture/clean-architecture.md +469 -0
- package/dist/patterns/architecture/dependency-injection.md +517 -0
- package/dist/patterns/architecture/domain-driven-design.md +621 -0
- package/dist/patterns/architecture/layered-architecture.md +382 -0
- package/dist/patterns/architecture/repository-pattern.md +408 -0
- package/dist/patterns/domain-expertise/nextjs-rules.md +115 -0
- package/dist/patterns/domain-expertise/react-patterns.md +181 -0
- package/dist/patterns/domain-expertise/server-components.md +212 -0
- package/dist/patterns/domain-expertise/shadcn-ui.md +52 -0
- package/dist/patterns/domain-expertise/tailwind-patterns.md +52 -0
- package/dist/patterns/environment/container-awareness.md +17 -0
- package/dist/patterns/environment/ide-features.md +17 -0
- package/dist/patterns/environment/os-commands.md +17 -0
- package/dist/patterns/organization/heading-hierarchy.md +103 -0
- package/dist/patterns/organization/sequential-workflows.md +102 -0
- package/dist/patterns/organization/xml-rule-groups.md +64 -0
- package/dist/patterns/reasoning/agent-loop.md +151 -0
- package/dist/patterns/reasoning/confirmation-gates.md +141 -0
- package/dist/patterns/reasoning/dependency-analysis.md +132 -0
- package/dist/patterns/reasoning/one-tool-per-iteration.md +152 -0
- package/dist/patterns/reasoning/preview-before-action.md +194 -0
- package/dist/patterns/reasoning/reflection-checkpoints.md +166 -0
- package/dist/patterns/reasoning/result-verification.md +157 -0
- package/dist/patterns/reasoning/subtask-breakdown.md +131 -0
- package/dist/patterns/reasoning/thinking-tags.md +100 -0
- package/dist/patterns/role-definition/capability-declarations.md +72 -0
- package/dist/patterns/role-definition/expert-identity.md +45 -0
- package/dist/patterns/role-definition/scope-boundaries.md +61 -0
- package/dist/patterns/safety/code-safety-rules.md +17 -0
- package/dist/patterns/safety/credential-handling.md +17 -0
- package/dist/patterns/safety/destructive-warnings.md +17 -0
- package/dist/patterns/safety/refusal-messages.md +17 -0
- package/dist/patterns/tone/adaptive-tone.md +17 -0
- package/dist/patterns/tone/concise-communication.md +17 -0
- package/dist/patterns/tone/forbidden-phrases.md +17 -0
- package/dist/patterns/tool-guidelines/function-schemas.md +143 -0
- package/dist/patterns/tool-guidelines/parameter-examples.md +137 -0
- package/dist/patterns/tool-guidelines/usage-policies.md +105 -0
- package/dist/php/index.cjs +2 -2
- package/dist/php/{index.js → index.mjs} +12 -6
- package/dist/php/templates/framework-laravel.md +112 -0
- package/dist/php/templates/lang-php.md +94 -0
- package/dist/python/index.cjs +4 -4
- package/dist/python/{index.js → index.mjs} +10 -7
- package/dist/python/templates/lang-python.md +508 -0
- package/dist/ruby/index.cjs +2 -2
- package/dist/ruby/{index.js → index.mjs} +16 -10
- package/dist/ruby/templates/framework-rails.md +309 -0
- package/dist/ruby/templates/framework-sinatra.md +227 -0
- package/dist/ruby/templates/lang-ruby.md +216 -0
- package/dist/rust/index.cjs +3 -3
- package/dist/rust/{index.js → index.mjs} +24 -18
- package/dist/rust/templates/lang-rust.md +89 -0
- package/dist/swift/index.cjs +32 -0
- package/dist/swift/index.mjs +112 -0
- package/dist/swift/templates/framework-vapor.md +352 -0
- package/dist/swift/templates/lang-swift.md +291 -0
- package/package.json +31 -21
- package/dist/index.js +0 -20
- /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.
|
|
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
|
-
|
|
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:
|
|
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
|