Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ Autoredi.snk

# AI
AGENTS.md
codex-plan.md
CLAUDE.md
GEMINI.md
SCRATCH.md
Expand Down
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Benchmarks (Release)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Benchmarks (Release)",
"program": "dotnet",
"args": [
"run",
"--project",
"${workspaceFolder}/benchmarks/Autoredi.Benchmarks/Autoredi.Benchmarks.csproj",
"-c",
"Release"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"stopAtEntry": false
}
]
}
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Benchmarks (Release)",
"type": "process",
"command": "dotnet",
"args": [
"build",
"benchmarks/Autoredi.Benchmarks/Autoredi.Benchmarks.csproj",
"-c",
"Release"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
15 changes: 15 additions & 0 deletions codex-plan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Codex Collaboration Plan

## Context
- Track actions I (the assistant) take so the human partner can see what needs to happen next.
- Focus areas so far: understand Autoredi's generator + Flowgen upgrade path, note where the Flowgen skill instructions live, and capture Autoredi usage guidance in a dedicated skill.

## Flowgen skill notes
- The Flowgen skill referenced in AGENTS is located at `/usr/local/repo/flowgen-source-generator/SKILL.md` (plus the global `~/.codex/skills/flowgen-source-generators/SKILL.md`). It highlights Flowgen v0.7+ features such as `context.Flow()`/`Flow.Create(context)` starting points, `AttributeContext` in `.Select(...)`, and the existing `.Collect()`/`.EmitAll()` pipeline for N-to-1 outputs.

## Work items
1. [x] Upgrade `Autoredi.Generators` to Flowgen 0.7.0, switch the pipeline to `context.Flow()` and the new `AttributeContext` extractors, and keep the aggregated registration builder intact.
2. [x] Capture Autoredi-focused knowledge in a new skill at `/Users/omoi/.codex/skills/autoredi/SKILL.md` and reference it from AGENTS.
3. [ ] Keep waiting for the next set of instructions from the user once this groundwork is ready; update this plan accordingly.

*This file is git-ignored because it is meant for live collaboration notes only.*
Loading
Loading