neural-add-task — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited neural-add-task (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.
Manually create a task node in the knowledge graph. Use this to track in-progress work, planned features, or phase milestones directly in the graph without editing context log files.
Via MCP tool (neural-memory configured as MCP server in Claude Code):
Tool: neural_add_task
{
"title": "Implement caching for importance scores",
"phase_name": "Phase 3 — Performance",
"priority": "high",
"task_status": "in_progress",
"related_files": ["neural_memory/graph.py", "neural_memory/storage.py"]
}Via Python (working directly in the project):
import asyncio
from neural_memory.server import neural_add_task, AddTaskInput
asyncio.run(neural_add_task(AddTaskInput(
title="Implement caching for importance scores",
phase_name="Phase 3 — Performance",
priority="high",
task_status="in_progress",
related_files=["neural_memory/graph.py", "neural_memory/storage.py"],
)))| Parameter | Required | Type | Description |
|---|---|---|---|
title | Yes | str | Task title (min 3 chars) |
phase_name | No | str | Phase to attach this task to (creates the phase node if it doesn't exist) |
priority | No | str | "low" / "medium" / "high" (default: "medium") |
task_status | No | str | "pending" / "in_progress" / "done" (default: "pending") |
related_files | No | list[str] | File paths this task relates to |
project_root | No | str | Project root (default: ".") |
RELATES_TO edgesphase_name if they don't exist.claude/context-log-tasks-*.md on every /neural-index/neural-query to search tasks alongside code and bugs~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.