Skip to content

Commit 12fcbac

Browse files
MajorTalclaude
andcommitted
chore: repoint run402 private-repo references to ~/Developer/run402-private
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 73eb7ba commit 12fcbac

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

.claude/commands/publish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Stage all three files and commit: `git add package.json cli/package.json package
3636
2. Create a git tag: `git tag v<new_version> && git push --tags`
3737
3. Create a GitHub release from the tag. Write a human-readable summary of the actual changes (features, fixes, improvements) — don't just list commit hashes or rely on `--generate-notes`. Use `gh release create v<new_version> --notes "..."` with a clear description.
3838
4. **Close linked GitHub issues.** If any commit in the release references a GitHub issue (e.g. `Fixes #20`, `Closes #42`), verify the issue is closed. If not, close it with `gh issue close <number> --reason completed`.
39-
5. **Update `llms-cli.txt` in the run402 repo.** The CLI documentation lives in a separate repo at `~/dev/run402/site/llms-cli.txt`. If any CLI commands, manifest fields, or user-facing behavior changed since the last release, update that file to match, then commit and push the run402 repo.
39+
5. **Update `llms-cli.txt` in the run402 repo.** The CLI documentation lives in a separate repo at `~/Developer/run402-private/site/llms-cli.txt`. If any CLI commands, manifest fields, or user-facing behavior changed since the last release, update that file to match, then commit and push the run402 repo.
4040
6. **Install the new version locally** so `run402` on the command line uses the just-published version:
4141
```
4242
npm install -g run402@<new_version>

.claude/commands/upgrade-run402.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Read the memory file `project_last_integration.md` to get the last known sync co
77
## Step 2: Gather new commits from run402
88

99
```bash
10-
cd ~/dev/run402 && git log --oneline --format="%h %ai %s" <last_synced_commit>..HEAD
10+
cd ~/Developer/run402-private && git log --oneline --format="%h %ai %s" <last_synced_commit>..HEAD
1111
```
1212

1313
If the last synced commit is missing (rebased/squashed), use `--since` with the sync date instead.
@@ -35,8 +35,8 @@ Focus on commits that touch `packages/gateway/src/routes/`, `packages/gateway/sr
3535
For each commit classified as "Yes" or "Maybe":
3636

3737
```bash
38-
cd ~/dev/run402 && git show --stat <commit>
39-
cd ~/dev/run402 && git show <commit> -- <relevant_files>
38+
cd ~/Developer/run402-private && git show --stat <commit>
39+
cd ~/Developer/run402-private && git show <commit> -- <relevant_files>
4040
```
4141

4242
Determine specifically:

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Tests are excluded from the build (`tsconfig.json` and `core/tsconfig.json` both
4444
- CLI commands in `cli/lib/*.mjs` match the expected set
4545
- OpenClaw commands in `openclaw/scripts/*.mjs` match the expected set (follows re-exports to CLI)
4646
- CLI and OpenClaw have identical command sets (parity)
47-
- If `~/dev/run402/site/llms.txt` exists: MCP Tools table lists all tools, all endpoints documented
47+
- If `~/Developer/run402-private/site/llms.txt` exists: MCP Tools table lists all tools, all endpoints documented
4848

4949
When adding a new tool/command, add it to the `SURFACE` array in `sync.test.ts`.
5050

cli-integration.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ before(async () => {
7878
const { dirname } = await import("node:path");
7979
const thisDir = dirname(fileURLToPath(import.meta.url));
8080
const searchPaths = [
81-
join(thisDir, "..", "run402", ".env"), // ~/Developer/run402/.env
82-
join(thisDir, "..", "..", "dev", "run402", ".env"), // ~/dev/run402/.env
81+
join(thisDir, "..", "run402-private", ".env"), // ~/Developer/run402-private/.env
8382
];
8483
for (const envPath of searchPaths) {
8584
try {

mcp-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* - Cleanup: delete function, delete project
1616
*
1717
* Prerequisites:
18-
* - Set BUYER_PRIVATE_KEY env var (or have it in ../run402/.env or ~/dev/run402/.env).
18+
* - Set BUYER_PRIVATE_KEY env var (or have it in ~/Developer/run402-private/.env).
1919
* This is an EVM private key with testnet USDC on Base Sepolia.
2020
*
2121
* Run:

openspec/specs/project-email/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The CLI `email` module SHALL include a HELP string matching the existing module
126126
- **THEN** the system prints the full help text and exits with code 0
127127

128128
### Requirement: llms-cli.txt documentation
129-
The `~/dev/run402/site/llms-cli.txt` file SHALL include an `### email` section in the Command Reference area documenting all email subcommands with their arguments, matching the existing format.
129+
The `~/Developer/run402-private/site/llms-cli.txt` file SHALL include an `### email` section in the Command Reference area documenting all email subcommands with their arguments, matching the existing format.
130130

131131
#### Scenario: Email commands documented in llms-cli.txt
132132
- **WHEN** the llms-cli.txt file is read

sync.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,10 +437,10 @@ describe("SURFACE consistency", () => {
437437

438438
// ─── llms.txt alignment (conditional — only if the main repo is available) ───
439439

440-
const LLMS_TXT_PATH = join(homedir(), "dev/run402/site/llms.txt");
440+
const LLMS_TXT_PATH = join(homedir(), "Developer/run402-private/site/llms.txt");
441441
const llmsTxtAvailable = existsSync(LLMS_TXT_PATH);
442442

443-
describe("llms.txt alignment", { skip: !llmsTxtAvailable && "~/dev/run402/site/llms.txt not found" }, () => {
443+
describe("llms.txt alignment", { skip: !llmsTxtAvailable && "~/Developer/run402-private/site/llms.txt not found" }, () => {
444444
const llmsTxt = llmsTxtAvailable ? readFileSync(LLMS_TXT_PATH, "utf-8") : "";
445445

446446
it("MCP Tools table lists all actual MCP tools", { skip: !llmsTxt.includes("### MCP Tools") && "llms.txt has no MCP Tools table" }, () => {

0 commit comments

Comments
 (0)