Agent skill
cipher-memory
Stars
1
Forks
0
Install this agent skill to your Project
npx add-skill https://github.com/abdullah1854/ClaudeSuperSkills/tree/main/cipher-memory
SKILL.md
cipher-memory
Formats messages for Cipher cross-IDE memory persistence with proper projectPath.
Metadata
- Version: 1.0.0
- Category: productivity
- Source: workspace
Tags
memory, cipher, persistence
MCP Dependencies
None specified
Inputs
action(string) (required): Action: recall, decision, learning, milestone, blockercontent(string) (required): Content to store/recallprojectPath(string) (required): Full project path
Workflow
No workflow defined
Anti-Hallucination Rules
None specified
Verification Checklist
None specified
Usage
typescript
// Execute via MCP Gateway:
gateway_execute_skill({ name: "cipher-memory", inputs: { ... } })
// Or via REST API:
// POST /api/code/skills/cipher-memory/execute
// Body: { "inputs": { ... } }
Code
typescript
const { action, content, projectPath } = inputs;
const templates = {
recall: { message: `Recall context for this project. What do you remember? Topic: ${content}` },
decision: { message: `STORE DECISION for ${projectPath}: ${content}` },
learning: { message: `STORE LEARNING for ${projectPath}: ${content}` },
milestone: { message: `STORE MILESTONE for ${projectPath}: ${content}` },
blocker: { message: `STORE BLOCKER for ${projectPath}: ${content}` }
};
const t = templates[action] || templates.recall;
console.log(`// Cipher MCP Call
{
"tool": "cipher_ask_cipher",
"arguments": {
"message": "${t.message}",
"projectPath": "${projectPath}"
}
}`);
Created: Mon Dec 22 2025 10:37:27 GMT+0800 (Singapore Standard Time) Updated: Mon Dec 22 2025 10:37:27 GMT+0800 (Singapore Standard Time)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
1
0
Explore
tool-design
1
0
Explore
ax-dynamics-helper
1
0
Explore
pr-summary
1
0
Explore
memory-systems
1
0
Explore
hooks-guide
1
0
Explore
Didn't find tool you were looking for?