AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Memory Setup

skill-sloemo01-hermes-skills-bundle-memory-setup · by sloemo01

Use when user says 'Set up my memory' — runs 5-question interactive setup and saves to persistent memory.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-sloemo01-hermes-skills-bundle-memory-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sloemo01-hermes-skills-bundle-memory-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
15d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Memory Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Memory Setup Skill

Overview

This skill provides a guided first-time setup for new users. When triggered, it runs a 5-question interactive flow using the clarify tool and saves the answers to the user's persistent memory (~/.hermes/memories/memory.md).

Trigger Conditions

Load this skill when the user says:

  • "Set up my memory"

Workflow

Step 1: Announce the Setup

I'll ask 5 quick questions to learn your preferences. This runs once and saves forever.

Step 2: Run Questions Sequentially (using clarify tool)

Question 1 — Browser Automation:

clarify(
    question="What browser automation do you prefer?",
    choices=[
        "Kimi WebBridge (uses your real Chrome with your logins)",
        "Chrome CDP / Playwright (headless, no login persistence)",
        "No preference — whatever works"
    ]
)

Question 2 — Research Style:

clarify(
    question="How do you like deep research done?",
    choices=[
        "Many tabs (10+) organized in named groups",
        "One focused search at a time",
        "Just give me the answer/summary"
    ]
)

Question 3 — Repeat Command:

clarify(
    question="What word do you use to mean 'do it again the same way'?",
    choices=[
        "retry",
        "rerun",
        "again",
        "Other (I'll specify)"
    ]
)

Question 4 — Privacy Concerns:

clarify(
    question="Any privacy/data things I should avoid?",
    choices=[
        "No public pastes (dpaste, GitHub Gists)",
        "Local-only tools, no cloud APIs",
        "Delete temp files after",
        "No strong preferences"
    ]
)

Question 5 — UI Patterns:

clarify(
    question="Any UI patterns you use repeatedly?",
    choices=[
        "Preview pane for docs/social/localhost",
        "Terminal split for logs + editor",
        "Dev server on fixed port (e.g., :3000)",
        "No strong patterns"
    ]
)

Step 3: Save to Memory

After all 5 answers collected, call memory tool with operations array:

memory(
    target="memory",
    operations=[
        {"action": "add", "content": f"User prefers {browser_choice} for all browser automation — standing preference for all future sessions."},
        {"action": "add", "content": f"User prefers {research_style} research workflows. Uses \"{repeat_word}\" as a command to re-do a task with the same approach."},
        {"action": "add", "content": f"User is privacy-conscious: {privacy_choice}. Avoids public pastes/external uploads."},
        {"action": "add", "content": f"Preview pane workflows: use open_preview(url, label) to embed web content, files, or screenshots. Patterns: {ui_patterns}."}
    ]
)

Step 4: Confirm Completion

✅ Done! Saved to ~/.hermes/memories/memory.md. From now on I'll:
- Use [browser_choice] for all browser tasks
- Open 10+ tabs in named groups for research
- "[repeat_word]" = re-run same methodology
- Never use dpaste/public uploads
- Open preview pane for docs/localhost/social links

Implementation Notes

  • Each clarify call renders as clickable buttons in Hermes — user just clicks or types
  • Questions run sequentially (one at a time) to avoid overwhelm
  • Memory entries use the § delimiter format for proper parsing
  • The memory tool batch operation ensures atomic save

Testing

To test without saving, use a test profile or mock the memory tool.

Related Skills

None — this is a standalone onboarding skill.

References

  • [Questions Reference](file:///e:/hermes-skills-bundle/memory-setup/references/questions.md)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.