javi-forge 1.0.0 → 1.2.0
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/ai-config/skills/docs/api-documentation/SKILL.md +293 -0
- package/ai-config/skills/docs/docs-spring/SKILL.md +377 -0
- package/ai-config/skills/docs/mustache-templates/SKILL.md +190 -0
- package/ai-config/skills/docs/technical-docs/SKILL.md +447 -0
- package/ci-local/ci-local.sh +37 -3
- package/ci-local/docker/node.Dockerfile +7 -0
- package/ci-local/hooks/commit-msg +0 -0
- package/ci-local/hooks/pre-commit +10 -155
- package/ci-local/hooks/pre-push +12 -29
- package/ci-local/install.sh +0 -0
- package/dist/commands/ci.d.ts +33 -0
- package/dist/commands/ci.js +341 -0
- package/dist/commands/init.js +5 -0
- package/dist/index.js +39 -5
- package/dist/lib/docker.d.ts +43 -0
- package/dist/lib/docker.js +223 -0
- package/dist/ui/CI.d.ts +9 -0
- package/dist/ui/CI.js +91 -0
- package/lib/common.sh +183 -0
- package/modules/obsidian-brain/.obsidian/plugins/dataview/data.json +25 -0
- package/modules/obsidian-brain/.obsidian/plugins/obsidian-kanban/data.json +29 -0
- package/modules/obsidian-brain/.obsidian/plugins/templater-obsidian/data.json +18 -0
- package/package.json +20 -12
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"new-card-insertion-method": "prepend-compact",
|
|
3
|
+
"show-checkboxes": true,
|
|
4
|
+
"prepend-archive-separator": "---",
|
|
5
|
+
"prepend-archive-format": "",
|
|
6
|
+
"date-format": "YYYY-MM-DD",
|
|
7
|
+
"time-format": "HH:mm",
|
|
8
|
+
"link-date-to-daily-note": false,
|
|
9
|
+
"hide-card-count": false,
|
|
10
|
+
"hide-date-display": false,
|
|
11
|
+
"tag-colors": [
|
|
12
|
+
{
|
|
13
|
+
"tagKey": "#blocker",
|
|
14
|
+
"color": "var(--text-error)",
|
|
15
|
+
"backgroundColor": "rgba(var(--color-red-rgb), 0.2)"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"tagKey": "#wave",
|
|
19
|
+
"color": "var(--text-accent)",
|
|
20
|
+
"backgroundColor": "rgba(var(--color-blue-rgb), 0.2)"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"tagKey": "#review",
|
|
24
|
+
"color": "var(--text-faint)",
|
|
25
|
+
"backgroundColor": "rgba(var(--color-yellow-rgb), 0.2)"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"tag-sort": []
|
|
29
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"command_timeout": 5,
|
|
3
|
+
"templates_folder": ".project/Templates",
|
|
4
|
+
"templates_pairs": [
|
|
5
|
+
["", ""]
|
|
6
|
+
],
|
|
7
|
+
"trigger_on_file_creation": false,
|
|
8
|
+
"auto_jump_to_cursor": true,
|
|
9
|
+
"enable_system_commands": false,
|
|
10
|
+
"shell_path": "",
|
|
11
|
+
"user_scripts_folder": "",
|
|
12
|
+
"enable_folder_templates": false,
|
|
13
|
+
"folder_templates": [],
|
|
14
|
+
"syntax_highlighting": true,
|
|
15
|
+
"syntax_highlighting_mobile": false,
|
|
16
|
+
"enabled_templates_hotkeys": [],
|
|
17
|
+
"startup_templates": []
|
|
18
|
+
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "javi-forge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Project scaffolding and AI-ready CI bootstrap",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"javi-forge": "./dist/index.js"
|
|
8
8
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"dev": "tsx watch src/index.tsx",
|
|
12
|
-
"start": "node dist/index.js",
|
|
13
|
-
"typecheck": "tsc --noEmit",
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"test:watch": "vitest",
|
|
16
|
-
"test:coverage": "vitest run --coverage",
|
|
17
|
-
"test:mutation": "stryker run"
|
|
18
|
-
},
|
|
19
9
|
"author": "JNZader",
|
|
20
10
|
"license": "MIT",
|
|
21
11
|
"repository": {
|
|
@@ -33,9 +23,14 @@
|
|
|
33
23
|
"ink-spinner": "^5.0.0",
|
|
34
24
|
"meow": "^14.1.0",
|
|
35
25
|
"react": "^19.2.4",
|
|
26
|
+
"update-notifier": "^7.3.1",
|
|
36
27
|
"yaml": "^2.8.2"
|
|
37
28
|
},
|
|
38
29
|
"devDependencies": {
|
|
30
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
31
|
+
"@semantic-release/exec": "^7.1.0",
|
|
32
|
+
"@semantic-release/git": "^10.0.1",
|
|
33
|
+
"@semantic-release/github": "^12.0.6",
|
|
39
34
|
"@stryker-mutator/core": "^9.6.0",
|
|
40
35
|
"@stryker-mutator/typescript-checker": "^9.6.0",
|
|
41
36
|
"@stryker-mutator/vitest-runner": "^9.6.0",
|
|
@@ -43,9 +38,22 @@
|
|
|
43
38
|
"@types/glob": "^9.0.0",
|
|
44
39
|
"@types/node": "^25.5.0",
|
|
45
40
|
"@types/react": "^19.2.14",
|
|
41
|
+
"@types/update-notifier": "^6.0.8",
|
|
46
42
|
"@vitest/coverage-v8": "^4.1.0",
|
|
43
|
+
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
44
|
+
"semantic-release": "^25.0.3",
|
|
47
45
|
"tsx": "^4.21.0",
|
|
48
46
|
"typescript": "^5.9.3",
|
|
49
47
|
"vitest": "^4.1.0"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc",
|
|
51
|
+
"dev": "tsx watch src/index.tsx",
|
|
52
|
+
"start": "node dist/index.js",
|
|
53
|
+
"typecheck": "tsc --noEmit",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:watch": "vitest",
|
|
56
|
+
"test:coverage": "vitest run --coverage",
|
|
57
|
+
"test:mutation": "stryker run"
|
|
50
58
|
}
|
|
51
|
-
}
|
|
59
|
+
}
|