Back to Oh My Openagent

Get Unpublished Changes

.opencode/command/get-unpublished-changes.md

4.8.15.5 KB
Original Source
<command-instruction> IMMEDIATELY output the analysis. NO questions. NO preamble.

CRITICAL: DO NOT just copy commit messages!

For each commit, you MUST:

  1. Read the actual diff to understand WHAT CHANGED
  2. Describe the REAL change in plain language
  3. Explain WHY it matters (if not obvious)

Release Layers

Analyze every change against these exact layers:

LayerIncludesVersion question
omo pure componentspackages/*-core, MCP packages, packages/shared-skills, reusable scriptsDo shared components need a patch/minor/major release note even if adapters only consume them internally?
omo opencodeRoot oh-my-opencode / oh-my-openagent, src/, .opencode/, .agents/, CLI, config, hooks, tools, docsWhat semver bump should the OpenCode/OpenAgent npm packages use?
omo codexpackages/omo-codex, lazycodex-ai, Codex plugin metadata/hooks, bundled MCP runtimes, code-yeongyu/lazycodex marketplace payloadDoes LazyCodex need the same bump, a Codex-only note, or a marketplace release?

Steps:

  1. Detect latest published versions for oh-my-opencode, oh-my-openagent, and lazycodex-ai.
  2. Run git diff v{published-version}..HEAD to see actual changes.
  3. Classify every file into one or more release layers before grouping by feat/fix/refactor/docs.
  4. Describe the REAL changes and why each layer cares.
  5. Note breaking changes by affected layer.
  6. Recommend a layer-specific version bump and one overall workflow bump.

Output Format:

  • feat: "Added X that does Y" (not just "add X feature")
  • fix: "Fixed bug where X happened, now Y" (not just "fix X bug")
  • refactor: "Changed X from A to B, now supports C" (not just "rename X") </command-instruction>
<version-context> <published-version> !`npm view oh-my-opencode version 2>/dev/null || echo "not published"` </published-version> <local-version> !`node -p "require('./package.json').version" 2>/dev/null || echo "unknown"` </local-version> <lazycodex-version> !`npm view lazycodex-ai version 2>/dev/null || echo "not published"` </lazycodex-version> <latest-tag> !`git tag --sort=-v:refname | head -1 2>/dev/null || echo "no tags"` </latest-tag> </version-context> <git-context> <commits-since-release> !`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git log "v{}"..HEAD --oneline 2>/dev/null || echo "no commits since release"` </commits-since-release> <diff-stat> !`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git diff "v{}"..HEAD --stat 2>/dev/null || echo "no diff available"` </diff-stat> <files-changed-summary> !`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git diff "v{}"..HEAD --stat 2>/dev/null | tail -1 || echo ""` </files-changed-summary> </git-context> <output-format> ## Unpublished Changes (v{published} → HEAD)

feat

ScopeWhat Changed
XDescription of actual changes

fix

ScopeWhat Changed
XDescription of actual changes

refactor

ScopeWhat Changed
XDescription of actual changes

docs

ScopeWhat Changed
XDescription of actual changes

Breaking Changes

None or list

Files Changed

{diff-stat}

Layered Impact Matrix

LayerImpactBreaking Risk
omo pure components......
omo opencode......
omo codex......

Layer-specific Version Recommendation

LayerRecommendationReason
omo pure componentspatchminor
omo opencodepatchminor
omo codexpatchminor

Overall Suggested Version Bump

  • Recommendation: patch|minor|major
  • Reason: Reason for recommendation </output-format>
<oracle-safety-review> ## Oracle Deployment Safety Review (Only when user explicitly requests)

Trigger keywords: "safe to deploy", "can I deploy", "is it safe", "review", "check", "oracle"

When user includes any of the above keywords in their request:

1. Pre-validation

bash
bun run typecheck
bun test
  • On failure → Report "❌ Cannot deploy" immediately without invoking Oracle

2. Oracle Invocation Prompt

Collect the following information and pass to Oracle:

## Deployment Safety Review Request

### Changes Summary
{Changes table analyzed above}

### Key diffs (organized by feature)
{Core code changes for each feat/fix/refactor - only key parts, not full diff}

### Validation Results
- Typecheck: ✅/❌
- Tests: {pass}/{total} (✅/❌)

### Review Items
1. **Regression Risk**: Are there changes that could affect existing functionality?
2. **Side Effects**: Are there areas where unexpected side effects could occur?
3. **Breaking Changes**: Are there changes that affect external users?
4. **Edge Cases**: Are there missed edge cases?
5. **Deployment Recommendation**: SAFE / CAUTION / UNSAFE

### Request
Please analyze the above changes deeply and provide your judgment on deployment safety.
If there are risks, explain with specific scenarios.
Suggest keywords to monitor after deployment if any.

3. Output Format After Oracle Response

🔍 Oracle Deployment Safety Review Result

Verdict: ✅ SAFE / ⚠️ CAUTION / ❌ UNSAFE

Risk Analysis

AreaRisk LevelDescription
...🟢/🟡/🔴...

Recommendations

  • ...

Post-deployment Monitoring Keywords

  • ...

Conclusion

{Oracle's final judgment} </oracle-safety-review>