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
fix: convert single-line altimate_change markers to start/end pairs
The strict marker guard (`analyze.ts --markers --strict`) only credits lines
between a `start`/`end` pair; the single-line `// altimate_change —` comments
introduced in #980 and #1004 covered the comment itself but left the code
beneath unmarked, failing the release gate against v0.9.1. Wrap all five
flagged sites (mcp/index.ts, session/prompt.ts, session/tools.ts,
tool/registry.ts x2, session/prompt/default.txt) in proper pairs. No
behavior change.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: packages/opencode/src/session/prompt/default.txt
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@ If the user asks for help or wants to give feedback inform them of the following
6
6
- /help: Get help with using Altimate Code
7
7
- To give feedback, users should report the issue at https://github.com/AltimateAI/altimate-code/issues
8
8
9
+
// altimate_change start — altimate docs URL
9
10
When the user directly asks about Altimate Code (eg 'can altimate do...', 'does altimate have...') or asks in second person (eg 'are you able...', 'can you do...'), use the WebFetch tool to gather information to answer the question from Altimate Code docs. The list of available docs is available at https://help.altimate.ai/code
11
+
// altimate_change end
10
12
11
13
# Tone and style
12
14
You should be concise, direct, and to the point. When you run a non-trivial bash command, you should explain what the command does and why you are running it, to make sure the user understands what you are doing (this is especially important when you are running a command that will make changes to the user's system).
0 commit comments