一键导入
pmoves-cipher-memory
Enable persistent memory across Claude Code sessions for PMOVES.AI development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Enable persistent memory across Claude Code sessions for PMOVES.AI development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Operate the P7 room-aware stage manager — read a room's current stage, transition a room (gated rehearsal→live via the canonical CHIT activation checklist), and observe lifecycle events on NATS. Use when claiming/transitioning a room, when the operator asks "what stage is room X in?", or when wiring a UI to reflect room transitions in real-time.
Email ingestion, triage, and review workflows for Titanmail and Gmail accounts using the Himalaya CLI and local-only processing.
Folder-triggered document processing workflows with zero-retention E2B sandbox execution for legal, research, and operations pipelines.
Legal document review, research, and case-law verification for PMOVES.AI tenant-advocacy and contract analysis workloads.
Activates n8n and Archon as the local workflow and agent orchestration layer for email, research, verification, and legal-assist jobs.
YouTube and SoundCloud channel monitoring with transcript extraction, batch processing, and routing to Hi-RAG or notebooks.
| name | pmoves-cipher-memory |
| description | Enable persistent memory across Claude Code sessions for PMOVES.AI development. |
Purpose: Enable persistent memory across Claude Code sessions for PMOVES.AI development.
This skill integrates Claude Code with Cipher Memory, providing:
Store knowledge for future reference:
Use pmoves_cipher_store to remember:
- content: The knowledge to store
- category: code_pattern, decision, context, submodule, architecture, or reasoning
- tags: Optional list of tags for retrieval
Categories:
code_pattern: Reusable code patterns and conventionsdecision: Architectural decisions and rationalecontext: Project-specific contextsubmodule: PMOVES submodule knowledgearchitecture: System patterns and designreasoning: Chain-of-thought reasoning tracesExample:
Store this pattern: "PMOVES submodules should include pmoves_announcer,
pmoves_health, pmoves_registry, pmoves_common in their root directory."
Category: code_pattern
Tags: submodule, pmoves_framework, integration
Search stored memories:
Use pmoves_cipher_search to find:
- query: Search query (semantic search)
- category: Optional filter by category
- tags: Optional filter by tags
- limit: Maximum results (default: 10)
Example:
Search for: "submodule integration patterns"
Category: code_pattern
Store complex problem-solving traces:
Use pmoves_cipher_store_reasoning to capture:
- question: The problem being solved
- reasoning: Chain of thought
- result: Final solution
Example:
Store reasoning about: "How to handle circular submodule references"
Question: PMOVES-DoX has external/PMOVES-BoTZ but BoTZ is also a root submodule
Reasoning: These are separate instances - DoX uses its own copy for DoX-specific branch
Result: Keep nested submodules but document them as separate instances
Find past reasoning patterns:
Use pmoves_cipher_reasoning_patterns to find:
- query: Problem description
- limit: Maximum results (default: 5)
Category: submodule
"PMOVES.AI has 40+ root submodules organized in tiers:
- DATA: Qdrant, Neo4j, NATS (infrastructure)
- API: Hi-RAG, TensorZero (data access)
- LLM: TensorZero (only tier with API keys)
- WORKER: Background processing
- MEDIA: YouTube, Whisper
- AGENT: Archon, Agent-Zero (orchestration)"
Tags: architecture, pmoves, tiers
Category: code_pattern
"PMOVES services use pmoves_integrations framework:
- pmoves_announcer: NATS service discovery
- pmoves_health: Health check endpoints
- pmoves_registry: Service URL resolution
- pmoves_common: Shared types (ServiceTier, HealthStatus)"
Tags: pmoves_framework, integration, service_mesh
Category: decision
"TensorZero is the LLM gateway for all PMOVES services.
It centralizes API key management - only the LLM tier has external API keys.
All other services call TensorZero internally."
Tags: architecture, llm, security, tensorzero
Category: architecture
"PMOVES services support three networking modes:
- Standalone: Run independently with local Ollama/Cipher
- Docked: Connect to parent PMOVES.AI infrastructure (TensorZero, NATS, Qdrant)
- Hybrid: Mix local and parent resources"
Tags: networking, deployment, docker