summaryrefslogtreecommitdiffhomepage
path: root/.opencode
diff options
context:
space:
mode:
Diffstat (limited to '.opencode')
-rw-r--r--.opencode/command/issues.md2
-rw-r--r--.opencode/tool/github-pr-search.ts2
-rw-r--r--.opencode/tool/github-triage.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/.opencode/command/issues.md b/.opencode/command/issues.md
index 20ac4c180..75b596167 100644
--- a/.opencode/command/issues.md
+++ b/.opencode/command/issues.md
@@ -3,7 +3,7 @@ description: "find issue(s) on github"
model: opencode/claude-haiku-4-5
---
-Search through existing issues in sst/opencode using the gh cli to find issues matching this query:
+Search through existing issues in anomalyco/opencode using the gh cli to find issues matching this query:
$ARGUMENTS
diff --git a/.opencode/tool/github-pr-search.ts b/.opencode/tool/github-pr-search.ts
index 1c2a457a4..668557e38 100644
--- a/.opencode/tool/github-pr-search.ts
+++ b/.opencode/tool/github-pr-search.ts
@@ -31,7 +31,7 @@ export default tool({
offset: tool.schema.number().describe("Number of results to skip for pagination").default(0),
},
async execute(args) {
- const owner = "sst"
+ const owner = "anomalyco"
const repo = "opencode"
const page = Math.floor(args.offset / args.limit) + 1
diff --git a/.opencode/tool/github-triage.ts b/.opencode/tool/github-triage.ts
index a5e6c811d..1e216f1c8 100644
--- a/.opencode/tool/github-triage.ts
+++ b/.opencode/tool/github-triage.ts
@@ -40,7 +40,7 @@ export default tool({
async execute(args) {
const issue = getIssueNumber()
// const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN })
- const owner = "sst"
+ const owner = "anomalyco"
const repo = "opencode"
const results: string[] = []