Use when changing shared upstream-owned files, editing or reviewing `altrucoder_change` markers, or moving additive Altru Coder-specific behavior into Altru Coder-owned code to reduce future merge conflicts.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add kartkbhalodiya/Altru--Coder --skill altrucoder-merge-minimizer --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Altrucoder Merge Minimizer?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/kartkbhalodiya-altrucoder-merge-minimizer)More formats (shields.io, HTML) on the badges page.
---
name: altrucoder-merge-minimizer
description: Use when changing shared upstream-owned files, editing or reviewing `altrucoder_change` markers, or moving additive Altru Coder-specific behavior into Altru Coder-owned code to reduce future merge conflicts.
---
# Altru Coder Merge Minimizer
Use this skill whenever a normal development task touches shared upstream-owned code and includes Altru Coder-specific behavior, especially for marker cleanup, extraction work, or `altrucoder_change` annotations.
Do not use this as the primary guide for upstream merge resolution. Upstream merges have their own instructions and should not duplicate that workflow here.
## Goal
Minimize Altru Coder's long-term diff against upstream OpenCode while preserving behavior.
Prefer this shape for Altru Coder-specific additions:
1. Shared upstream file contains only a minimal hook, import, call, registration, or config entry.
2. Altru Coder-specific behavior lives in Altru Coder-owned code.
3. Unavoidable shared-file changes have narrow `altrucoder_change` markers.
4. The annotation checker passes.
For changes to existing upstream behavior, prefer the smallest in-place shared-file diff with narrow markers. Do not move changed upstream logic into Altru Coder-owned code just to avoid textual conflicts, because that can create harder semantic merge conflicts.
## Core Rules
- Use `script/check-opencode-annotations.ts` as the source of truth for current shared scopes and exempt paths.
- Use `script/upstream/fix-altrucoder-markers.ts` for stale or broad markers, inspecting `--dry-run` output before applying changes.
- Treat upstream-owned files as shared unless the checker or repo ownership rules exempt them.
- Put Altru Coder-owned UI, CLI, runtime logic, and tests in Altru Coder-owned paths where practical.
- Avoid adding Altru Coder business logic directly to shared files.
- Keep shared-file edits as close as possible to upstream shape.
- Do not change shared files unless the change is required for Altru Coder functionality, fixes a Altru Coder bug, or is a minimal targeted upstream-quality fix.
- Do not create a large Altru Coder-only fork for a general upstream-quality improvement. Prefer a minimal targeted fix, or leave the broader change for upstream.
- Do not duplicate upstream logic unless there is a concrete reason. If duplication is unavoidable, isolate the Altru Coder delta and keep the upstream dependency obvious.
## Shared File Structure
- Do not refactor, rename, split files, or extract helpers in shared files just to improve readability or make Altru Coder extraction cleaner.
- Avoid structural changes that make upstream behavior harder to compare or hide semantic dependency on upstream code.
## Shared File Style
- Preserve upstream formatting and import style in shared files, even when it differs from Altru Coder style.
- Put Altru Coder-only imports on separate marked lines instead of reorganizing upstream imports.
## Decision Rules
Extract Altru Coder logic when:
- The change is an additive Altru Coder feature or integration, not a modification of existing upstream behavior.
- The shared-file change has meaningful Altru Coder-owned behavior, not just a tiny condition, import, registration, or field.
- The code has loops, branching, error handling, async workflows, storage access, network calls, UI rendering, or telemetry.
- The shared file can become a small orchestrator that calls Altru Coder helpers.
- The Altru Coder is independent enough that extraction will not hide future upstream fixes or behavior changes.
Keep the change inline when:
- The Altru Coder delta is a single field, import, call, simple condition, or small registry entry.
- Extraction would reshape upstream code more than the Altru Coder change itself.
- The change modifies an upstream algorithm, ordering, heuristic, control flow, or bug fix.
- Extraction would duplicate upstream logic or hide semantic dependency on upstream behavior.
- The Altru Coder helper closes over upstream-local state. Keep closure-scoped helpers inline and contiguous in one narrow marker block.
- The shared file owns the only route table, enum, schema, switch, or registry where the hook must exist.
- The change restores upstream shape or removes a stale Altru Coder divergence.
Always preserve upstream behavior order unless the Altru Coder behavior change is intentional and tested.
## Marker Rules
- Mark only Altru Coder-specific diff lines in shared upstream files.
- Prefer inline markers for single-line changes: `const value = 42 // altrucoder_change`.
- Use block markers only for adjacent Altru Coder-specific lines:
```ts
// altrucoder_change start
registerAltruCoderFeature(app)
// altrucoder_change end
```
- Use the file's native comment style, including JSX block comments inside JSX and `#` comments for YAML, TOML, and shell.
- Do not add markers in checker-exempt Altru Coder-owned paths.
- Remove stale markers when upstream already contains the behavior or when touching Altru Coder-owned files that still have old markers.
- Use `// altrucoder_change - new file` only for unavoidable new Altru Coder-specific files inside shared upstream paths.
## Tests
- Put Altru Coder-specific CLI/runtime tests in Altru Coder-owned test paths.
- Move tests out of shared upstream test paths when the behavior under test is Altru Coder-specific.
- Tests should cover the real failing path, not private or unstable APIs chosen only for convenience.
- Do not add skip gates for required regression coverage.
## Verification
After editing shared files or marker comments, run:
```bash
bun run script/check-opencode-annotations.ts
```
If the PR uses a non-default comparison base, pass the correct base ref:
```bash
bun run script/check-opencode-annotations.ts --base <base-ref>
```
For stale or broad markers in one shared file, inspect the dry run before applying:
```bash
bun run script/upstream/fix-altrucoder-markers.ts <repo-relative-file> --dry-run
```
Before finishing, confirm:
- Shared files contain minimal integration points only.
- Altru Coder logic and tests live in Altru Coder-owned paths where practical.
- Markers are narrow.
- Stale markers are removed.
- The annotation checker passed, or the reason it could not run is reported.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!