-
Notifications
You must be signed in to change notification settings - Fork 0
🧹 remove: Delete old atlas files (.abstract.md, .overview.md) #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| ## Project overview using progressive disclosure | ||
|
|
||
| 1. Read and understand: `.napkin/NAPKIN.md` | ||
| 2. run `napkin overview --json` | ||
|
Comment on lines
+3
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new section instructs agents to read If the Prompt To Fix With AIThis is a comment left during a code review.
Path: AGENTS.md
Line: 3-4
Comment:
**Referenced `.napkin/` directory does not exist**
The new section instructs agents to read `.napkin/NAPKIN.md` and run `napkin overview --json`, but neither the `.napkin/` directory nor a `NAPKIN.md` file exist anywhere in the repository (confirmed via git history and working tree). Any agent or contributor following these steps will encounter a missing file.
If the `.napkin/` directory is generated by a tool (e.g. a local `napkin` CLI), consider adding a note that it must be generated first, or commit a bootstrapped version of the file alongside this change so the reference is immediately valid.
How can I resolve this? If you propose a fix, please make it concise. |
||
|
|
||
| --- | ||
|
|
||
| # Project Preferences | ||
|
|
||
| ## Browser, esign/Style | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new section opens with
## Project overview using progressive disclosure(H2), but the next heading is# Project Preferences(H1). Having an H2 before any H1 is invalid heading hierarchy and may confuse both human readers and tools that parse document structure.Prompt To Fix With AI