oh-my-customcode 0.150.0 → 0.150.1
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/cli/index.js +18 -1
- package/dist/index.js +18 -1
- package/package.json +1 -1
- package/templates/manifest.json +26 -8
package/dist/cli/index.js
CHANGED
|
@@ -2334,7 +2334,7 @@ var init_package = __esm(() => {
|
|
|
2334
2334
|
workspaces: [
|
|
2335
2335
|
"packages/*"
|
|
2336
2336
|
],
|
|
2337
|
-
version: "0.150.
|
|
2337
|
+
version: "0.150.1",
|
|
2338
2338
|
description: "Batteries-included agent harness for Claude Code",
|
|
2339
2339
|
type: "module",
|
|
2340
2340
|
bin: {
|
|
@@ -28090,6 +28090,22 @@ async function installStatusline(targetDir, options, _result) {
|
|
|
28090
28090
|
await fs2.chmod(destPath, 493);
|
|
28091
28091
|
debug("install.statusline_installed", {});
|
|
28092
28092
|
}
|
|
28093
|
+
async function installTestsConfig(targetDir, options, _result) {
|
|
28094
|
+
const srcPath = resolveTemplatePath(join8("tests", "tsconfig.json"));
|
|
28095
|
+
const destPath = join8(targetDir, "tests", "tsconfig.json");
|
|
28096
|
+
if (!await fileExists(srcPath)) {
|
|
28097
|
+
debug("install.tests_config_not_found", { path: srcPath });
|
|
28098
|
+
return;
|
|
28099
|
+
}
|
|
28100
|
+
if (await fileExists(destPath)) {
|
|
28101
|
+
if (!options.force && !options.backup) {
|
|
28102
|
+
debug("install.tests_config_skipped", { reason: "exists" });
|
|
28103
|
+
return;
|
|
28104
|
+
}
|
|
28105
|
+
}
|
|
28106
|
+
await copyFile(srcPath, destPath);
|
|
28107
|
+
debug("install.tests_config_installed", {});
|
|
28108
|
+
}
|
|
28093
28109
|
async function installSettingsLocal(targetDir, result) {
|
|
28094
28110
|
const layout = getProviderLayout();
|
|
28095
28111
|
const settingsPath = join8(targetDir, layout.rootDir, "settings.local.json");
|
|
@@ -28182,6 +28198,7 @@ async function install(options) {
|
|
|
28182
28198
|
await verifyTemplateDirectory();
|
|
28183
28199
|
await installAllComponents(options.targetDir, options, result);
|
|
28184
28200
|
await installStatusline(options.targetDir, options, result);
|
|
28201
|
+
await installTestsConfig(options.targetDir, options, result);
|
|
28185
28202
|
await installSettingsLocal(options.targetDir, result);
|
|
28186
28203
|
await installEntryDocWithTracking(options.targetDir, options, result);
|
|
28187
28204
|
if (preservation) {
|
package/dist/index.js
CHANGED
|
@@ -1680,6 +1680,22 @@ async function installStatusline(targetDir, options, _result) {
|
|
|
1680
1680
|
await fs.chmod(destPath, 493);
|
|
1681
1681
|
debug("install.statusline_installed", {});
|
|
1682
1682
|
}
|
|
1683
|
+
async function installTestsConfig(targetDir, options, _result) {
|
|
1684
|
+
const srcPath = resolveTemplatePath(join5("tests", "tsconfig.json"));
|
|
1685
|
+
const destPath = join5(targetDir, "tests", "tsconfig.json");
|
|
1686
|
+
if (!await fileExists(srcPath)) {
|
|
1687
|
+
debug("install.tests_config_not_found", { path: srcPath });
|
|
1688
|
+
return;
|
|
1689
|
+
}
|
|
1690
|
+
if (await fileExists(destPath)) {
|
|
1691
|
+
if (!options.force && !options.backup) {
|
|
1692
|
+
debug("install.tests_config_skipped", { reason: "exists" });
|
|
1693
|
+
return;
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
await copyFile(srcPath, destPath);
|
|
1697
|
+
debug("install.tests_config_installed", {});
|
|
1698
|
+
}
|
|
1683
1699
|
async function installSettingsLocal(targetDir, result) {
|
|
1684
1700
|
const layout = getProviderLayout();
|
|
1685
1701
|
const settingsPath = join5(targetDir, layout.rootDir, "settings.local.json");
|
|
@@ -1772,6 +1788,7 @@ async function install(options) {
|
|
|
1772
1788
|
await verifyTemplateDirectory();
|
|
1773
1789
|
await installAllComponents(options.targetDir, options, result);
|
|
1774
1790
|
await installStatusline(options.targetDir, options, result);
|
|
1791
|
+
await installTestsConfig(options.targetDir, options, result);
|
|
1775
1792
|
await installSettingsLocal(options.targetDir, result);
|
|
1776
1793
|
await installEntryDocWithTracking(options.targetDir, options, result);
|
|
1777
1794
|
if (preservation) {
|
|
@@ -2014,7 +2031,7 @@ var package_default = {
|
|
|
2014
2031
|
workspaces: [
|
|
2015
2032
|
"packages/*"
|
|
2016
2033
|
],
|
|
2017
|
-
version: "0.150.
|
|
2034
|
+
version: "0.150.1",
|
|
2018
2035
|
description: "Batteries-included agent harness for Claude Code",
|
|
2019
2036
|
type: "module",
|
|
2020
2037
|
bin: {
|
package/package.json
CHANGED
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.150.
|
|
2
|
+
"version": "0.150.1",
|
|
3
3
|
"lastUpdated": "2026-05-20T00:00:00.000Z",
|
|
4
4
|
"omcustomMinClaudeCode": "2.1.121",
|
|
5
5
|
"omcustomMinClaudeCodeReason": "Sensitive-path direct Write/Edit on .claude/** under bypassPermissions (R010 deprecation, #1101)",
|
|
@@ -52,12 +52,24 @@
|
|
|
52
52
|
"minimal": {
|
|
53
53
|
"description": "Essential assets only — core SW Engineers + Managers. Reduces deactivation cost on first use.",
|
|
54
54
|
"include": {
|
|
55
|
-
"agents": [
|
|
55
|
+
"agents": [
|
|
56
|
+
"mgr-*",
|
|
57
|
+
"lang-*-expert",
|
|
58
|
+
"sys-memory-keeper"
|
|
59
|
+
],
|
|
56
60
|
"skills": [
|
|
57
|
-
{
|
|
58
|
-
|
|
61
|
+
{
|
|
62
|
+
"scope": "core"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"scope": "harness"
|
|
66
|
+
}
|
|
59
67
|
],
|
|
60
|
-
"guides": [
|
|
68
|
+
"guides": [
|
|
69
|
+
"agent-design",
|
|
70
|
+
"git-safety",
|
|
71
|
+
"claude-code"
|
|
72
|
+
]
|
|
61
73
|
}
|
|
62
74
|
},
|
|
63
75
|
"full": {
|
|
@@ -82,7 +94,9 @@
|
|
|
82
94
|
"mgr-*"
|
|
83
95
|
],
|
|
84
96
|
"skills": [
|
|
85
|
-
{
|
|
97
|
+
{
|
|
98
|
+
"scope": "core"
|
|
99
|
+
},
|
|
86
100
|
"react-best-practices",
|
|
87
101
|
"typescript-best-practices",
|
|
88
102
|
"fastapi-best-practices",
|
|
@@ -117,7 +131,9 @@
|
|
|
117
131
|
"mgr-*"
|
|
118
132
|
],
|
|
119
133
|
"skills": [
|
|
120
|
-
{
|
|
134
|
+
{
|
|
135
|
+
"scope": "core"
|
|
136
|
+
},
|
|
121
137
|
"airflow-best-practices",
|
|
122
138
|
"dbt-best-practices"
|
|
123
139
|
],
|
|
@@ -141,7 +157,9 @@
|
|
|
141
157
|
"tracker-checkpoint"
|
|
142
158
|
],
|
|
143
159
|
"skills": [
|
|
144
|
-
{
|
|
160
|
+
{
|
|
161
|
+
"scope": "harness"
|
|
162
|
+
}
|
|
145
163
|
],
|
|
146
164
|
"guides": [
|
|
147
165
|
"agent-design",
|