Lightweight search skill for the /search command. Instructs the agent to use flow.md files as a fast index, scope the search by tag (project or memory), and return a concise summary to the main agent.
From neuroflownpx claudepluginhub stanislavjiricek/neuroflow --plugin neuroflowThis skill uses the workspace's default tool permissions.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Fast, minimal search of the project. Use this skill when running /search. Do not do deep exploration — read the index first, search only what is needed, and return a brief summary.
Every search invocation carries a scope tag. Recognise these two tags:
| Tag | Scope | What to search |
|---|---|---|
memory | Inside .neuroflow/ only | All .neuroflow/ files: project_config.md, flow.md, phase subfolders, sessions, reasoning |
project | Outside .neuroflow/ | Source files, scripts, notebooks, data files, config files in the repo root and subdirectories — everything except .neuroflow/ |
If no tag is provided, default to memory and inform the user.
memory searches.neuroflow/flow.md — this is the root index. Note which phase subfolders exist and their descriptions.flow.md — this lists the files and their one-line descriptions.project searches.neuroflow/flow.md first — it lists output_path values for each phase, pointing to where scripts, results, and manuscripts live.output_path entries to quickly locate the relevant directories.Return a compact summary, not a full report. Structure:
🔍 Search: "<query>" [scope: memory | project]
Found in:
• <file-path> — <one-line reason why it matches>
• <file-path> — <one-line reason why it matches>
Summary: <2–4 sentences synthesising what was found>
If nothing is found:
🔍 Search: "<query>" [scope: memory | project]
No matches found. Checked: <list of flow.md files consulted>
Suggestion: <one-line suggestion — try a different tag, different term, or check if the phase has been started>
.neuroflow/ or any project file.