skills/remember/SKILL.md
[Internal] Save something to persistent memory with auto-embedding. Hidden from users — the automatic pipeline handles memory capture. Use for debug/dev only.
npx skillsauth add signet-ai/signetai rememberInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Save to persistent memory across sessions. Shared between all agents (claude-code, codex, opencode, clawdbot). Memories are auto-embedded for semantic search via the Signet daemon.
This skill is not exposed to users because the automatic memory pipeline handles capture better:
If a user asks "how do I save something to memory," point them to the fact that it happens automatically. If they want to verify something was captured, suggest /recall instead.
/remember <content>
/remember critical: <content>
/remember [tag1,tag2]: <content>
/remember critical: [tag1,tag2]: <content>
/remember nicholai prefers tabs over spaces
/remember critical: never push directly to main
/remember [voice,tts]: qwen model needs 12GB VRAM minimum
/remember [signet,architecture]: agent profile lives at ~/.agents/
Use the Signet CLI (requires running daemon):
signet remember "<content>" -w <agent-name>
Options:
-w, --who <who> — who is remembering (default: "user")-t, --tags <tags> — comma-separated tags-i, --importance <n> — importance 0-1 (default: 0.7)--critical — mark as pinned (importance=1.0, never decays)where <agent-name> is one of: claude-code, codex, opencode, clawdbot
The daemon automatically:
critical: prefix → pins memory (importance=1.0, never decays)[tags]: prefix → explicit tagsThe daemon must be running for remember to work. Check status:
signet status
curl -s http://localhost:3850/health
If the daemon is down, start it with signet daemon start.
| keyword in content | inferred type | |--------------------|---------------| | prefer/likes/want | preference | | decided/agreed | decision | | learned/discovered | learning | | never/always/must | rule | | bug/issue/broken | issue | | (default) | fact |
The daemon returns JSON:
{
"id": "uuid",
"type": "preference",
"tags": "coding",
"pinned": false,
"importance": 0.8,
"content": "nicholai prefers tabs over spaces",
"embedded": true
}
After saving, confirm to the user:
saved: "nicholai prefers tabs over spaces"
type: preference | embedded
For critical:
saved (pinned): "never push directly to main"
type: rule | importance: 1.0 | embedded
If embedding failed (daemon running but Ollama/OpenAI unavailable):
saved: "content..." (keyword search only — embedding unavailable)
development
# Signet AI — Install Guide for Agents > This document is written for AI agents. If you are an AI assistant > that has been asked to install Signet, read this entire document > before taking any action. Follow the steps exactly as written. > Do not improvise, guess commands, or skip sections. --- ## Install Objective (Must Complete) Your job is not just to install a package. Your job is to leave the user with a fully configured, running Signet setup. You are done only when ALL of these are
tools
Search the web and scrape pages using the local tool stack: SearXNG (meta-search), Lightpanda (fast headless fetch), and Agent-Browser (full browser automation). This is your DEFAULT web skill — use it whenever you need to look something up, research a topic, fetch a webpage, extract content from a URL, check current information, find documentation, do competitive research, or answer any question that benefits from live web data. Triggers on any form of: search for, look up, google, find out, research, what's the latest on, fetch this page, scrape this site, check this URL, pull info from, web search, or any task where current web information would improve your answer. Even if the user doesn't explicitly ask you to search — if answering well requires current info you don't have, use this skill. NOT for interactive browser automation like form filling or clicking (use [[agent-browser]] or [[browser-use]]).
tools
Guide for discovering, installing, and creating effective skills. This skill should be used when users want to discover and install existing skills (e.g., "how do I do X", "find a skill for X", "is there a skill that can...") or create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
tools
the one skill that will teach you all you need to know about signet