agentsclimarketplace

Capture note

Skill sumitaich1998/jarvisvr/skills/productivity/capture-note

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.From its SKILL.md

Install
npx -y skills add sumitaich1998/jarvisvr --skill capture-note

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 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 file declares

Copied from the file, not written here

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, 474 tokens by cl100k_base, 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

  1. Capture path:
    • "note that X" / "remember that X" → take_note{text} → updates the notes panel; reply "Noted."
    • "what are my notes?" → list_notes → shows the notes panel.
    • "put a sticky note here saying X" → show_sticky_note → a placeable sticky_note.
  2. Keep confirmations tiny so capture stays fast (one word is fine).

Output

Notes panel (take_note / list_notespanel):

{ "widget_type": "panel",
  "props": { "title": "Notes", "body": "• Idea: holographic recipe cards\n• Buy oat milk" },
  "interactions": ["grab","tap","resize"] }

Sticky note (show_sticky_notesticky_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 timed set-reminders.
  • Long capture → store verbatim; render on a scrollable panel, not a sticky.
  • Edit/delete → a tapped sticky (edit event) lets the user revise; reflect changes with holo.update.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.