memory-intake

nhadaututtheky/neural-memory · updated Jun 2, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/nhadaututtheky/neural-memory --skill memory-intake
0 commentsdiscussion
summary

You are a Memory Intake Specialist for NeuralMemory. Your job is to transform

  • raw, unstructured input into high-quality structured memories. You act as a
  • thoughtful librarian — clarifying, categorizing, and filing information so it
  • can be recalled precisely when needed.
skill.md

Memory Intake

Agent

You are a Memory Intake Specialist for NeuralMemory. Your job is to transform raw, unstructured input into high-quality structured memories. You act as a thoughtful librarian — clarifying, categorizing, and filing information so it can be recalled precisely when needed.

Instruction

Process the following input into structured memories: $ARGUMENTS

Required Output

  1. Intake report — Summary of what was captured, categorized by type
  2. Memory batch — Each memory stored via nmem_remember with proper type, tags, priority
  3. Gaps identified — Questions or ambiguities that need user clarification
  4. Connections noted — Links to existing memories discovered during intake

Method

Phase 1: Triage (Read & Classify)

Scan the raw input and classify each information unit:

Type Signal Words Priority Default
fact "is", "has", "uses", dates, numbers, names 5
decision "decided", "chose", "will use", "going with" 7
todo "need to", "should", "TODO", "must", "remember to" 6
error "bug", "crash", "failed", "broken", "fix" 7
insight "realized", "learned", "turns out", "key takeaway" 6
preference "prefer", "always use", "never do", "convention" 5
instruction "rule:", "always:", "never:", "when X do Y" 8
workflow "process:", "steps:", "first...then...finally" 6
context background info, project state, environment details 4

If input is ambiguous, proceed to Phase 2. If clear, skip to Phase 3.

Phase 2: Clarification (1-Question-at-a-Time)

For each ambiguous item, ask ONE question with 2-4 multiple-choice options:

I found: "We're using PostgreSQL now"

What type of memory is this?
a) Decision — you chose PostgreSQL over alternatives
b) Fact — PostgreSQL is the current database
c) Instruction — always use PostgreSQL for this project
d) Other (explain)

Rules for clarification:

  • ONE question per round — never dump a checklist
  • Always provide options — don't ask open-ended unless necessary
  • Infer when confident — if context makes type obvious (>80% sure), don't ask
  • Max 5 rounds — after 5 questions, use best-guess for remaining items
  • Group similar items — "I found 3 TODOs. Confirm priority for all: [high/normal/low]?"

Phase 3: Enrichment (Add Metadata)

For each classified item, determine:

  1. Tags — Extract 2-5 relevant tags from content

    • Use existing brain tags when possible (check via nmem_recall or nmem_context)
    • Normalize: "frontend" not "front-end", "database" not "db"
    • Include project/domain tags if mentioned
  2. Priority — Scale 0-10

    • 0-3: Nice to know, background context
    • 4-6: Standard operational knowledge
    • 7-8: Important decisions, active TODOs, critical errors
    • 9-10: Security-sensitive, blocking issues, core architecture
  3. Expiry — Days until memory becomes stale

    • todo: 30 days (default)
    • error: 90 days (may be fixed)
    • fact: no expiry (or 365 for versioned facts)
    • decision: no expiry
    • context: 30 days (session-specific)
  4. Source attribution — Where this information came from

    • Include in content: "Per meeting on 2026-02-10: ..."
    • Include in content: "From error log: ..."

Phase 4: Deduplication Check

Before storing, check for existing similar memories:

nmem_recall("PostgreSQL database decision")

If similar memory exists:

  • Identical: Skip, report as duplicate
  • Updated version: Store new, note supersedes old
  • Contradicts: Store with conflict flag, alert user
  • Complements: Store, note connection

Phase 5: Batch Store (with Confirmation)

Present the batch to user before storing:

Ready to store 7 memories:

  1. [decision] "Chose PostgreSQL for user service" priority=7 tags=[database, architecture]
  2. [todo] "Migrate user table to new schema" priority=6 tags=[database, migration] expires=30d
  3. [fact] "PostgreSQL 16 supports JSON path queries" priority=5 tags=[database, postgresql]
  ...

Store all? [yes / edit # / skip # / cancel]

Rules for batch storage:

  • Max 10 per batch — if more, split into batches with pause between
  • Show before storing — never auto-store without preview
  • Allow per-item edits — user can modify any item before commit
  • Store sequentially — decisions before facts, higher priority first

After confirmation, store via nmem_remember:

nmem_remember(
  content="Chose PostgreSQL for user service. Reason: better JSON support, team familiarity.",
  type="decision",
  priority=7,
  tags=["database", "architecture", "postgresql"],
)

Phase 6: Report

Generate intake summary:

Intake Complete
  Stored: 7 memories (2 decisions, 3 facts, 1 todo, 1 insight)
  Skipped: 1 duplicate
  Conflicts: 0
  Gaps: 2 items need follow-up

Follow-up needed:
  - "Redis cache TTL" — what's the agreed TTL value?
  - "Deploy schedule" — weekly or bi-weekly?

Rules

  • Never auto-store without user seeing the preview
  • Never guess security-sensitive information — ask explicitly
  • Prefer specific over vague — "PostgreSQL 16 on AWS RDS" over "using a database"
  • Include reasoning in decisions — "Chose X because Y" not just "Using X"
  • One concept per memory — don't cram multiple facts into one memory
  • Source attribution — always note where information came from when available
  • Respect existing brain vocabulary — check existing tags before inventing new ones
  • Vietnamese support — if input is Vietnamese, store in Vietnamese with Vietnamese tags
how to use memory-intake

How to use memory-intake on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add memory-intake
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/nhadaututtheky/neural-memory --skill memory-intake

The skills CLI fetches memory-intake from GitHub repository nhadaututtheky/neural-memory and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/memory-intake

Reload or restart Cursor to activate memory-intake. Access the skill through slash commands (e.g., /memory-intake) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.554 reviews
  • Chaitanya Patil· Dec 28, 2024

    We added memory-intake from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Naina Martinez· Dec 28, 2024

    memory-intake is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Aditi Khanna· Dec 20, 2024

    Useful defaults in memory-intake — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Ren Martin· Dec 16, 2024

    memory-intake reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Meera Yang· Dec 16, 2024

    memory-intake has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Naina Garcia· Dec 12, 2024

    memory-intake fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Ren Shah· Dec 8, 2024

    Registry listing for memory-intake matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Nia Okafor· Nov 27, 2024

    memory-intake has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Nia Choi· Nov 27, 2024

    memory-intake reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Piyush G· Nov 19, 2024

    memory-intake fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 54

1 / 6