text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
import Ajv2020 from 'ajv/dist/2020.js';
import type { ValidationResult } from '../types';
const ajv = new Ajv2020({ strict: false, allErrors: true });
export function validateSchema(parameters: unknown): ValidationResult {
try {
ajv.compile(parameters as object);
return { pass: true };
} catch (err) {
return ... | codex-hackathon | lib/discovery/validate/schema.ts | TypeScript | ec674ab640800ddec09ebdd527afc322354030e7e830fd6479f40f7a60c55f95 | 0 | 114 |
import { describe, expect, it } from 'vitest';
import { validateTrajectories } from './trajectory';
const body = 'function addNumbers(args) { return { sum: args.a + args.b }; }';
describe('validateTrajectories', () => {
it('passes when all 3 trajectories match', async () => {
const r = await validateTrajectories(b... | codex-hackathon | lib/discovery/validate/trajectory.test.ts | TypeScript | e188212639d813783e81ca90fd94ebe2aaa90c2c93ac72c765d137c6c63c3b81 | 0 | 514 |
import equal from 'fast-deep-equal';
import type { ValidationResult } from '../types';
import { runInSandbox } from './sandbox';
export interface Trajectory {
userPrompt: string;
call: { name: string; arguments: Record<string, unknown> };
result: unknown;
}
export async function validateTrajectories(
jsBody: stri... | codex-hackathon | lib/discovery/validate/trajectory.ts | TypeScript | 6ca411923d8e0e1a30d5029e093c18079b8b861e13a42e1a968b770d25a765b1 | 0 | 283 |
import { readFile } from 'node:fs/promises';
import path from 'node:path';
import type { EvalItem, ToolCall } from '@/lib/data/types';
import { getModel } from '@/lib/model';
import { generateText } from 'ai';
import type { EvalRunResult, EvalSummary } from './types';
type ModelResponse = {
text: string;
toolCalls?:... | codex-hackathon | lib/eval/run.ts | TypeScript | 0dda5983430e9c130f0c4541599922a1132145b76c481e854661ff525a35ab5d | 0 | 896 |
text };
}
async function evaluateEndpointModel(
items: EvalItem[],
config: EndpointConfig,
): Promise<EvalSummary> {
if (!config.url) {
return {
key: config.label === 'Base' ? 'base' : 'tuned',
label: config.label,
available: false,
score: null,
passed: 0,
total: items.length,
latencyMs: null... | codex-hackathon | lib/eval/run.ts | TypeScript | 258c9a3765dc78f08179baaa8b5ba71582ff94d0a911c337884e6c6d9b16eda7 | 1 | 571 |
export type EvalModelKey = 'base' | 'tuned' | 'teacher';
export type EvalSummary = {
key: EvalModelKey;
label: string;
available: boolean;
score: number | null;
passed: number;
total: number;
latencyMs: number | null;
notes?: string;
};
export type EvalRunResult = {
itemCount: number;
source: string;
model... | codex-hackathon | lib/eval/types.ts | TypeScript | 294c63b5e090bea1ddf47906af2a8525c5b23e47fb3e5ebae4ea3bf62e65da24 | 0 | 81 |
export const STREAM_ERROR_LIMIT = 400;
export function truncateText(value: string, maxLength = STREAM_ERROR_LIMIT) {
return value.length > maxLength ? value.slice(0, maxLength) : value;
}
export function toErrorMessage(
error: unknown,
fallback = 'unknown error',
maxLength = STREAM_ERROR_LIMIT,
) {
if (error ins... | codex-hackathon | lib/server/errors.ts | TypeScript | f6a2f486b4a45523761604f2b410362400e497688443a9f7a5da7425bdd00617 | 0 | 121 |
import type { ChildProcessWithoutNullStreams } from 'node:child_process';
type ManagedChild = ChildProcessWithoutNullStreams;
export function terminateChild(child: ManagedChild) {
try {
child.kill('SIGTERM');
} catch {}
}
export function waitForChildExit(child: ManagedChild) {
return new Promise<void>((resolve)... | codex-hackathon | lib/server/processes.ts | TypeScript | 8901d65cc60766fc0df67dd50c38e820515e5149a5ad2f8157d30c7c48355a94 | 0 | 185 |
import { describe, expect, it } from 'vitest';
import { parseTrainLine } from './trainParser';
describe('parseTrainLine', () => {
it('parses SFT Train loss line', () => {
expect(parseTrainLine('Iter 5: Train loss 1.234')).toEqual({
iter: 5,
loss: 1.234,
});
});
it('parses GRPO reward from the actual tota... | codex-hackathon | lib/streams/trainParser.test.ts | TypeScript | 7939251ef7a92ceeb968fc2dba52791e1a6e8e87c8d7ad01bd4b22ccc040386a | 0 | 376 |
export type TrainPoint = {
iter: number;
loss?: number;
reward?: number;
aborted?: string;
};
const TRAIN_LOSS_RE = /Iter\s+(\d+):\s+Train loss\s+([\d.]+)/;
const REWARD_RE = /^Iter\s+(\d+):\s+Val loss\s+([\d.]+),\s+Val total_rewards_mean\s+([\d.]+)/;
const LOSS_FALLBACK_RE = /loss[:\s]+([\d.]+)/i;
export functio... | codex-hackathon | lib/streams/trainParser.ts | TypeScript | 6dae3df3aa0ad3654f73fe45b64c702b0cf3bd99ea8adbd98728f9d8f60da7e3 | 0 | 334 |
import { describe, expect, it } from 'vitest';
import { validateTool } from '../discovery/validate/index';
import { HAND_WRITTEN_SUPABASE_TOOLS } from './hand-written-supabase';
describe('hand-written Supabase fallback set', () => {
it('has exactly 8 entries', () => {
expect(HAND_WRITTEN_SUPABASE_TOOLS).toHaveLengt... | codex-hackathon | lib/tools/hand-written-supabase.test.ts | TypeScript | dac595c66901d73cf3b6914c63c8e1074a503b98de122131cc7c4cea3c642df3 | 0 | 377 |
/**
* Hand-written Supabase-domain tools — SWR-08 kill-point safety net.
*
* 8 pure-compute, deterministic, offline-safe tools that pass the full
* 5-gate validator. If the Phase 3 swarm produces <4 valid tools, the
* coordinator swaps in these as the fallback manifest.
*
* Every jsBody runs in vm.createContext(... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | b5f65d86b1441fcb85bafd9290d1b61da3a3187cff2628483729c179b9dd8761 | 0 | 896 |
items: { type: 'string' } },
filters: {
type: 'array',
items: {
type: 'object',
properties: {
column: { type: 'string' },
op: { type: 'string', enum: ['eq', 'neq', 'gt', 'lt'] },
value: {},
},
required: ['column', 'op', 'value'],
additionalProp... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | 15a983f196a1afc3708719fdd7797fe2ec63e257a4874d21a4005bf0d2a86d55 | 1 | 896 |
{
type: 'object',
properties: {
bucket: { type: 'string' },
userId: { type: 'string' },
filename: { type: 'string' },
},
required: ['bucket', 'userId', 'filename'],
additionalProperties: false,
},
},
meta: {
jsBody: `function supabase_storage_path_builder(args) { var bucket ... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | f128fad8eeb0f54d01642563821500ff0815ca073818e42d59f23692be006fa1 | 2 | 896 |
-written',
sourceChunks: [],
},
},
// ── 5. supabase_column_type_mapper ───────────────────────────────
{
type: 'function',
function: {
name: 'supabase_column_type_mapper',
description: 'Map a PostgreSQL column type to its TypeScript equivalent.',
parameters: {
type: 'object',
properties: ... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | 99023713617a930d890bd45418b6ef643c2b3babd710bc91df88d6f47022dd0b | 3 | 896 |
|| '' }; }`,
requiresNetwork: false,
trajectories: [
{
userPrompt: 'Parse postgresql://admin:secret@db.example.com:5432/mydb.',
call: {
name: 'supabase_connection_string_parser',
arguments: { url: 'postgresql://admin:secret@db.example.com:5432/mydb' },
},
result: { host: 'db.ex... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | 8db3d3bf64e3565996b9f640ae9116f01b87d5d9d137f2ae11c3214e221a3f10 | 4 | 896 |
false,
trajectories: [
{
userPrompt: 'Extract claims from an authenticated user JWT.',
call: {
name: 'supabase_jwt_claims_extractor',
arguments: {
jwt: 'eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1c2VyLTEyMyIsInJvbGUiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzAwMDAwMDAwfQ.signature',
},
},
... | codex-hackathon | lib/tools/hand-written-supabase.ts | TypeScript | 0b2d879ac7003e370d18da17d75c07b8d8b5ed4a9dd4f7034a8ad8140754d4f4 | 5 | 824 |
import { mkdtemp, readFile, rm, writeFile } from 'node:fs/promises';
import { tmpdir } from 'node:os';
import path from 'node:path';
import { afterEach, describe, expect, it } from 'vitest';
import { rollbackToLatestCheckpoint } from './rollback';
const tmpDirs: string[] = [];
async function makeTmpDir() {
const dir... | codex-hackathon | lib/training/rollback.test.ts | TypeScript | 30c723d161289e567ab7b5acdf507c059dd3b96356f6e8a89c91005546df4673 | 0 | 773 |
import { copyFile, readdir } from 'node:fs/promises';
import { join } from 'node:path';
const CKPT_RE = /^(\d{7})_adapters\.safetensors$/;
/**
* Find the highest-numbered adapter checkpoint in `adapterDir` and copy it
* over `adapters.safetensors`. Returns the iteration number rolled back to.
*/
export async funct... | codex-hackathon | lib/training/rollback.ts | TypeScript | 2b6ca6eb1f5e521ae025a2738c88cf2c0f118f09c483b7746405484473f75a35 | 0 | 243 |
import { spawn } from 'node:child_process';
import readline from 'node:readline';
import { toErrorMessage, truncateText } from '@/lib/server/errors';
import {
createChildProcessRegistry,
terminateChild,
waitForChildExit,
} from '@/lib/server/processes';
import { type TrainPoint, parseTrainLine } from '@/lib/streams/... | codex-hackathon | lib/training/run-training.ts | TypeScript | 88f01f87740b46e269894a274cfd2b68e45a70e47920445846e296a03b8cddfd | 0 | 815 |
import { mkdtemp, rm, writeFile } from 'node:fs/promises';
import { tmpdir } from 'node:os';
import path from 'node:path';
import { afterEach, describe, expect, it } from 'vitest';
import { TrainSupervisor } from './supervisor';
const tmpDirs: string[] = [];
async function makeCheckpointDir(iter: number) {
const dir... | codex-hackathon | lib/training/supervisor.test.ts | TypeScript | 7553ed539789521ba692bc2fd0e89422b59cc7d2fcc8335a9ce4b5d16e28719c | 0 | 896 |
).toEqual({
kind: 'grpo.collapsed',
reason: 'variance',
});
});
it('continues when reward variance stays above the floor', () => {
const supervisor = new TrainSupervisor();
const rewards = [0, 0.3, 0.6, 0.9, 0.2, 0.7, 0.1, 0.8, 0.4, 1];
for (const [idx, reward] of rewards.entries()) {
expect(superv... | codex-hackathon | lib/training/supervisor.test.ts | TypeScript | 1d5922ebe73fdef3e4ceacf40bb6324721490edadab101694960650abb36a07d | 1 | 251 |
import type { TrainPoint } from '@/lib/streams/trainParser';
import { rollbackToLatestCheckpoint } from '@/lib/training/rollback';
export type SupervisorSignal =
| { kind: 'continue' }
| { kind: 'rollback'; reason: 'nan' | 'spike'; nextRollbackIndex: number }
| { kind: 'abort'; reason: 'nan.unrecoverable' | 'spike.... | codex-hackathon | lib/training/supervisor.ts | TypeScript | a672926f1199097721bb2fbcc589971ce64256e71f4b0f9bab8147dd4f3bcf2a | 0 | 682 |
import { describe, expect, it } from 'vitest';
import { transformSftToGrpo } from './transformGrpoJsonl';
describe('transformSftToGrpo', () => {
it('maps tool-call rows to prompt + tool name answer', () => {
const rows = transformSftToGrpo([
JSON.stringify({
messages: [
{ role: 'system', content: 'You a... | codex-hackathon | lib/training/transformGrpoJsonl.test.ts | TypeScript | 4597b3a757eef290519aea30599560bd8c23e483789f62c3dfcb2a27e5be4952 | 0 | 309 |
import type { ChatMessage } from '@/lib/data/types';
export type GrpoRow = {
prompt: string;
answer: string;
};
function lastMessage(messages: ChatMessage[], role: ChatMessage['role']): ChatMessage | undefined {
return [...messages].reverse().find((message) => message.role === role);
}
export function transformSf... | codex-hackathon | lib/training/transformGrpoJsonl.ts | TypeScript | 49ad91369ef0943200bfe4e57d1023ef91ae114324a7893099b1e9f98860c370 | 0 | 293 |
import { getModel } from '@/lib/model';
import { generateText } from 'ai';
export const WORKER_ROLES = [
'discovery',
'tool-design',
'data-gen-qa',
'data-gen-traj',
'eval-gen',
] as const;
export type WorkerRole = (typeof WORKER_ROLES)[number];
export type RoleResult = {
text: string;
usage?: unknown;
};
exp... | codex-hackathon | lib/workers/roles.ts | TypeScript | 91e9185681360db6a2fef650269245a54113762efc9952fa8767085273dc9fbf | 0 | 199 |
{
"schemaVersion": "1",
"inventoryVersion": "1.0.1",
"categories": [
{
"category": "legacy-command",
"scanRule": "controlled tracked paths plus explicit source declarations",
"discoveredCount": 22,
"recordCount": 22,
"status": "reconciled",
"policy": "records"
},
{
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 2ace011c6a57a2f42bdc4ed160405eb9acee9e2b66ffb99676ee2a862d247c58 | 0 | 896 |
path declarations and tracked metadata are represented; artifact contents remain unopened."
},
{
"class": "device-container-state",
"inspection": "not-inspected",
"reason": "External or operator-controlled state is represented by source expressions and deliberately not inspected."
},
{... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 4e7236d4a7793131ece2bdf2ca876f9fc372c13fae22d9e7ff8011da19142180 | 1 | 896 |
pre-mlx-phases/01-foundation-smoke/01-01-next-scaffold-sentry-providers-PLAN.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-02-SUMMARY.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-02-python-venv-microbench-PLAN.md",
".planning/milesto... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 956194f0cb07191dc8cd69014b308f32c41cc42758817dc89dd1fefeee2f0096 | 2 | 896 |
/milestones/legacy-2026-04-pre-mlx-phases/03-discovery-tool-design/03-04-swarm-pipeline-manifest-PLAN.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/03-discovery-tool-design/03-05-SUMMARY.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/03-discovery-tool-design/03-05-fallback-hand-written-... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 99569803bd7bff99ae64c5c2d9f0b4bcef892dea4ff3a952a99090a2f406ef35 | 3 | 896 |
-04-pre-mlx-phases/05-train-model-a/05-02-training-scripts-PLAN.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/05-train-model-a/05-03-supervisor-rollback-transform-PLAN.md",
".planning/milestones/legacy-2026-04-pre-mlx-phases/05-train-model-a/05-04-e2e-notes.md",
".planning/milestones/legacy... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 58278a9774a1298433bee8e998df7521d8d296bd89d16cb17fd0962b467fe6bd | 4 | 896 |
value": "/status"
}
},
{
"category": "legacy-command",
"locator": {
"path": "src/commands/index.ts",
"kind": "command",
"value": "/help"
}
},
{
"category": "legacy-command",
"locator": {
"path": "src/commands... | codex-hackathon | migration/legacy-assets.v1.json | JSON | f0db902ffcee7c8ce43cd55227d1b060705bd1c13d5e15f9453f08c87b50236d | 5 | 896 |
: "runtime-path",
"locator": {
"path": "src/lib/config.ts",
"kind": "expression",
"value": "data/training/model-a-adapter"
}
},
{
"category": "runtime-path",
"locator": {
"path": ".env.example",
"kind": "expression",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | b90b6b5adf718188ca241d4fedbd8baec3a2be1f0991d7d7651edac798fb93b1 | 6 | 896 |
scripts/ios-deploy-device.sh",
"kind": "expression",
"value": "data/state/ios-device.json"
}
},
{
"category": "runtime-path",
"locator": {
"path": "scripts/verify-device.sh",
"kind": "expression",
"value": "data/state/verify-device.js... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 3055ae02cf387ec20e8d707fe05732f53cf24dcdc68471357145d2a15dd90035 | 7 | 896 |
: {
"path": "scripts/fuse-bench.sh",
"kind": "artifact",
"value": "data/fused-e4b-50iter"
}
},
{
"category": "generated-artifact",
"locator": {
"path": "scripts/preflight-demo.sh",
"kind": "artifact",
"value": "data/state/pr... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 1adccc7ff2fc3507373028127343623f109471d10ea024030de531418b3a98f0 | 8 | 896 |
": 1,
"component": "typed-cli-command-tree",
"reviewed": true
},
"requirementCoverage": [
"IDEN-05"
],
"acceptanceCoverage": [
"AC-09"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"d... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 5ef56789be6f93976c06bb4ed59e414c70eb55253d47e1fd729178cb763d7000 | 9 | 896 |
command",
"locator": {
"path": "src/commands/index.ts",
"kind": "command",
"value": "/data-gen"
},
"legacyPurpose": "Legacy legacy-command locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 1,
"component": "typed-cli-... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 8bc354c385e02d01d0febb9412ec4bc86ab553185a7070adddccabc2e52c8857 | 10 | 896 |
controlled-git-and-source-snapshot",
"source": "src/commands/index.ts",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "518d711066d9f85e8e1ac012e2b9abbf0e350e10217e8ef6fe4e35869c098dc2",
"category": "legacy-command",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 9e2cf8ca9acc010ae868c5c00da297e95cf0a18bc160fbbedd29b101e5d7430e | 11 | 896 |
"reviewed": true
},
"requirementCoverage": [
"IDEN-05"
],
"acceptanceCoverage": [
"AC-09"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | d9ae9febd45e84cbf62fee67e518f4a9182d4e913fd7c50f589511ab28564041 | 12 | 896 |
.ts",
"kind": "command",
"value": "/q -> quit"
},
"legacyPurpose": "Legacy legacy-command locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 1,
"component": "typed-cli-command-tree",
"reviewed": true
},
"require... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 36b3870138f5e39b8c2796c3be83382d81222f32ce934844d2ccea6c759fd32c | 13 | 896 |
.ts",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "9f0866fccb6ee8d62df1485d9dc8a836805d59e8607eec74bfdd4c6f99a2a50c",
"category": "legacy-command",
"locator": {
"path": "src/commands/index.ts",
"kind":... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 58a6de3133263fd175db9087fe0f854d47447d52869f21a58da5926ab01d726e | 14 | 896 |
: [
"AC-03"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "README.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | f4a46c67214400be8ef3ae5db04f0a0a57a1326ccc72f2587a075897e84ae230 | 15 | 896 |
.",
"replacementOwner": {
"phase": 2,
"component": "contained-local-state-foundation",
"reviewed": true
},
"requirementCoverage": [
"FNDN-01"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"stat... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 0e78b7bacb1b45a31c1da6998e8a0babdb9d3ef72c81151406c671334fb7783d | 16 | 896 |
},
{
"id": "b62dfc3595c00cbe9ef3942a109dc404e748b9c0738b4cae0c4a660ee32b6940",
"category": "runtime-path",
"locator": {
"path": "lib/data/split.ts",
"kind": "expression",
"value": "data/split.manifest.json"
},
"legacyPurpose": "Legacy runtime-path locator retain... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 5ce03a5dd39789af89827a706bdf454dac13734e8c586d65a9a257fe90a5f5a4 | 17 | 896 |
review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "lib/discovery/manifest.ts",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id"... | codex-hackathon | migration/legacy-assets.v1.json | JSON | aabead7334f9fd26ac33581fbb5ad4d2d52455762247700bc8e296be4020d9a8 | 18 | 896 |
runtime-path locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 2,
"component": "contained-local-state-foundation",
"reviewed": true
},
"requirementCoverage": [
"FNDN-01"
],
"acceptanceCoverage": [
"AC-13"
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 8ce09215e881db44ebea19b0619805b165808f409e649ae5e6ca3cc4e727c006 | 19 | 896 |
snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "cd12fe209328f6d15e3e27c3a8b7038c7bac30103b5b794969c470e01812c213",
"category": "runtime-path",
"locator": {
"path": "scripts/ios-deploy-device.sh",
"kind": "expressi... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 0bb632d8b61ffad4d633af70b059b2d22ee55d9d0195c0319c8f9d2e8e3c678c | 20 | 896 |
true
},
"requirementCoverage": [
"FNDN-01"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"sour... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 68cf95855d4b7f111c0a71a0dea8221464f476eb5e4ba0bacc95d02c5f0e6325 | 21 | 896 |
-artifact",
"locator": {
"path": "data/adapter-tools.json",
"kind": "file",
"value": "data/adapter-tools.json"
},
"legacyPurpose": "Legacy generated-artifact locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 5,
"comp... | codex-hackathon | migration/legacy-assets.v1.json | JSON | aa782882f144e88440834a2292ebd30c76d6693e580869096be50a546b6a336f | 22 | 896 |
pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "data/bench/e4b.log",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "b3ee557615865e9978d4bd89de32add80b... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 305aeca69d7cc8cef7a6e2b1ea355170d7f8a93c62b16a187f3f8bedab4e44b8 | 23 | 896 |
file",
"value": "data/bench/rank-help.log"
},
"legacyPurpose": "Legacy generated-artifact locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 5,
"component": "versioned-dataset-and-export-builds",
"reviewed": true
},
"re... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 7c5c02b8bd672014666aa03e5e78333286f4a366272f964b096885f2b6ae8d25 | 24 | 896 |
",
"source": "data/corpus.json",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "b2f25efa57ae6f2d9f75064fb290f98be9243ed04864fa8886a6fdd5281ac31d",
"category": "generated-artifact",
"locator": {
"path": "... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 0d30fb93f7665b217de02b5f8e15da023705404341af60488a406f16d6436404 | 25 | 896 |
"legacyPurpose": "Legacy generated-artifact locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 5,
"component": "versioned-dataset-and-export-builds",
"reviewed": true
},
"requirementCoverage": [
"DATA-01"
],
"acceptance... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 8632c48975647ef2c188d7a33f8999c65aa28a06f7424e807b24f2b5b3f18343 | 26 | 896 |
emit-jsonl.ts",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "0e3eb71088f10c11ad20396669072296cb7fa64da02430a27a87a9701d409357",
"category": "generated-artifact",
"locator": {
"path": "lib/data/emit-jsonl.ts",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 71a345b32dbbeb88e0e9556335b080b377282da128e6f06f22bef8bcd52af12e | 27 | 896 |
component": "versioned-dataset-and-export-builds",
"reviewed": true
},
"requirementCoverage": [
"DATA-01"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"dis... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 59f987135544130f10b6009600e902551195f42e59b572ed825f97e1ceb6f96e | 28 | 896 |
: "06e9f23e466ec5928918143dd770b654ca7fc8ec6adfc84edc9c4451f59b0eed",
"category": "generated-artifact",
"locator": {
"path": "scripts/fuse.sh",
"kind": "artifact",
"value": "data/fused/model-a/adapter-tools.json"
},
"legacyPurpose": "Legacy generated-artifact locator reta... | codex-hackathon | migration/legacy-assets.v1.json | JSON | f1adfc179e52fa9ee18f7c8059909b9cb813f9cee33a1fb4969f01cd0cad56a2 | 29 | 896 |
": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "scripts/_lib.sh",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "b54c8a0afdfa4... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 8f128d4924da00b7efd2a0d1ad63170f1001ceebeb255e2fc777cca5f2cd53dc | 30 | 896 |
,
"replacementOwner": {
"phase": 7,
"component": "inspected-allowlisted-training-operations",
"reviewed": true
},
"requirementCoverage": [
"TRNG-01"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 152c2bf6ee4ff13aa28c51dd2830ea215e6e2ca91658201a36366471817284fb | 31 | 896 |
,
"locator": {
"path": "scripts/ios-deploy-device.sh",
"kind": "file",
"value": "scripts/ios-deploy-device.sh"
},
"legacyPurpose": "Legacy script locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 7,
"component": "ins... | codex-hackathon | migration/legacy-assets.v1.json | JSON | d9822729167d88523ef13f016ee5d2de7859a590978f50ed5eedb524dbd0fd14 | 32 | 896 |
-git-and-source-snapshot",
"source": "scripts/setup-venv.sh",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "6c246ed29c1756ed57172971b05e9bc92ecdd7b7eb8920ab2838a8bd69e96148",
"category": "script",
"locator": {
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 864e4caed17301dcb340dcaaa82ba3de9d17d85ebc1037fe1747e54db2a5b031 | 33 | 896 |
"phase": 1,
"component": "canonical-mlx-identity-and-migration-gate",
"reviewed": true
},
"requirementCoverage": [
"IDEN-01",
"IDEN-07",
"IDEN-08"
],
"acceptanceCoverage": [
"AC-01",
"AC-13",
"AC-16",
"AC-18"
],
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | e89e4ac347a625e375708cdd2bc87fe0b8811642c04defa058920d5c24fe4aee | 34 | 896 |
disposition": "adapt",
"removalStatus": "blocked"
},
{
"id": "1a5bb244820851aadfb4de90a5dc2a28a197f7b6a8bb4586530411f3fcc634e5",
"category": "dynamic-tool-path",
"locator": {
"path": "lib/data/traj-worker.ts",
"kind": "symbol",
"value": "runTrajectoryWorker"
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 28c19765326a1ccccde67f50bea31eca8a1ba171668fa4f8a33872cd6eda9bf8 | 35 | 896 |
"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "lib/discovery/pipeline.ts",
"snapshot": "phase-1-plan-05"
},
"disposition": "adapt",
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 3f54846fd208d0b62931f9492e2713e5fbf0099e6c1c8c37ee18cd5fa7f3b37c | 36 | 896 |
"value": "ios/SpecialistApp/AdapterLoaderView.swift"
},
"legacyPurpose": "Legacy ios-component locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 8,
"component": "optional-ios-migration-evidence",
"reviewed": true
},
"requireme... | codex-hackathon | migration/legacy-assets.v1.json | JSON | b7c82b610d9371c203d2a436147ae49b253ffb97fb4a07392f844231a5e04058 | 37 | 896 |
.swift",
"snapshot": "phase-1-plan-05"
},
"disposition": "retain",
"removalStatus": "blocked"
},
{
"id": "ea5cf38f93bd6a85b6f46cec2c9ecdcc88b78a67df1243c8307ff0aefc3af1a9",
"category": "ios-component",
"locator": {
"path": "ios/SpecialistApp/GemmaToolParser.sw... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 47d2cb0bb5c8de0b82e70aebb112978735fa6ee705644ec968940048c231b4c8 | 38 | 896 |
"requirementCoverage": [
"SCAL-06"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": "ios/Specialist... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 2ac9e524f8b352b92738d7cec0102094b3398c1621d29f9d33a992e2b452285b | 39 | 896 |
planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-01-SUMMARY.md",
"kind": "file",
"value": ".planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-01-SUMMARY.md"
},
"legacyPurpose": "Legacy planning-artifact locator retained as exact brownfield migra... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 9513ec92ac67afde08a9f1d7dfc36630a9d14cbc124ee202ded2b8f106181b83 | 40 | 896 |
-pre-mlx-phases/01-foundation-smoke/01-02-SUMMARY.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "archive",
"removalStatus": "blocked"
},
{
"id": "1ba8156f57326a0fe9ffaef4beec56b8c3311277d81ceef9ee77581b267e3121",
"category": "planning-artifact",
"locator": {
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 0008d75f87bffc77a5c8749d66d0e6a8519b78be3aaf45697d6e5b7ea6f77a8b | 41 | 896 |
-archive",
"reviewed": true
},
"requirementCoverage": [
"IDEN-07"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-... | codex-hackathon | migration/legacy-assets.v1.json | JSON | e292a95fd80a768717c8e2ce0adec0ca55c893380314cc5074e1f1c0f99d1281 | 42 | 896 |
"archive",
"removalStatus": "blocked"
},
{
"id": "b7561611cd62abd51dff659b42d5c206563c8153c7f709b538387230616e3fa1",
"category": "planning-artifact",
"locator": {
"path": ".planning/milestones/legacy-2026-04-pre-mlx-phases/02-orchestrator-harness/02-01-pipeline-coordinator-worker... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 8c3295b9e9a176947eb22326d7d0fb28b435aba41b37dd1dcb9c80604f80da8d | 44 | 896 |
review": {
"status": "pending"
},
"provenance": {
"discoveredBy": "phase-1-controlled-git-and-source-snapshot",
"source": ".planning/milestones/legacy-2026-04-pre-mlx-phases/02-orchestrator-harness/02-02-train-subprocess-loss-chart-PLAN.md",
"snapshot": "phase-1-plan-05"
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 380a91e1f850fe637175b2d91a47aef48f059bb932be3348f29ca01557c52d1f | 45 | 896 |
.md"
},
"legacyPurpose": "Legacy planning-artifact locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 1,
"component": "legacy-planning-evidence-archive",
"reviewed": true
},
"requirementCoverage": [
"IDEN-07"
],
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | e0021a9453591d590b68ab5c6ba305b6147ccc4d760c89ed7d6e14986d60f9c2 | 46 | 896 |
: "planning-artifact",
"locator": {
"path": ".planning/milestones/legacy-2026-04-pre-mlx-phases/03-discovery-tool-design/03-02-SUMMARY.md",
"kind": "file",
"value": ".planning/milestones/legacy-2026-04-pre-mlx-phases/03-discovery-tool-design/03-02-SUMMARY.md"
},
"legacyPurpose"... | codex-hackathon | migration/legacy-assets.v1.json | JSON | bf17e46d7fab26211fcbbe1d42f7187571aadd603f7793d2b54838e10b7010f0 | 47 | 896 |
2026-04-pre-mlx-phases/03-discovery-tool-design/deferred-items.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "archive",
"removalStatus": "blocked"
},
{
"id": "439ec7d01cdf05720c9d8041312e64cd8a54ea143ea0eb9882854c37ae962121",
"category": "planning-artifact",
"l... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 0785233ca25dfc2531ee6bb442b2466d6d94ed60ddad74929514fcae7f0626c6 | 51 | 896 |
": "legacy-planning-evidence-archive",
"reviewed": true
},
"requirementCoverage": [
"IDEN-07"
],
"acceptanceCoverage": [
"AC-13"
],
"replacementEvidence": [],
"review": {
"status": "pending"
},
"provenance": {
"discoveredBy": ... | codex-hackathon | migration/legacy-assets.v1.json | JSON | d23667e75215e0a90a1a394b1da58ca0f4a83c9d85ea951264c34f4b63ecdfcf | 52 | 896 |
-and-source-snapshot",
"source": ".planning/milestones/legacy-2026-04-pre-mlx-phases/04-data-eval-gen/04-04-data-gen-traj-worker-PLAN.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "archive",
"removalStatus": "blocked"
},
{
"id": "6f3a6f5822d7b9ad758e55c3317b15f70fa... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 77e8da93b09329826efca48111f16aa0dfdb90bf009bee95c2a8999103c2b106 | 54 | 896 |
": "Legacy planning-artifact locator retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 1,
"component": "legacy-planning-evidence-archive",
"reviewed": true
},
"requirementCoverage": [
"IDEN-07"
],
"acceptanceCoverage": [
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | f7ef7c19df18115d7b0d136bdbdba94e064aca3a020c32c3b80f34b284b1c637 | 55 | 896 |
-pre-mlx-phases/05-train-model-a/05-01-smoke-and-version-bump-PLAN.md",
"kind": "file",
"value": ".planning/milestones/legacy-2026-04-pre-mlx-phases/05-train-model-a/05-01-smoke-and-version-bump-PLAN.md"
},
"legacyPurpose": "Legacy planning-artifact locator retained as exact brownfield migra... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 48934677f25055bb1db14b8a6ecec6b84ecda09d97d9828a990054db837e9a1d | 56 | 896 |
": ".planning/milestones/legacy-2026-04-pre-mlx-phases/05-train-model-a/05-02-SUMMARY.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "archive",
"removalStatus": "blocked"
},
{
"id": "e0842b5a92369e80af022baed6ce0e07ff465a79f1f4649c6f7fbc43bdd032fc",
"category": "plann... | codex-hackathon | migration/legacy-assets.v1.json | JSON | 5c9c6b06290edcf3711717a87fbd77ceb82f6518365dd7c23e8ebc83360cf841 | 57 | 896 |
retained as exact brownfield migration evidence.",
"replacementOwner": {
"phase": 1,
"component": "legacy-planning-evidence-archive",
"reviewed": true
},
"requirementCoverage": [
"IDEN-07"
],
"acceptanceCoverage": [
"AC-13"
],
"replacemen... | codex-hackathon | migration/legacy-assets.v1.json | JSON | f45ac82286b9f38cf5c4f333ec4accfbb4b685b76d72d696281759ffa7543478 | 58 | 896 |
-controlled-git-and-source-snapshot",
"source": ".planning/milestones/legacy-2026-04-pre-mlx-phases/06-fuse-deploy-verify-cassette/06-02-ios-chatview-statuspill-toolsloader-PLAN.md",
"snapshot": "phase-1-plan-05"
},
"disposition": "archive",
"removalStatus": "blocked"
},
{
... | codex-hackathon | migration/legacy-assets.v1.json | JSON | c008d4b46ad00284d080f5608740b703a75dc567a41d3797649c0f6828e88036 | 60 | 422 |
# MLX — the personal coding dataset and model pipeline: Legacy Migration Review
> This project is distinct from Apple's MLX project and is not affiliated with or endorsed by Apple.
Canonical source: `migration/legacy-assets.v1.json` (schema 1, inventory 1.0.1).
This file is generated from validated JSON. Do not edit ... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 7fd7e227f9419646410a6faec4b2ad2b72e224e114e9df8af729dfc554398057 | 0 | 896 |
.
- Disposition/removal: adapt / blocked
- Owner: Phase 1 / typed-cli-command-tree / reviewed=true
- Coverage: requirements=IDEN-05; acceptance=AC-09
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-source-snapshot / src/commands/index.ts / phase-1-plan-0... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | b28d2a75d6a26f7e5ae3bb02932cb15b7ff60e7394c640df27113b579ea2fe85 | 1 | 896 |
discover`
- Purpose: Legacy legacy-command locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 1 / typed-cli-command-tree / reviewed=true
- Coverage: requirements=IDEN-05; acceptance=AC-09
- Evidence: none — removal remains blocked
- Review: pending... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 778103a319b337b2fc96e0388c833a3796c6d51840cd98a1e31bc19f1f66e1b6 | 2 | 896 |
`src/commands/index.ts#command=/q -> quit`
- Purpose: Legacy legacy-command locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 1 / typed-cli-command-tree / reviewed=true
- Coverage: requirements=IDEN-05; acceptance=AC-09
- Evidence: none — removal re... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 4929a658c50378f1fcc349e542669626482214ae2ff62eb9b217b1f9e6348187 | 3 | 896 |
/ phase-1-plan-05
### executable-name
- **600c483e5e998607a5c11a7b0cdcc8e6ee4b817d224853d354a9db8f77c13317** — `README.md#executable=bun src/cli.tsx`
- Purpose: Legacy executable-name locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 1 / sole-mlx-pack... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | e753d64940377bd30e932a02266656ff9228052c398818971f347c57682ca7a9 | 4 | 896 |
snapshot / lib/data/emit-jsonl.ts / phase-1-plan-05
- **f611ba376b9a00cb8a0fed4d7ed39397766bc2742a1793d41be762ae934fb680** — `lib/data/emit-jsonl.ts#expression=data/training.jsonl`
- Purpose: Legacy runtime-path locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Own... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 21b757f429636340c56d332d0550230885ab2174fd9f3c3a4a5fcdf568507e34 | 5 | 896 |
requirements=FNDN-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-source-snapshot / scripts/_lib.sh / phase-1-plan-05
- **4df045270b89b531145af2e4baa4b5a7c4a4d69ccb5238f6eea5d65be50bad1e** — `scripts/deploy-adapter.sh#expression=/tmp/adap... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | d6a0a8fbb02b3d8bc41ff75e18de4b5032c137d05837443f985beb2731d73a38 | 6 | 896 |
`scripts/preflight-demo.sh#expression=data/cassette`
- Purpose: Legacy runtime-path locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 2 / contained-local-state-foundation / reviewed=true
- Coverage: requirements=FNDN-01; acceptance=AC-13
- Evidence:... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 5a6ce732e91161c6694b5f1985807add7f058c7f613bd53433aa0fa6216eb430 | 7 | 896 |
-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-source-snapshot / data/adapter-tools.json / phase-1-plan-05
- **6da7cf9be08ee0eac641089c59760517cc93097f01efc5b8d9dec850231b8b0e** — `data/bench/README.md#file=data/bench/README.md`
- Pur... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 83627c5f2898f86fe0c5115b13a5cb1f0d49c9385346b531a5e108bb15ed8cde | 8 | 896 |
- **db74f2ead2a4697d1446d13966d36503d7a8ec238d16ef288437d0eb3cfb8c8f** — `data/bench/rank-help.log#file=data/bench/rank-help.log`
- Purpose: Legacy generated-artifact locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 5 / versioned-dataset-and-export-bui... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 4cc852611c44e8d194eda5de8b407975f7fefad2d13f61ebf2cf0a7115574e7c | 9 | 896 |
removal: adapt / blocked
- Owner: Phase 5 / versioned-dataset-and-export-builds / reviewed=true
- Coverage: requirements=DATA-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-source-snapshot / data/training/grpo/train.jsonl / phase-1-pl... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 10af0105c787c5181ba43da29ab9bb07a0a5fdfd2ecc1905cc55da6869e205e1 | 10 | 896 |
1-controlled-git-and-source-snapshot / lib/data/split.ts / phase-1-plan-05
- **5491d74120fccc06ada366f10971215c8b01941751d7269d6d2850718f2f990a** — `scripts/_lib.sh#artifact=data/training/model-a-adapter/adapter_config.json`
- Purpose: Legacy generated-artifact locator retained as exact brownfield migration evidence... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | fcd4f36714b12880a5e28e946c5cb3e5e1cf2e30b27ba33e9dc8560ae10ecdcb | 11 | 896 |
as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 5 / versioned-dataset-and-export-builds / reviewed=true
- Coverage: requirements=DATA-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-sourc... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 7ebfdacb07bf031a1c24497f2d76fc31ea4698d4e1605cb7dfa9bc35c06d0eb7 | 12 | 896 |
*99a4f2bfca713ef87bc97ca34ebd41ae50f387bec5bf45386e3c4d37415a24ae** — `scripts/grpo-smoke.sh#file=scripts/grpo-smoke.sh`
- Purpose: Legacy script locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 7 / inspected-allowlisted-training-operations / reviewed=... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 36392a160b072b730a99895dda187e948384c14e99f10a21ace3230e20f655ec | 13 | 896 |
controlled-git-and-source-snapshot / scripts/setup-venv.sh / phase-1-plan-05
- **6c246ed29c1756ed57172971b05e9bc92ecdd7b7eb8920ab2838a8bd69e96148** — `scripts/smoke-pipeline.ts#file=scripts/smoke-pipeline.ts`
- Purpose: Legacy script locator retained as exact brownfield migration evidence.
- Disposition/removal: a... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 881485dc8c9d6c59ca2ace0dcb49ddb5f62e05eba26489361d52540f3f0e87f9 | 14 | 896 |
Owner: Phase 6 / fixed-host-coding-tools / reviewed=true
- Coverage: requirements=BNCH-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: phase-1-controlled-git-and-source-snapshot / ios/SpecialistApp/ToolRegistry.swift / phase-1-plan-05
- **1a5bb244820851aadfb4de90... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 105d65b6928ca69b169bf41bf11d469a582f2ee2e52044cff8fd2f9d45fa09c4 | 15 | 896 |
: Legacy dynamic-tool-path locator retained as exact brownfield migration evidence.
- Disposition/removal: adapt / blocked
- Owner: Phase 6 / fixed-host-coding-tools / reviewed=true
- Coverage: requirements=BNCH-01; acceptance=AC-13
- Evidence: none — removal remains blocked
- Review: pending
- Provenance: ... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 062e0db397568cdde39256178fbbebd734f7ac0c424e5ddece52b05f6d0d4a00 | 16 | 896 |
-and-source-snapshot / ios/SpecialistApp/GemmaToolParserTests.swift / phase-1-plan-05
- **d414cfe40a906a74c3ac6e968cd96240f851dffeb7b444f530ffc60477d160c9** — `ios/SpecialistApp/ModelState.swift#file=ios/SpecialistApp/ModelState.swift`
- Purpose: Legacy ios-component locator retained as exact brownfield migration ev... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | c6f44bdc265e4bdd3d1ae9ccb9514382ebd27e77ee0b29e4187edb7ab92c1c12 | 17 | 896 |
SUMMARY.md / phase-1-plan-05
- **a869356f6a24e0746f0d1f7d2e04f4e72513eb429c961f7d0bc1e1c49397a529** — `.planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-01-next-scaffold-sentry-providers-PLAN.md#file=.planning/milestones/legacy-2026-04-pre-mlx-phases/01-foundation-smoke/01-01-next-scaffold-sent... | codex-hackathon | migration/legacy-assets.v1.md | Markdown | 7ebf4d45072f0298bf5156b95335b4f2d46dfc5c48b11c7a720dc7af5e5f5001 | 18 | 896 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.