mirror of
https://github.com/gadievron/raptor.git
synced 2026-04-24 21:46:00 +03:00
[GH-ISSUE #7] Feat. Enhanced Memory #2
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/raptor#2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @danielcuthbert on GitHub (Nov 26, 2025).
Original GitHub issue: https://github.com/gadievron/raptor/issues/7
Originally assigned to: @danielcuthbert on GitHub.
We've introduced the concept of memory for RAPTOR and this is currently only really working for the fuzzing function (saved in .raptor in users home dir and fuzzing_memory.json, which looks like so:
What this means is that our fuzzer learns the following:
But it is somewhat isolated and only for fuzzing, which is a bit loco. All the other functions start from scratch every time and this shouldn't be the case. If we take /scan and codeql, in an ideal world, we'd have it learning:
mvn compile -DskipTestsworks 90% of the time"with /crash-analysis, the same could be said:
and so on. So moving forward, what we need is something like:
├── memory.db # SQLite for scalability, especially if we will be running loads
├── fuzzing_memory.json
├── codeql_memory.json
├── crash_analysis_memory.json
├── web_memory.json
└── unified_knowledge.json
This will need a lot more work and thinking but it's on my roadmap