oh-my-customcode 0.182.0 → 1.0.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
CHANGED
|
@@ -241,7 +241,7 @@ var init_package = __esm(() => {
|
|
|
241
241
|
workspaces: [
|
|
242
242
|
"packages/*"
|
|
243
243
|
],
|
|
244
|
-
version: "0.
|
|
244
|
+
version: "1.0.1",
|
|
245
245
|
description: "Batteries-included agent harness for Claude Code",
|
|
246
246
|
type: "module",
|
|
247
247
|
bin: {
|
|
@@ -25750,7 +25750,10 @@ function compareSemver(a, b) {
|
|
|
25750
25750
|
}
|
|
25751
25751
|
return 0;
|
|
25752
25752
|
}
|
|
25753
|
-
function isVersionPlausible(currentVersion, candidateVersion) {
|
|
25753
|
+
function isVersionPlausible(currentVersion, candidateVersion, options = {}) {
|
|
25754
|
+
if (options.live) {
|
|
25755
|
+
return true;
|
|
25756
|
+
}
|
|
25754
25757
|
const current = normalizeVersion(currentVersion).split(".").map((n) => parseInt(n, 10) || 0);
|
|
25755
25758
|
const candidate = normalizeVersion(candidateVersion).split(".").map((n) => parseInt(n, 10) || 0);
|
|
25756
25759
|
const majorDiff = (candidate[0] ?? 0) - (current[0] ?? 0);
|
|
@@ -25961,7 +25964,7 @@ function checkSelfUpdate(options) {
|
|
|
25961
25964
|
}
|
|
25962
25965
|
if (!latestVersion) {
|
|
25963
25966
|
const fetched = fetchLatestVersion(packageName);
|
|
25964
|
-
if (fetched && isVersionPlausible(currentVersion, fetched)) {
|
|
25967
|
+
if (fetched && isVersionPlausible(currentVersion, fetched, { live: true })) {
|
|
25965
25968
|
latestVersion = fetched;
|
|
25966
25969
|
writeCache(cachePath, latestVersion, now);
|
|
25967
25970
|
}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -306,9 +306,12 @@ steps:
|
|
|
306
306
|
[ -f scripts/verify-version-sync.sh ] && bash scripts/verify-version-sync.sh || echo "::warning::verify-version-sync.sh not found, version sync verification skipped"
|
|
307
307
|
(verify-version-sync.sh 가 exit 1 시 release 단계 halt)
|
|
308
308
|
|
|
309
|
-
Version decision (semver):
|
|
309
|
+
Version decision (semver) — PATCH-PREFERRED policy (post-1.0.0):
|
|
310
310
|
- No existing tags → v0.1.0
|
|
311
|
-
- Previous tag exists → patch
|
|
311
|
+
- Previous tag exists → DEFAULT to patch. When in doubt, patch — do NOT reflexively bump minor for rule/doc/skill edits.
|
|
312
|
+
- patch (DEFAULT): rule/doc/skill/config/wiki/workflow changes, bugfixes, hardening, CC-compat notes — the vast majority of this project's changes
|
|
313
|
+
- minor: ONLY a genuinely NEW user-facing capability (a new skill/agent/command adding user-visible surface), not a refinement of an existing one
|
|
314
|
+
- major: breaking changes to user-facing contracts (CLI flags, public skill/command names, public API), or a deliberate milestone declaration (e.g., v1.0.0)
|
|
312
315
|
- Previous tag is ahead of source version (e.g., tag v0.136.1, package.json 0.136.0): use next available skip-version (0.136.2)
|
|
313
316
|
|
|
314
317
|
2. Release notes via omcustom-release-notes skill
|
package/templates/manifest.json
CHANGED
|
@@ -306,9 +306,12 @@ steps:
|
|
|
306
306
|
[ -f scripts/verify-version-sync.sh ] && bash scripts/verify-version-sync.sh || echo "::warning::verify-version-sync.sh not found, version sync verification skipped"
|
|
307
307
|
(verify-version-sync.sh 가 exit 1 시 release 단계 halt)
|
|
308
308
|
|
|
309
|
-
Version decision (semver):
|
|
309
|
+
Version decision (semver) — PATCH-PREFERRED policy (post-1.0.0):
|
|
310
310
|
- No existing tags → v0.1.0
|
|
311
|
-
- Previous tag exists → patch
|
|
311
|
+
- Previous tag exists → DEFAULT to patch. When in doubt, patch — do NOT reflexively bump minor for rule/doc/skill edits.
|
|
312
|
+
- patch (DEFAULT): rule/doc/skill/config/wiki/workflow changes, bugfixes, hardening, CC-compat notes — the vast majority of this project's changes
|
|
313
|
+
- minor: ONLY a genuinely NEW user-facing capability (a new skill/agent/command adding user-visible surface), not a refinement of an existing one
|
|
314
|
+
- major: breaking changes to user-facing contracts (CLI flags, public skill/command names, public API), or a deliberate milestone declaration (e.g., v1.0.0)
|
|
312
315
|
- Previous tag is ahead of source version (e.g., tag v0.136.1, package.json 0.136.0): use next available skip-version (0.136.2)
|
|
313
316
|
|
|
314
317
|
2. Release notes via omcustom-release-notes skill
|