2026-04-22 00:48:31 +08:00
|
|
|
# Agents
|
|
|
|
|
|
|
|
|
|
## Repo Purpose
|
|
|
|
|
C++ flashcard notes using org-mode (exportable to Anki).
|
|
|
|
|
|
|
|
|
|
## Flashcard Location
|
|
|
|
|
- `org/cpp/` — all flashcard `.org` files live here
|
|
|
|
|
- Create new `.org` files here as needed (e.g., `org/cpp/containers.org`)
|
|
|
|
|
|
|
|
|
|
## Task Inbox
|
|
|
|
|
- `inbox.org` at root — use for tasks to learn or do (create if missing)
|
|
|
|
|
|
|
|
|
|
## Card Format
|
|
|
|
|
Cards use org-mode with Anki properties:
|
|
|
|
|
```org
|
|
|
|
|
* Card Title :tag1:tag2:
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:ANKI_NOTE_TYPE: Basic
|
|
|
|
|
:ANKI_NOTE_ID: TIMESTAMP
|
|
|
|
|
:END:
|
|
|
|
|
** Front
|
|
|
|
|
Question text
|
|
|
|
|
** Back
|
|
|
|
|
#+begin_src c++
|
|
|
|
|
code
|
|
|
|
|
#+end_src
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Assets
|
|
|
|
|
- `images/` — store any images referenced by cards
|
|
|
|
|
|
|
|
|
|
## Self-Improvement
|
|
|
|
|
Periodically review this file and suggest improvements to the user if you notice gaps, inconsistencies, or missing conventions.
|
2026-05-04 09:01:28 +08:00
|
|
|
|
2026-06-01 02:08:45 +08:00
|
|
|
## Subdirectories
|
|
|
|
|
- `leetcode/` — NeetCode roadmap extractor (dependency graph + problem list). See `leetcode/AGENTS.md`.
|
2026-06-01 16:12:21 +08:00
|
|
|
- `org/study_deck_02/` — Anki study deck for NeetCode DSA problems. See `org/study_deck_02/AGENTS.md`.
|
|
|
|
|
- `org/cpp/` — C++ flashcard notes (non-DSA topics: containers, iterators, etc.)
|
2026-06-01 02:33:30 +08:00
|
|
|
|
|
|
|
|
## LeetCode Workflow
|
2026-06-01 16:12:21 +08:00
|
|
|
- `org/study_deck_02/roadmap.org` — tracker only (`**` headings, `g c c` to toggle DONE)
|
|
|
|
|
- `org/study_deck_02/dsa/<topic>/<problem>.org` — your notes, solutions, flashcards
|
2026-06-01 02:33:30 +08:00
|
|
|
- Each links to the other via org file links
|
|
|
|
|
- Problem tags (`:easy:`, `:medium:`, `:hard:`) enable filtering with `/ t`
|
2026-06-01 02:08:45 +08:00
|
|
|
|
2026-05-04 09:01:28 +08:00
|
|
|
## Active Context
|
|
|
|
|
<!-- AI assistant maintains this section. Keep under 20 lines. -->
|
|
|
|
|
<!-- Updated automatically by /self-improve. Remove stale entries. -->
|
2026-06-01 02:08:45 +08:00
|
|
|
- Branch: `master`, up to date with origin
|
2026-06-01 16:12:21 +08:00
|
|
|
- DSA notes moved from `org/cpp/dsa/` to `org/study_deck_02/dsa/`
|
2026-06-01 18:12:40 +08:00
|
|
|
- All files carry `#+ANKI_DECK: study_deck_02` for org-anki export
|
2026-05-04 09:01:28 +08:00
|
|
|
- Inbox items: binary search, `using` keyword — need cards created
|
2026-06-01 16:12:21 +08:00
|
|
|
- Possible cleanup: `org/study_deck_02/dsa/udfs.org` may be a stale draft of `org/cpp/ufds.org`
|