@casey.gowrie/eve-ext-notes
v0.1.0
Published
eve extension: durable notes toolkit (tools + hook + skill).
Maintainers
Readme
@casey.gowrie/eve-ext-notes
An eve extension: a durable notes toolkit. It contributes tools, a hook, and a skill that compose into any consuming agent under a namespace.
Contents
- Tools —
add_note,list_notes,clear_notes. Notes persist in extension-scopeddefineState, so they survive across a session and never collide with the host agent's state. - Hook —
audit: observe-only logging of every successful note save. - Skill —
daily-standup: turns saved notes into a standup summary.
Config
Bound once when the consumer mounts the extension:
| key | type | default | meaning |
| ---------- | ------ | ------- | ---------------------------- |
| maxNotes | number | 50 | Cap on stored notes. |
Install & mount
npm install @casey.gowrie/eve-ext-notesimport notes from "@casey.gowrie/eve-ext-notes";
export default notes({ maxNotes: 25 });The mount file's basename is the namespace, so tools compose as notes__add_note,
notes__list_notes, and notes__clear_notes.
Requirements
eve is a peer dependency (^0.22.3): the consuming app supplies the single
eve install that resolves this extension's eve/* imports.
