Running Log
Persistent schema-driven running log with three-component architecture - quick-capture ideas, AI auto-detection, and backlog review librarian
What this skill does
**Name**: running-log **Version**: 2.0 **Domain**: Process Memory, Decision Tracking, Cross-Session Learning **Status**: Redesigned based on Phase 2 validation findings --- ## Purpose Maintain a persistent, schema-driven running log that captures: - **Ideas** (human quick-capture backlog) - **Consultations** (AI-detected external sources) - **Process Memory** (AI-detected reasoning patterns) Creates searchable, auto-organized entry backlog across sessions through **three distinct workflows**: 1. Human quick-capture (`/idea`) 2. AI auto-detection (Consultation, Process Memory) 3. Post-processing librarian (`/review-backlog`) **Critical Design Insight**: Human entry workflows differ fundamentally from AI auto-detection workflows. v2.0 separates these cleanly. --- ## Architecture: Three-Component System ### Component 1: `/idea` Command (Human Territory) **Purpose**: Ultra-minimal quick capture while working **Workflow**: ``` User: /idea Local copies of Anthropic docs in AI-optimized format → Entry created immediately with defaults → User continues work ``` **What AI fills automatically**: - Entry ID: `#ID-YYYYMMDD-NNN` (auto-incremented) - Timestamp: ISO 8601 - Confidence/Priority: `TBD` (To Be Determined - evaluated during backlog review) - Status: `Backlog` (default for all ideas) - Tags: AI-generated from description + existing tag taxonomy - Type: `Idea/Note` - Profile: Active profile (e.g., `DEVELOPER`) **Entry Schema (Ideas)**: ```markdown ## Idea/Note | #ID-YYYYMMDD-NNN | [ISO 8601 Timestamp] **Description**: [User-provided 1-line description] **Confidence/Priority**: TBD **Status**: Backlog **Type**: Idea/Note **Profile**: [Active Profile] **Tags**: [AI-generated tags] --- ``` **Why this works**: - Zero friction: User types one line, gets back to work - No nonsensical prompts for confidence (ideas are captured, not evaluated) - No status guessing (all ideas start as backlog) - Consistent tags (AI prevents million inconsistent human tags) - Evaluation happens later during `/review-backlog` --- ### Component 2: AI Auto-Detection (AI Territory) **Purpose**: Monitor Claude's responses for reasoning patterns worth capturing **Entry Types**: #### Consultation (External Sources) AI detects when referencing external knowledge: - Documentation lookups - Perplexity/research queries - User-provided references - Framework/library citations **Auto-generates**: ```markdown ## Consultation | #ID-YYYYMMDD-NNN | [Timestamp] **Description**: [What was consulted] **Source**: [Citation/URL] **Confidence**: [AI's confidence in source quality: High/Med/Low] **Status**: Reviewed **Type**: Consultation **Profile**: [Active Profile] **Tags**: [domain, source-type, framework] --- ``` #### Process Memory (AI Reasoning Patterns) AI detects loggable reasoning patterns in its own responses: **Pattern 1: Uncertainty** ```regex /uncertainty\s+(on|about|regarding|around)\s+([^.!?]+)/i ``` → Logs: What's uncertain, confidence level **Pattern 2: Assumption** ```regex /assum(e|ing|ption)\s+(that|about|the)\s+([^.!?]+)/i ``` → Logs: Assumption made, validation status **Pattern 3: Confidence Threshold** ```regex /confidence\s+(less\s+than|below|<)\s*(\d+)%?/i ``` → Logs: Low-confidence item needing validation **Pattern 4: Decision/Fork** ```regex /(fork|branch|decision\s+point|chose|decided|rejected)\s+(in|on)?\s*([^.!?]+)/i ``` → Logs: Decision made, alternatives considered, rationale **Pattern 5: Critical Signal** ```regex /critical|blocker|blocking|must\s+(clarify|understand|verify)/i ``` → Logs: Critical issue flagged, requires attention **Auto-generates**: ```markdown ## Process Memory | #ID-YYYYMMDD-NNN | [Timestamp] **Description**: [Reasoning pattern detected] **Confidence**: [AI's certainty about this pattern: 0-100%] **Status**: [Assumed/Validated/Rejected] **Type**: Process Memory **Profile**: [Active Profile] **Tags**: [pattern-type, domain, criticality] **Pattern Detected**: [Which regex matched] **Raw Output**: [Exact phrase from Claude's response] **Extended Context**: [Why this pattern matters, implications, next steps] --- ``` **Cadence**: 3 automatic checks per session 1. **Session Start**: Continuity from previous session 2. **Mid-Toolchain**: After `floor(tool_count / 3)` tools executed 3. **Session End**: Archive session learnings **Confidence Thresholds** (Auto-log only if >= threshold): - DEVELOPER: 75% - RESEARCHER: 60% - ENGINEER: 70% - DEFAULT: 70% **Noise Filtering**: 1. Confidence threshold (above) 2. Entry cap per session (DEVELOPER: 8, RESEARCHER: 12, ENGINEER: 10) 3. Deduplication (Levenshtein 85% similarity suppresses duplicates) --- ### Component 3: `/review-backlog` Command (Librarian Function) **Purpose**: Post-process entries to organize, prioritize, and link **What it does**: 1. **Relationship Identification**: AI analyzes all entries and identifies connections 2. **Tag Refinement**: Harmonizes tags across entries, suggests taxonomy improvements 3. **Prioritization**: Reviews `TBD` priorities, suggests High/Med/Low based on context 4. **Linking**: Populates `Linked To` field by finding related entries 5. **Auto-Section Generation**: Regenerates High-Priority Ideas, Open Risks, Linked Insights **Usage**: ``` /review-backlog # Review all entries, suggest actions /review-backlog --ideas # Review only ideas (prioritize, link) /review-backlog --risks # Review low-confidence items /review-backlog --link #ID-001 # Find and link entries related to #ID-001 ``` **Example Output**: ``` 🔍 Backlog Review Results Ideas Requiring Prioritization (5): - #ID-20251222-001: Local AI-optimized docs → Suggested: High (aligns with knowledge-base work) - #ID-20251221-003: Plugin permission system → Suggested: Med (dependent on architecture) Suggested Links (3): - #ID-20251222-001 ← #ID-20251221-008 (both reference documentation workflows) - #ID-20251221-005 → #ID-20251221-003 (decision impacts idea) Tag Harmonization: - Rename "docs" → "documentation" (4 entries) - Merge "anthropic-api" + "anthropic" (2 entries) Apply changes? [Y/n] ``` **Why separate from capture**: - Humans can't know relationships while capturing ideas mid-work - Requires full-backlog context to identify patterns - Deliberate activity, not real-time capture - AI analyzes relationships humans can't see --- ## File Structure ``` project/ ├── .claude/ │ ├── RUNNING_LOG.md # Main log (auto-sections + chronological) │ ├── LAST_ENTRIES.md # Dedup tracking (20 most recent) │ └── skills/ │ └── running-log/ │ └── SKILL.md # This specification └── [project files] ``` ### RUNNING_LOG.md Structure ```markdown # Running Log - DEVELOPER Profile **Created**: [ISO 8601] **Last Updated**: [ISO 8601] --- ## Auto-Generated Sections ### 🔥 High-Priority Ideas [Auto-populated from ideas tagged High, status ≠ Done] ### ⚠️ Open Risks / Low-Confidence Items [Auto-populated from Process Memory with confidence < 60%] ### 🔗 Linked Process Insights [Auto-populated from entries with Linked To populated] --- ## Entry Backlog [Entries in reverse chronological order] --- ``` --- ## Commands Summary ### `/idea [DESCRIPTION]` Quick-capture idea while working. AI fills all other fields with defaults. ``` /idea Local copies of Anthropic docs in AI-optimized format ``` ### `/review-backlog [OPTIONS]` Post-process entries: prioritize, link, harmonize tags. ``` /review-backlog # Full review /review-backlog --ideas # Ideas only /review-backlog --risks # Low-confidence items /review-backlog --link #ID-001 # Link related entries ``` ### `/running-log --show [N]` Display last N entries (default: 10). ``` /running-log --show 5 ``` ### `/running-log --debug` Show last 5 entries with full details including regex detection. ``` /running-log --debug ``` --- ## Configuration ```yaml running_log: enabled: true file_path: ".claude/RUNNING_LOG.md
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.