@alextis59/athena 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/dist/cli/help.js +1 -1
- package/dist/cli/run.d.ts.map +1 -1
- package/dist/cli/run.js +119 -6
- package/dist/cli/run.js.map +1 -1
- package/dist/indexer/index.d.ts +1 -1
- package/dist/indexer/index.d.ts.map +1 -1
- package/dist/indexer/run.d.ts +16 -1
- package/dist/indexer/run.d.ts.map +1 -1
- package/dist/indexer/run.js +160 -2
- package/dist/indexer/run.js.map +1 -1
- package/dist/parsers/pdf2llm.d.ts +2 -2
- package/dist/parsers/pdf2llm.js +1 -1
- package/package.json +5 -4
- package/docs/QUALITY.md +0 -137
- package/docs/SECURITY.md +0 -140
- package/docs/adr/0001-sqlite-driver.md +0 -23
- package/docs/agentic-rag-specifications.md +0 -670
- package/docs/agentic-rag-study.md +0 -1056
- package/docs/exec-plans/template.md +0 -67
- package/docs/implementation-plan.md +0 -1433
- package/docs/index.md +0 -61
- package/docs/mcp-integration.md +0 -227
- package/docs/tech-debt-tracker.md +0 -21
- package/docs/validation-corpus.md +0 -71
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
# Execution Plan: <title>
|
|
2
|
-
|
|
3
|
-
Date: <yyyy-mm-dd>
|
|
4
|
-
|
|
5
|
-
## Goal
|
|
6
|
-
|
|
7
|
-
Describe the user-visible outcome and the repository behavior that will change.
|
|
8
|
-
|
|
9
|
-
## Scope
|
|
10
|
-
|
|
11
|
-
In scope:
|
|
12
|
-
|
|
13
|
-
- <files, modules, commands, docs, or workflows>
|
|
14
|
-
|
|
15
|
-
Out of scope:
|
|
16
|
-
|
|
17
|
-
- <explicitly deferred or preserved behavior>
|
|
18
|
-
|
|
19
|
-
## Current Behavior
|
|
20
|
-
|
|
21
|
-
Summarize what the code and docs do now. Link the relevant files, tests, and
|
|
22
|
-
commands inspected before editing.
|
|
23
|
-
|
|
24
|
-
## Constraints And Invariants
|
|
25
|
-
|
|
26
|
-
- Preserve the `athena` binary name and `@alextis59/athena` package identity.
|
|
27
|
-
- Preserve local-first defaults and explicit remote document-text opt-ins.
|
|
28
|
-
- Preserve Athena-owned agent loop and citation validation unless this plan is
|
|
29
|
-
explicitly about changing them.
|
|
30
|
-
- Preserve `pdf-2-llm` as the PDF ingestion path unless this plan is explicitly
|
|
31
|
-
about parser architecture.
|
|
32
|
-
- Keep MCP read-only unless this plan includes a security design for writes.
|
|
33
|
-
|
|
34
|
-
Add task-specific constraints here.
|
|
35
|
-
|
|
36
|
-
## Plan
|
|
37
|
-
|
|
38
|
-
1. Inspect the relevant code, docs, tests, and package scripts.
|
|
39
|
-
2. Make the smallest implementation or documentation change that satisfies the
|
|
40
|
-
goal.
|
|
41
|
-
3. Update adjacent docs, tests, fixtures, or debt notes when behavior changes.
|
|
42
|
-
4. Run the validation below.
|
|
43
|
-
5. Record results and any follow-up debt.
|
|
44
|
-
|
|
45
|
-
## Validation
|
|
46
|
-
|
|
47
|
-
Commands to run:
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
<command>
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
Expected outcomes:
|
|
54
|
-
|
|
55
|
-
- <observable pass condition>
|
|
56
|
-
|
|
57
|
-
If validation is skipped, record the reason and residual risk.
|
|
58
|
-
|
|
59
|
-
## Rollback
|
|
60
|
-
|
|
61
|
-
Describe how to revert the change or disable the behavior if validation fails
|
|
62
|
-
after merge.
|
|
63
|
-
|
|
64
|
-
## Notes
|
|
65
|
-
|
|
66
|
-
Capture decisions, tradeoffs, and follow-up items that should survive the
|
|
67
|
-
implementation turn.
|