Conversation
ashwinvis
commented
Sep 21, 2026
ashwinvis
left a comment
Contributor
Author
There was a problem hiding this comment.
@Bahar-Tasdighi take a look
| - `/share` — share a conversation | ||
| - `/help` — show commands | ||
| - `/exit` — quit OpenCode | ||
|
|
Contributor
Author
There was a problem hiding this comment.
Consider keeping clear and compact.
| ## How OpenCode remembers things: three layers ([docs](https://opencode.ai/docs/rules/)) | ||
|
|
||
| ## How Claude remembers things: three layers ([docs](https://code.claude.com/docs/en/memory)) | ||
| - **`AGENTS.md`** — persistent project guidance; coding standards, build commands, architecture notes, and team conventions. Put it in the repo root and commit it. |
Contributor
Author
There was a problem hiding this comment.
Link to https://agents.md/ to list all harnesses which honour this "standard"
| ## How Claude remembers things: three layers ([docs](https://code.claude.com/docs/en/memory)) | ||
| - **`AGENTS.md`** — persistent project guidance; coding standards, build commands, architecture notes, and team conventions. Put it in the repo root and commit it. | ||
| - **Instructions** (opencode.json) — additional instruction sources for more specialized project guidance. Useful for keeping the main AGENTS.md focused. ([docs](https://opencode.ai/v2/docs/instructions)) | ||
| - **Skills** (`.opencode/skills/<name>/SKILL.md`) — reusable procedures OpenCode can discover and load when relevant, such as releases, migrations, testing, or code review. ([docs](https://opencode.ai/docs/skills/)) |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| - **Skills** (`.opencode/skills/<name>/SKILL.md`) — reusable procedures OpenCode can discover and load when relevant, such as releases, migrations, testing, or code review. ([docs](https://opencode.ai/docs/skills/)) | |
| - **Skills** (`.agents/skills/<name>/SKILL.md`) — reusable procedures OpenCode can discover and load when relevant, such as releases, migrations, testing, or code review. ([docs](https://opencode.ai/docs/skills/)) |
Contributor
Author
There was a problem hiding this comment.
Link to https://agentskills.io/home which specify the format
| - Use `/compact` when context fills up, `/clear` between unrelated tasks | ||
| - `@filename` to include specific files rather than letting Claude scan everything | ||
| - `@filename` to include specific files directly in context | ||
| - `!command` to inject shell output directly into context |
Contributor
Author
There was a problem hiding this comment.
/name-of-the-skill to ensure that the skill is invoked.
Comment on lines
+167
to
+178
| ```bash | ||
| docker build -t irisagent-demo . | ||
|
|
||
| docker run -it --rm \ | ||
| -p 8000:8000 \ | ||
| -v "$(pwd):/project" \ | ||
| -w /project \ | ||
| irisagent-demo bash | ||
| ``` | ||
| ```bash | ||
| opencode | ||
| ``` |
Contributor
Author
There was a problem hiding this comment.
Warning: if you have tools or skills which interact with the internet, you may need additional flags.
Global configuration, if you want to use that, you will need to "mount it".
This branch has not been deployed
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.
Also some small changes to sc. 1