Conversation
There was a problem hiding this comment.
Pull request overview
Updates user-facing installation documentation to include an LLM-guided install path and standardize “latest” install recommendations, while adjusting release/changelog automation to avoid duplicated entries and remove the changelog H1 header.
Changes:
- README: add an “Install with your LLM” section and update
bunx/npxexamples to use@latest, plus recommend global install for tmux bindings. - CHANGELOG: remove a duplicated entry and remove the
# Changelogheader. - Release workflow: when generating a new
CHANGELOG.md, copy release notes directly instead of writing a# Changelogheader.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| README.md | Adds LLM-oriented install guidance and updates install/tmux instructions to prefer @latest and global pulse. |
| CHANGELOG.md | Deduplicates an entry and removes the H1 changelog header. |
| .github/workflows/release.yml | Adjusts changelog generation to avoid inserting # Changelog when creating the file. |
Comments suppressed due to low confidence (1)
README.md:101
- This section says to add
opencode-pulseto the OpenCode config, but the example immediately below usesopencode-pulse@latest. Please align the prose with the recommended config value to avoid users adding the wrong entry.
Add `opencode-pulse` to your OpenCode config (`~/.config/opencode/opencode.json` or `~/.config/opencode/opencode.jsonc`):
```jsonc
{
"plugin": ["opencode-pulse@latest"]
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Comment on lines
+43
to
+46
| Read the existing config: | ||
| ```bash | ||
| cat ~/.config/opencode/opencode.json 2>/dev/null || cat ~/.config/opencode/opencode.jsonc 2>/dev/null || echo "no-config" | ||
| ``` |
| Preserve all other config entries. | ||
| - If no config exists: create ~/.config/opencode/opencode.json with: | ||
| { "plugin": ["opencode-pulse@latest"] } | ||
| - If "opencode-pulse" is already in the plugin array: skip this step. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes