Skip to content

Commit 9b6abd4

Browse files
authored
Merge pull request #87 from dev-wooyeon/codex/quality-gates-recovery
2 parents 6c88e4b + 6bef1ff commit 9b6abd4

27 files changed

Lines changed: 441 additions & 414 deletions

docs/exec-plans/active/2026-03-11-refactor-to-standard-nextjs.md

Lines changed: 0 additions & 52 deletions
This file was deleted.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Refactor to Standard Next.js Structure
2+
3+
Status: superseded on 2026-03-30
4+
5+
## 1. Goal
6+
7+
This plan proposed flattening the current feature-first structure into a more
8+
generic Next.js layout. It is no longer active because the repository guidance
9+
now explicitly preserves `src/features`, `src/shared`, `src/domains`, and
10+
`src/core` by responsibility.
11+
12+
## 2. Scope
13+
14+
- Do not execute the flattening migration described in the original draft.
15+
- Keep the existing feature-first layout intact unless the repository
16+
guidelines are intentionally changed.
17+
- Preserve the current MDX pipeline and visualization component placement.
18+
- Retain this file only as a record of a rejected direction.
19+
20+
## 3. Constraints
21+
22+
- Repository guidelines take precedence over this draft.
23+
- No directory flattening should happen while `AGENTS.md` requires the
24+
feature-first structure.
25+
- Future structure work must start from an updated execution plan.
26+
27+
## 4. Milestones
28+
29+
1. Mark the draft as superseded.
30+
2. Move it out of `docs/exec-plans/active/`.
31+
3. Revisit only if repository guidelines change.
32+
33+
## 5. Verification
34+
35+
- Confirm no active execution plan in this repository asks for structure
36+
flattening.
37+
- Keep the active plan folder reserved for work that still matches current
38+
repository rules.
39+
40+
## 6. Rollback
41+
42+
- Restore the file to `docs/exec-plans/active/` only if the repository
43+
guidelines are deliberately changed and the plan is rewritten to match the
44+
new rules.

internal/scripts/posts/new-post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function main() {
7272
chalk.red(`Error: Directory posts/${slug} already exists!`)
7373
);
7474
process.exit(1);
75-
} catch (e) {
75+
} catch {
7676
// Directory doesn't exist, proceed
7777
}
7878

0 commit comments

Comments
 (0)