
Claude Skills by AbdoKnbGit
github.com/AbdoKnbGitYou are retrieving facts from Tau Git Memory. Use the plugin script, not ad hoc filesystem reads: ```bash node "${CLAUDE_PLUGIN_ROOT}/scripts/git-memory.mjs" search "<query>" --limit 7 ``` If the query names an exact memory path, skip search and fetch it directly: ```bash node "${CLAUDE_PLUGIN_ROOT}/scripts/git-memory.mjs" get "<path>" ``` If search returns paths but the snippets are not enough, batch follow-up `get` calls in one Bash invocation. Rules: - Read exact memory values before relyi...
Save one durable memory into Tau Git Memory. Choose a lowercase dot path with 2 to 6 segments, for example: - `preferences.coding.style` - `project.architecture.memory` - `feedback.implementation.rules` Run exactly one Bash tool call and pass the content through stdin: ```bash node "${CLAUDE_PLUGIN_ROOT}/scripts/git-memory.mjs" remember --path "<path>" --tag normal --stdin <<'TAU_GIT_MEMORY_EOF' <memory content> TAU_GIT_MEMORY_EOF ``` Use `--tag pinned` for core rules that must be injected ev...