You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const closeComment = `Closing this pull request because it has had no updates for more than ${DAYS_INACTIVE} days. If you plan to continue working on it, feel free to reopen or open a new PR.`
62
+
63
+
if (dryRun) {
64
+
core.info(`[dry-run] Would close PR #${issue_number} from ${pr.user.login}`)
65
+
continue
66
+
}
67
+
68
+
await github.rest.issues.createComment({
69
+
owner,
70
+
repo,
71
+
issue_number,
72
+
body: closeComment,
73
+
})
74
+
75
+
await github.rest.pulls.update({
76
+
owner,
77
+
repo,
78
+
pull_number: issue_number,
79
+
state: "closed",
80
+
})
81
+
82
+
core.info(`Closed PR #${issue_number} from ${pr.user.login}`)
Copy file name to clipboardExpand all lines: .opencode/command/ai-deps.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Please read @package.json and @packages/opencode/package.json.
7
7
Your job is to look into AI SDK dependencies, figure out if they have versions that can be upgraded (minor or patch versions ONLY no major ignore major changes).
8
8
9
9
I want a report of every dependency and the version that can be upgraded to.
10
-
What would be even better is if you can give me links to the changelog for each dependency, or at least some reference info so I can see what bugs were fixed or new features were added.
10
+
What would be even better is if you can give me brief summary of the changes for each dep and a link to the changelog for each dependency, or at least some reference info so I can see what bugs were fixed or new features were added.
11
11
12
12
Consider using subagents for each dep to save your context window.
description: Extract non-obvious learnings from session to AGENTS.md files to build codebase understanding
3
+
---
4
+
5
+
Analyze this session and extract non-obvious learnings to add to AGENTS.md files.
6
+
7
+
AGENTS.md files can exist at any directory level, not just the project root. When an agent reads a file, any AGENTS.md in parent directories are automatically loaded into the context of the tool read. Place learnings as close to the relevant code as possible:
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ This runs `bun run --cwd packages/desktop build` automatically via Tauri’s `be
148
148
> [!NOTE]
149
149
> If you make changes to the API or SDK (e.g. `packages/opencode/src/server/server.ts`), run `./script/generate.ts` to regenerate the SDK and related files.
150
150
151
-
Please try to follow the [style guide](./STYLE_GUIDE.md)
151
+
Please try to follow the [style guide](./AGENTS.md)
0 commit comments