Skip to content

Commit 61f7d96

Browse files
committed
feat(opencode): add specialized agent configurations
1 parent 7c3e0a3 commit 61f7d96

17 files changed

+3247
-2
lines changed

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2026-present Onno Valkering
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

configurations/darwin/darwin.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,12 @@
6060
upgrade = true;
6161
};
6262

63+
taps = [
64+
"anomalyco/tap"
65+
];
66+
6367
brews = [
64-
"opencode"
68+
"anomalyco/tap/opencode"
6569
];
6670

6771
casks = [

home/programs/opencode.nix

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,30 @@ _: {
33
enable = true;
44
package = null;
55

6+
rules = ./opencode/rules.md;
7+
8+
agents = {
9+
ai-engineering = ./opencode/agents/ai_engineering.md;
10+
code-review = ./opencode/agents/code_review.md;
11+
cybersecurity = ./opencode/agents/cybersecurity.md;
12+
data-engineering = ./opencode/agents/data_engineering.md;
13+
digital-marketing = ./opencode/agents/digital_marketing.md;
14+
documentation = ./opencode/agents/documentation.md;
15+
fullstack-development = ./opencode/agents/fullstack_development.md;
16+
performance-engineering = ./opencode/agents/performance_engineering.md;
17+
product-management = ./opencode/agents/product_management.md;
18+
quality-assurance = ./opencode/agents/quality_assurance.md;
19+
systems-architecture = ./opencode/agents/systems_architecture.md;
20+
team-lead = ./opencode/agents/team_lead.md;
21+
ui-ux-design = ./opencode/agents/ui_ux_design.md;
22+
};
23+
624
settings = {
725
autoupdate = false;
826
share = "disabled";
927

1028
permission = {
1129
bash = "ask";
12-
write = "allow";
1330
};
1431
};
1532
};

home/programs/opencode/agents/ai_engineering.md

Lines changed: 252 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/code_review.md

Lines changed: 231 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/cybersecurity.md

Lines changed: 216 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/data_engineering.md

Lines changed: 245 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/digital_marketing.md

Lines changed: 197 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/documentation.md

Lines changed: 223 additions & 0 deletions
Large diffs are not rendered by default.

home/programs/opencode/agents/fullstack_development.md

Lines changed: 252 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)