mirror of
https://github.com/garrytan/gstack.git
synced 2026-08-09 15:56:02 +02:00
refactor: remove version check from find-browse, simplify to binary locator
Delete checkVersion(), readCache(), writeCache(), fetchRemoteSHA(), resolveSkillDir(), CacheEntry interface, REPO_URL/CACHE_PATH/CACHE_TTL constants, and META output from find-browse.ts. Version checking is now handled by bin/gstack-update-check (previous commit).
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Shim: delegates to compiled find-browse binary, falls back to basic discovery.
|
# Shim: delegates to compiled find-browse binary, falls back to basic discovery.
|
||||||
# The compiled binary adds version checking and META signal support.
|
# The compiled binary handles git root detection for workspace-local installs.
|
||||||
DIR="$(cd "$(dirname "$0")/.." && pwd)/dist"
|
DIR="$(cd "$(dirname "$0")/.." && pwd)/dist"
|
||||||
if test -x "$DIR/find-browse"; then
|
if test -x "$DIR/find-browse"; then
|
||||||
exec "$DIR/find-browse" "$@"
|
exec "$DIR/find-browse" "$@"
|
||||||
fi
|
fi
|
||||||
# Fallback: basic discovery (no version check)
|
# Fallback: basic discovery
|
||||||
ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
|
ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
|
||||||
if [ -n "$ROOT" ] && test -x "$ROOT/.claude/skills/gstack/browse/dist/browse"; then
|
if [ -n "$ROOT" ] && test -x "$ROOT/.claude/skills/gstack/browse/dist/browse"; then
|
||||||
echo "$ROOT/.claude/skills/gstack/browse/dist/browse"
|
echo "$ROOT/.claude/skills/gstack/browse/dist/browse"
|
||||||
|
|||||||
+3
-128
@@ -1,28 +1,14 @@
|
|||||||
/**
|
/**
|
||||||
* find-browse — locate the gstack browse binary + check for updates.
|
* find-browse — locate the gstack browse binary.
|
||||||
*
|
*
|
||||||
* Compiled to browse/dist/find-browse (standalone binary, no bun runtime needed).
|
* Compiled to browse/dist/find-browse (standalone binary, no bun runtime needed).
|
||||||
*
|
* Outputs the absolute path to the browse binary on stdout, or exits 1 if not found.
|
||||||
* Output protocol:
|
|
||||||
* Line 1: /path/to/binary (always present)
|
|
||||||
* Line 2+: META:<TYPE> <json-payload> (optional, 0 or more)
|
|
||||||
*
|
|
||||||
* META types:
|
|
||||||
* META:UPDATE_AVAILABLE — local binary is behind origin/main
|
|
||||||
*
|
|
||||||
* All version checks are best-effort: network failures, missing files, and
|
|
||||||
* cache errors degrade gracefully to outputting only the binary path.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { existsSync } from 'fs';
|
import { existsSync } from 'fs';
|
||||||
import { readFileSync, writeFileSync } from 'fs';
|
import { join } from 'path';
|
||||||
import { join, dirname } from 'path';
|
|
||||||
import { homedir } from 'os';
|
import { homedir } from 'os';
|
||||||
|
|
||||||
const REPO_URL = 'https://github.com/garrytan/gstack.git';
|
|
||||||
const CACHE_PATH = '/tmp/gstack-latest-version';
|
|
||||||
const CACHE_TTL = 14400; // 4 hours in seconds
|
|
||||||
|
|
||||||
// ─── Binary Discovery ───────────────────────────────────────────
|
// ─── Binary Discovery ───────────────────────────────────────────
|
||||||
|
|
||||||
function getGitRoot(): string | null {
|
function getGitRoot(): string | null {
|
||||||
@@ -55,114 +41,6 @@ export function locateBinary(): string | null {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ─── Version Check ──────────────────────────────────────────────
|
|
||||||
|
|
||||||
interface CacheEntry {
|
|
||||||
sha: string;
|
|
||||||
timestamp: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
function readCache(): CacheEntry | null {
|
|
||||||
try {
|
|
||||||
const content = readFileSync(CACHE_PATH, 'utf-8').trim();
|
|
||||||
const parts = content.split(/\s+/);
|
|
||||||
if (parts.length < 2) return null;
|
|
||||||
const sha = parts[0];
|
|
||||||
const timestamp = parseInt(parts[1], 10);
|
|
||||||
if (!sha || isNaN(timestamp)) return null;
|
|
||||||
// Validate SHA is hex
|
|
||||||
if (!/^[0-9a-f]{40}$/i.test(sha)) return null;
|
|
||||||
return { sha, timestamp };
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function writeCache(sha: string, timestamp: number): void {
|
|
||||||
try {
|
|
||||||
writeFileSync(CACHE_PATH, `${sha} ${timestamp}\n`);
|
|
||||||
} catch {
|
|
||||||
// Cache write failure is non-fatal
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function fetchRemoteSHA(): string | null {
|
|
||||||
try {
|
|
||||||
const proc = Bun.spawnSync(['git', 'ls-remote', REPO_URL, 'refs/heads/main'], {
|
|
||||||
stdout: 'pipe',
|
|
||||||
stderr: 'pipe',
|
|
||||||
timeout: 10_000, // 10s timeout
|
|
||||||
});
|
|
||||||
if (proc.exitCode !== 0) return null;
|
|
||||||
const output = proc.stdout.toString().trim();
|
|
||||||
const sha = output.split(/\s+/)[0];
|
|
||||||
if (!sha || !/^[0-9a-f]{40}$/i.test(sha)) return null;
|
|
||||||
return sha;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function resolveSkillDir(binaryPath: string): string | null {
|
|
||||||
const home = homedir();
|
|
||||||
const globalPrefix = join(home, '.claude', 'skills', 'gstack');
|
|
||||||
if (binaryPath.startsWith(globalPrefix)) return globalPrefix;
|
|
||||||
|
|
||||||
// Workspace-local: binary is at $ROOT/.claude/skills/gstack/browse/dist/browse
|
|
||||||
// Skill dir is $ROOT/.claude/skills/gstack
|
|
||||||
const parts = binaryPath.split('/.claude/skills/gstack/');
|
|
||||||
if (parts.length === 2) return parts[0] + '/.claude/skills/gstack';
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function checkVersion(binaryDir: string): string | null {
|
|
||||||
// Read local version
|
|
||||||
const versionFile = join(binaryDir, '.version');
|
|
||||||
let localSHA: string;
|
|
||||||
try {
|
|
||||||
localSHA = readFileSync(versionFile, 'utf-8').trim();
|
|
||||||
} catch {
|
|
||||||
return null; // No .version file → skip check
|
|
||||||
}
|
|
||||||
if (!localSHA) return null;
|
|
||||||
|
|
||||||
const now = Math.floor(Date.now() / 1000);
|
|
||||||
|
|
||||||
// Check cache
|
|
||||||
let remoteSHA: string | null = null;
|
|
||||||
const cache = readCache();
|
|
||||||
if (cache && (now - cache.timestamp) < CACHE_TTL) {
|
|
||||||
remoteSHA = cache.sha;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fetch from remote if cache miss
|
|
||||||
if (!remoteSHA) {
|
|
||||||
remoteSHA = fetchRemoteSHA();
|
|
||||||
if (remoteSHA) {
|
|
||||||
writeCache(remoteSHA, now);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!remoteSHA) return null; // Offline or error → skip check
|
|
||||||
|
|
||||||
// Compare
|
|
||||||
if (localSHA === remoteSHA) return null; // Up to date
|
|
||||||
|
|
||||||
// Determine skill directory for update command
|
|
||||||
const binaryPath = join(binaryDir, 'browse');
|
|
||||||
const skillDir = resolveSkillDir(binaryPath);
|
|
||||||
if (!skillDir) return null;
|
|
||||||
|
|
||||||
const payload = JSON.stringify({
|
|
||||||
current: localSHA.slice(0, 8),
|
|
||||||
latest: remoteSHA.slice(0, 8),
|
|
||||||
command: `cd ${skillDir} && git stash && git fetch origin && git reset --hard origin/main && ./setup`,
|
|
||||||
});
|
|
||||||
|
|
||||||
return `META:UPDATE_AVAILABLE ${payload}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ─── Main ───────────────────────────────────────────────────────
|
// ─── Main ───────────────────────────────────────────────────────
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
@@ -173,9 +51,6 @@ function main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
console.log(bin);
|
console.log(bin);
|
||||||
|
|
||||||
const meta = checkVersion(dirname(bin));
|
|
||||||
if (meta) console.log(meta);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main();
|
main();
|
||||||
|
|||||||
@@ -1,130 +1,10 @@
|
|||||||
/**
|
/**
|
||||||
* Tests for find-browse version check logic
|
* Tests for find-browse binary locator.
|
||||||
*
|
|
||||||
* Tests the checkVersion() and locateBinary() functions directly.
|
|
||||||
* Uses temp directories with mock .version files and cache files.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { describe, test, expect, beforeEach, afterEach } from 'bun:test';
|
import { describe, test, expect } from 'bun:test';
|
||||||
import { checkVersion, locateBinary } from '../src/find-browse';
|
import { locateBinary } from '../src/find-browse';
|
||||||
import { mkdtempSync, writeFileSync, rmSync, existsSync, mkdirSync } from 'fs';
|
import { existsSync } from 'fs';
|
||||||
import { join } from 'path';
|
|
||||||
import { tmpdir } from 'os';
|
|
||||||
|
|
||||||
let tempDir: string;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
tempDir = mkdtempSync(join(tmpdir(), 'find-browse-test-'));
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
rmSync(tempDir, { recursive: true, force: true });
|
|
||||||
// Clean up test cache
|
|
||||||
try { rmSync('/tmp/gstack-latest-version'); } catch {}
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('checkVersion', () => {
|
|
||||||
test('returns null when .version file is missing', () => {
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('returns null when .version file is empty', () => {
|
|
||||||
writeFileSync(join(tempDir, '.version'), '');
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('returns null when .version has only whitespace', () => {
|
|
||||||
writeFileSync(join(tempDir, '.version'), ' \n');
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('returns null when local SHA matches remote (cache hit)', () => {
|
|
||||||
const sha = 'a'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), sha);
|
|
||||||
// Write cache with same SHA, recent timestamp
|
|
||||||
const now = Math.floor(Date.now() / 1000);
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', `${sha} ${now}\n`);
|
|
||||||
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result).toBeNull();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('returns META:UPDATE_AVAILABLE when SHAs differ (cache hit)', () => {
|
|
||||||
const localSha = 'a'.repeat(40);
|
|
||||||
const remoteSha = 'b'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), localSha);
|
|
||||||
// Create a fake browse binary path so resolveSkillDir works
|
|
||||||
const browsePath = join(tempDir, 'browse');
|
|
||||||
writeFileSync(browsePath, '');
|
|
||||||
// Write cache with different SHA, recent timestamp
|
|
||||||
const now = Math.floor(Date.now() / 1000);
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', `${remoteSha} ${now}\n`);
|
|
||||||
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
// Result may be null if resolveSkillDir can't determine skill dir from temp path
|
|
||||||
// That's expected — the META signal requires a known skill dir path
|
|
||||||
if (result !== null) {
|
|
||||||
expect(result).toStartWith('META:UPDATE_AVAILABLE');
|
|
||||||
const jsonStr = result.replace('META:UPDATE_AVAILABLE ', '');
|
|
||||||
const payload = JSON.parse(jsonStr);
|
|
||||||
expect(payload.current).toBe('a'.repeat(8));
|
|
||||||
expect(payload.latest).toBe('b'.repeat(8));
|
|
||||||
expect(payload.command).toContain('git stash');
|
|
||||||
expect(payload.command).toContain('git reset --hard origin/main');
|
|
||||||
expect(payload.command).toContain('./setup');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
test('uses cached SHA when cache is fresh (< 4hr)', () => {
|
|
||||||
const localSha = 'a'.repeat(40);
|
|
||||||
const remoteSha = 'a'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), localSha);
|
|
||||||
// Cache is 1 hour old — should still be valid
|
|
||||||
const oneHourAgo = Math.floor(Date.now() / 1000) - 3600;
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', `${remoteSha} ${oneHourAgo}\n`);
|
|
||||||
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result).toBeNull(); // SHAs match
|
|
||||||
});
|
|
||||||
|
|
||||||
test('treats expired cache as stale', () => {
|
|
||||||
const localSha = 'a'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), localSha);
|
|
||||||
// Cache is 5 hours old — should be stale
|
|
||||||
const fiveHoursAgo = Math.floor(Date.now() / 1000) - 18000;
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', `${'b'.repeat(40)} ${fiveHoursAgo}\n`);
|
|
||||||
|
|
||||||
// This will try git ls-remote which may fail in test env — that's OK
|
|
||||||
// The important thing is it doesn't use the stale cache value
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
// Result depends on whether git ls-remote succeeds in test environment
|
|
||||||
// If offline, returns null (graceful degradation)
|
|
||||||
expect(result === null || typeof result === 'string').toBe(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('handles corrupt cache file gracefully', () => {
|
|
||||||
const localSha = 'a'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), localSha);
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', 'garbage data here');
|
|
||||||
|
|
||||||
// Should not throw, should treat as stale
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result === null || typeof result === 'string').toBe(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
test('handles cache with invalid SHA gracefully', () => {
|
|
||||||
const localSha = 'a'.repeat(40);
|
|
||||||
writeFileSync(join(tempDir, '.version'), localSha);
|
|
||||||
writeFileSync('/tmp/gstack-latest-version', `not-a-sha ${Math.floor(Date.now() / 1000)}\n`);
|
|
||||||
|
|
||||||
// Invalid SHA should be treated as no cache
|
|
||||||
const result = checkVersion(tempDir);
|
|
||||||
expect(result === null || typeof result === 'string').toBe(true);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('locateBinary', () => {
|
describe('locateBinary', () => {
|
||||||
test('returns null when no binary exists at known paths', () => {
|
test('returns null when no binary exists at known paths', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user