ec27228a8e
Em dashes (—) and en dashes (–) had spread across comments, docs, tests, and a few UI strings, reading as AI-generated boilerplate rather than house style. Replaced each with punctuation matching its context: colon for explanatory clauses, comma for asides, plain hyphen for numeric/legal ranges (e.g. "21-23§"), "to"/"till" for date ranges, parentheses for paired-dash asides. messages/en.json and messages/sv.json were fixed by hand together to keep sv/en in sync. Left untouched where the dash is the functional subject rather than decorative punctuation: date-range-parser.ts's separator regex, charset-repair.ts's CP1252 byte-mapping table (and its test), the SIE encoding mojibake docs, generic-csv.ts's minus-sign normalizer, the agent system-prompt files that already instruct against em dashes, and a golden iXBRL test fixture compared byte-for-byte. Also fixes two bugs surfaced along the way: an off-by-one in ApiKeysPanel's scope-label split (a leftover from an earlier partial pass), and a charset-repair test that had lost the literal en-dash it exists to verify. Regenerated the agent atom seed migration (skills:generate) since 27 SKILL.md files changed. Added a CLAUDE.md rule against em/en dashes, with an explicit carve-out for the functional-dash cases above. Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
93 lines
2.9 KiB
TypeScript
93 lines
2.9 KiB
TypeScript
#!/usr/bin/env npx tsx
|
|
/**
|
|
* Seed / sync the agent_atom_registry table from SKILL.md files on disk.
|
|
*
|
|
* DEV / MANUAL path only. It writes the registry directly with the service role,
|
|
* which needs DB access: so it is NOT part of prebuild. Production gets skill
|
|
* bodies via the generated seed migration (scripts/generate-skill-bodies.ts),
|
|
* which ships in supabase/migrations and runs on deploy.
|
|
*
|
|
* Discovery + frontmatter parsing live in scripts/lib/atom-discovery.ts so this
|
|
* and the generator can never drift on which skills count as atoms.
|
|
*
|
|
* Usage:
|
|
* npx tsx scripts/seed-agent-atom-registry.ts # apply
|
|
* npx tsx scripts/seed-agent-atom-registry.ts --dry # print plan only
|
|
*/
|
|
|
|
import { config } from 'dotenv'
|
|
config({ path: '.env.local' })
|
|
|
|
import { createClient } from '@supabase/supabase-js'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { dirname, relative, join } from 'node:path'
|
|
import { discoverAtoms } from './lib/atom-discovery'
|
|
|
|
const __filename = fileURLToPath(import.meta.url)
|
|
const ROOT = dirname(dirname(__filename))
|
|
|
|
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL
|
|
const serviceRoleKey = process.env.SUPABASE_SERVICE_ROLE_KEY
|
|
|
|
if (!supabaseUrl || !serviceRoleKey) {
|
|
console.error('Missing NEXT_PUBLIC_SUPABASE_URL or SUPABASE_SERVICE_ROLE_KEY in .env.local')
|
|
process.exit(1)
|
|
}
|
|
|
|
const supabase = createClient(supabaseUrl, serviceRoleKey)
|
|
const dryRun = process.argv.includes('--dry')
|
|
|
|
async function main() {
|
|
console.log(`Scanning ${relative(process.cwd(), join(ROOT, '.claude', 'skills'))}`)
|
|
const atoms = await discoverAtoms(ROOT)
|
|
|
|
if (atoms.length === 0) {
|
|
console.log('No atoms discovered.')
|
|
return
|
|
}
|
|
|
|
// Map discovery → registry rows. We intentionally OMIT mcp_exposed so that a
|
|
// manual kill-switch flip survives a re-seed (the column default applies on
|
|
// first insert; ON CONFLICT leaves it untouched). `body` is inlined so runtime
|
|
// reads from the DB rather than disk.
|
|
const rows = atoms.map((a) => ({
|
|
id: a.id,
|
|
tier: a.tier,
|
|
title: a.title,
|
|
description: a.description,
|
|
sni_prefixes: a.sni_prefixes,
|
|
trigger_signals: a.trigger_signals,
|
|
estimated_tokens: a.estimated_tokens,
|
|
body_path: a.body_path,
|
|
body: a.body,
|
|
parent_atom_id: a.parent_atom_id,
|
|
version: a.frontmatter_version,
|
|
is_active: true,
|
|
schema_version: a.schema_version,
|
|
}))
|
|
|
|
console.log(`\nFound ${rows.length} atoms:\n`)
|
|
for (const r of rows) {
|
|
console.log(` [${r.tier.padEnd(10)}] ${r.id.padEnd(40)} ${r.estimated_tokens.toString().padStart(6)} tokens`)
|
|
}
|
|
|
|
if (dryRun) {
|
|
console.log('\n--dry: skipping write.')
|
|
return
|
|
}
|
|
|
|
console.log('\nUpserting...')
|
|
const { error } = await supabase.from('agent_atom_registry').upsert(rows, { onConflict: 'id' })
|
|
if (error) {
|
|
console.error('Upsert failed:', error)
|
|
process.exit(1)
|
|
}
|
|
|
|
console.log(`Upserted ${rows.length} rows into agent_atom_registry.`)
|
|
}
|
|
|
|
main().catch((err) => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|