neural-insight — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited neural-insight (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The insight bank accumulates technical knowledge about the project — implementation choices, architecture decisions, and patterns discovered during development. Use /neural-insight to synthesize everything into structured documentation.
Use the neural-doc-writer agent (bundled with this plugin) to synthesize all accumulated insights:
Use the neural-doc-writer agent to generate documentationOr call the MCP tool directly:
Tool: neural_generate_docs
{
"project_root": "."
}Output is returned as markdown and written to .neural-memory/technical-docs.md.
This plugin includes three agents installed alongside the MCP server and skills:
| Agent | Purpose |
|---|---|
neural-memory:neural-explorer | Codebase exploration via semantic graph search |
neural-memory:neural-insight-collector | Captures insights from conversations into the bank |
neural-memory:neural-doc-writer | Synthesizes all insights into technical documentation |
These agents have the neural-memory MCP tools pre-configured — no extra setup needed.
Tool: neural_add_insight
{
"content": "The bump script atomically updates 4 files to keep versions in sync...",
"topic": "versioning",
"related_files": ["scripts/bump_version.py"]
}Insights are deduplicated — re-saving the same insight updates it rather than creating a duplicate.
Tool: neural_list_insights
{
"topic": "storage"
}Omit topic to list all insights grouped by topic.
| Parameter | Required | Type | Description |
|---|---|---|---|
content | Yes | str | The insight text (min 10 chars) |
topic | Yes | str | Topic area, e.g. storage, hooks, embeddings, cli |
related_files | No | list[str] | File paths to link via RELATES_TO edges |
project_root | No | str | Default: "." |
| Parameter | Required | Type | Description |
|---|---|---|---|
project_root | No | str | Default: "." |
topic | No | str | (list_insights only) Filter by topic |
session_context.md includes an insight bank summary (topic counts) automaticallyneural_query to search insights alongside code nodes~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.