Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions common/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ looking for any other issues).
If you are performing a review of other's code, the same
principles apply.

## Tasks

The [agents/tasks/](agents/tasks/) directory contains reusable task definitions that you
can execute. These are roughly equivalent to OpenCode "commands" or Claude Code
"skills".

If the user gives an instruction of the form "run task ..." or similar
then you should read the agents/tasks/README.md file and find the relevant task and continue.

## Follow other guidelines

Look at the project README.md and look for guidelines
Expand Down
14 changes: 14 additions & 0 deletions common/agents/tasks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Tasks

Reusable task definitions for AI agents. See [AGENTS.md](../../AGENTS.md)
for how to execute these tasks.

Each `.md` file uses YAML frontmatter (`name`, `description`) followed
by markdown instructions — compatible with Claude Code skills and
OpenCode commands.

## Available Tasks

- **[perform-forge-review](perform-forge-review.md)** — Create AI-assisted code
reviews on GitHub, GitLab, or Forgejo. Builds review comments in a local JSONL
file for human inspection before submitting as a pending/draft review.
Loading
Loading