feat(cli): M-Tool 1-3 — CLI, templates, Gitea publishing pipeline
Some checks failed
Test / test (push) Has been cancelled
Some checks failed
Test / test (push) Has been cancelled
Phase B complete: Shade now has a full developer tooling story. @shade/cli - shade init with project scaffolding from templates - shade fingerprint (own or peer) - shade publish (re-upload bundle) - shade rotate (--identity for full rotation, otherwise signed prekey) - shade peer add/list/verify/remove - shade dashboard (opens observer in browser) - shade doctor (diagnose config, storage, prekey server reachability) - Config from .shaderc.json or SHADE_* env vars Templates (in packages/shade-cli/templates/) - bun-server — Bun + Hono backend with /send + /receive endpoints - chat-demo — Two-process Alice/Bob chat over HTTP Publishing pipeline (Gitea npm registry) - .gitea/workflows/test.yml — CI on push/PR with PostgreSQL service - .gitea/workflows/publish.yml — publish on git tag v* - scripts/publish-all.ts — local publish helper with DRY_RUN support - scripts/bump-version.ts — lockstep version bump across all packages - Root package.json scripts: version, publish:dry, publish:all Also: /health endpoint now lives in createPrekeyRoutes so doctor can probe it without needing the full standalone setup. Dry-run verified: all 11 packages pack cleanly. 246 tests passing, 0 failures. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
35
packages/shade-cli/src/commands/fingerprint.ts
Normal file
35
packages/shade-cli/src/commands/fingerprint.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { createShade } from '@shade/sdk';
|
||||
import { loadConfig } from '../config.js';
|
||||
|
||||
export async function fingerprintCommand(address?: string): Promise<void> {
|
||||
const config = loadConfig();
|
||||
const shade = await createShade({
|
||||
prekeyServer: config.prekeyServer,
|
||||
storage: config.storage,
|
||||
address: config.address,
|
||||
autoReplenish: false,
|
||||
});
|
||||
|
||||
try {
|
||||
if (address) {
|
||||
// Peer fingerprint — requires an existing session
|
||||
try {
|
||||
const fp = await shade.getFingerprintFor(address);
|
||||
console.log(`${address}:`);
|
||||
console.log(` ${fp}`);
|
||||
} catch {
|
||||
console.error(`No session for ${address}. Run \`shade peer add ${address}\` first.`);
|
||||
process.exit(1);
|
||||
}
|
||||
} else {
|
||||
const fp = await shade.fingerprint;
|
||||
console.log('Your safety number:');
|
||||
console.log('');
|
||||
console.log(` ${fp}`);
|
||||
console.log('');
|
||||
console.log('Compare this with your peer out-of-band to verify no MITM.');
|
||||
}
|
||||
} finally {
|
||||
await shade.shutdown();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user