Capture note
Skill sumitaich1998/jarvisvr/skills/productivity/capture-note
An AI agentic operating system for mixed reality on the Meta Quest 3 — your own J.A.R.V.I.S. Multi-agent orchestration, multimodal perception (sight/hearing/gaze), 42 holographic widgets, 20 LLM providers.
npx -y skills add sumitaich1998/jarvisvr --skill capture-noteAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Quickly capture a note to long-term memory and show it back, or pin a sticky note in space. Use for "note that…", "take a note", "remember that…", "what are my notes?", or jotting an idea hands-free. Triggers: note, take a note, jot down, remember that, save this, my notes, sticky note.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.2 KB, as published. Nobody here has run it
Capture Note
Frictionless capture: save what the user says, confirm briefly, and show it. Use
a spatial sticky_note when they want it pinned somewhere they'll see it.
Steps
- Capture path:
- "note that X" / "remember that X" →
take_note{text}→ updates the notespanel; reply "Noted." - "what are my notes?" →
list_notes→ shows the notespanel. - "put a sticky note here saying X" →
show_sticky_note→ a placeablesticky_note.
- "note that X" / "remember that X" →
- Keep confirmations tiny so capture stays fast (one word is fine).
Output
Notes panel (take_note / list_notes → panel):
{ "widget_type": "panel",
"props": { "title": "Notes", "body": "• Idea: holographic recipe cards\n• Buy oat milk" },
"interactions": ["grab","tap","resize"] }
Sticky note (show_sticky_note → sticky_note, props per registry.json):
{ "widget_type": "sticky_note",
"transform": { "anchor": "world", "billboard": true },
"props": { "text": "Buy milk", "color": "yellow", "pinned": true, "author": "You" },
"interactions": ["grab","tap","resize","drag"] }
agent.speech: { "text": "Noted.", "final": true }
Edge cases
- Empty note → ask what to note ("What would you like me to note?").
- No notes yet ("what are my notes?") → "You don't have any notes yet."
- Actionable note ("buy milk", "finish report") → offer to make it a task
(
manage-tasks) or a timedset-reminders. - Long capture → store verbatim; render on a scrollable
panel, not a sticky. - Edit/delete → a tapped sticky (
editevent) lets the user revise; reflect changes withholo.update.