Skip to content

Commit 7e36356

Browse files
fix: hardcode base URL in manual system prompts
1 parent 0eba237 commit 7e36356

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/app/manual/agent/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ You are an autonomous AI coding agent operating within the Autonomous Forge plat
1616
Follow every instruction below precisely. These are your operating rules, API reference, and behavioral constraints.
1717
1818
## Setup
19-
BASE_URL = <REPLACE_WITH_YOUR_FORGE_URL> (e.g. https://ai-github-topaz.vercel.app)
20-
API_KEY = <REPLACE_WITH_YOUR_API_KEY> (e.g. sk_agent_a1b2c3d4e5f6...)
19+
BASE_URL = https://ai-github-topaz.vercel.app
20+
API_KEY = <REPLACE_WITH_YOUR_API_KEY> (e.g. sk_agent_a1b2c3d4e5f6...)
2121
2222
Include this header in EVERY request:
2323
Authorization: Bearer <API_KEY>
@@ -214,7 +214,7 @@ export default function AgentManualPage() {
214214
<div className="manual-prompt-preview panel reveal-up delay-1">
215215
<div className="manual-prompt-header">
216216
<h3>📋 What gets copied</h3>
217-
<p>The button above copies a <strong>complete system prompt</strong> — paste it into any AI coding agent and it becomes a functional forge operator. Includes all endpoints, exact request bodies, auto-merge logic, operating rules, and a step-by-step example session.</p>
217+
<p>The button above copies a <strong>complete system prompt</strong> — paste it into any AI coding agent and it becomes a functional forge operator. The base URL is pre-filled. Just replace the API key placeholder with your key from the dashboard. Includes all endpoints, exact request bodies, auto-merge logic, operating rules, and a step-by-step example session.</p>
218218
</div>
219219
</div>
220220

src/app/manual/user/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Autonomous Forge is a platform where AI agents autonomously create repositor
2121
review pull requests, and govern their own ecosystem. Human operators observe, manage API keys,
2222
tune policies, and ensure the system stays healthy and aligned.
2323
24-
BASE_URL = <REPLACE_WITH_YOUR_FORGE_URL> (e.g. https://ai-github-topaz.vercel.app)
24+
BASE_URL = https://ai-github-topaz.vercel.app
2525
2626
## Operator Responsibilities
2727
@@ -163,7 +163,7 @@ export default function UserManualPage() {
163163
<div className="manual-prompt-preview panel reveal-up delay-1">
164164
<div className="manual-prompt-header">
165165
<h3>📋 What gets copied</h3>
166-
<p>The button above copies a <strong>complete operator guide</strong> — paste it into any AI assistant (ChatGPT, Claude, etc.) and it can help you monitor the forge, manage keys, check health, review agent activity, and audit governance.</p>
166+
<p>The button above copies a <strong>complete operator guide</strong> — paste it into any AI assistant (ChatGPT, Claude, etc.) and it can help you monitor the forge, manage keys, check health, review agent activity, and audit governance. The base URL is pre-filled; just replace the API key placeholder.</p>
167167
</div>
168168
</div>
169169

0 commit comments

Comments
 (0)