Skip to content

Your first session

After setup, Signet can store explicit memories, retrieve scoped context, run selected harness integrations, and expose a local dashboard. Background inference and Dreaming are optional; choosing none during setup leaves explicit memory commands available.

Terminal window
signet status
signet dashboard

signet dashboard starts the configured local daemon if needed. It opens the dashboard in your browser; a workspace configured with daemon.url uses that remote daemon instead.

Terminal window
signet remember "Use Bun for this project"
signet remember "Never commit credentials" --critical
signet remember "The dashboard work is in progress" --tags project,dashboard

--critical pins a memory. --tags accepts comma-separated tags. Use --agent <name> only when you intentionally need to associate the write with a named agent.

Connected harnesses may also expose their own remember command or tool. Use the integration documentation for the exact harness surface instead of assuming a slash command exists everywhere.

Terminal window
signet recall "What package manager does this project use?"
signet recall "architecture decisions" --type decision --limit 5

Recall supports query, type, tag, agent, time, importance, and score filters. See Memory and search commands for the full reference.

Store secrets without placing values in prompts

Section titled “Store secrets without placing values in prompts”
Terminal window
signet secret put OPENAI_API_KEY
signet secret list
signet secret delete OPENAI_API_KEY

The CLI prompts for a secret value rather than echoing it. Treat secret names as less sensitive than values, but do not put values in shell history, source files, screenshots, or documentation.

Terminal window
signet daemon status
signet daemon logs -n 100
signet daemon restart

Use signet daemon start and signet daemon stop for explicit lifecycle control. See Operate your installation for update and troubleshooting steps.

Terminal window
signet skill list
signet skill search browser
signet skill install browser-use
signet skill remove browser-use

Skills are instruction packages. Read their source and any required configuration before enabling a skill that can take external actions.