Skip to main content

Common Issues

Environment Setup

Problem: The system can’t find your environment configuration file.Solution:
The setup wizard will:
  • Create a .env file in your project root
  • Prompt for required API keys
  • Configure optional integrations
  • Validate your environment
Setup auto-triggers on first use if .env is missing, so you may not need to run this manually.
Problem: Commands fail with authentication errors.Check:
  1. Verify your .env file exists in the project root
  2. Ensure OPENAI_API_KEY is set (required for transcription)
  3. Check for extra spaces or quotes around keys
  4. Restart Claude Code after changing .env
Format:
Run /setup to reconfigure keys interactively and validate the format.

Python & Hooks

Problem: Hooks fail to execute with Python errors.Solutions:
  1. Check Python version:
  2. Verify Python is in PATH:
  3. Install PyYAML (only external dependency for hooks):
  4. Check hook permissions (Unix/Mac):
Hooks use only stdlib + PyYAML to minimize dependency issues.
Problem: Hook executes without errors but behavior is wrong.Debug steps:
  1. Check hook configuration in settings.json:
  2. Add debug output to your hook:
  3. Check hook event timing:
    • SessionStart - Runs once when Claude starts
    • UserPromptSubmit - Runs before each user message
    • PreToolUse - Runs before tool execution
    • PostToolUse - Runs after tool execution
    • Stop - Runs when session ends

Skills & Auto-Routing

Problem: Skills don’t activate when you expect them to.Check:
  1. Verify SKILL-INDEX.json exists:
    If missing, it should be generated on SessionStart by skill_indexer.py hook.
  2. Verify skill description is specific:
  3. Check skill file structure:
  4. Validate YAML frontmatter:
Include “Use when…” context in your skill description with specific trigger words users would say.
Problem: Skill doesn’t appear in available skills list.Check:
  1. File location:
  2. Filename is exact (case-sensitive):
    • ✅ Correct: SKILL.md
    • ❌ Wrong: skill.md, Skill.md, SKILL.MD
  3. Directory name matches frontmatter:
  4. Restart Claude Code to reload skills
Problem: Skill fails to load with parsing errors.Common issues:
  1. Tabs in YAML (use spaces only):
  2. Missing frontmatter delimiters:
  3. Validate your YAML:

Git & Version Control

Problem: Git push is blocked.This is by design:
  • git push is blocked by settings.json deny rules
  • Direct pushes to main are prohibited
  • Use the branch + PR workflow instead
Correct workflow:
If you need to push to main for a legitimate reason, delegate to @devops or contact the maintainer.

Pipeline Processing

Problem: /process-jarvis fails during chunking phase.Common causes:
  1. File not in inbox:
    Make sure your file was ingested with /ingest first.
  2. File format not supported:
    • ✅ Supported: .md, .txt, .pdf, .mp4, .mp3
    • ❌ Not supported: Binary formats without extractors
  3. OpenAI API key missing (for transcription):
  4. File too large:
    • Check if file exceeded API limits
    • Consider splitting large files
Problem: Pipeline runs successfully but doesn’t generate expected outputs.Check:
  1. Artifacts directory:
  2. Knowledge directory:
  3. Session logs:
  4. Check /jarvis-briefing for health score and errors

Agent & Conclave

Problem: Slash commands for agents return errors.Check:
  1. Agent exists in AGENT-INDEX.yaml:
  2. Agent files present:
  3. Memory directory exists:
  4. Command syntax:
Problem: Council sessions show low confidence scores.This is expected when:
  • Limited knowledge base (process more materials)
  • Few relevant experts (add more diverse sources)
  • Complex question with limited context
Improve confidence by:
  1. Processing more expert materials
  2. Creating DNA extractions from specialists
  3. Providing more context in your question
  4. Building up relevant playbooks
The system is transparent about confidence levels. Low confidence means “I don’t have enough data to be certain” - which is honest and valuable feedback.

Installation Issues

Problem: Package installation errors.Solutions:
  1. Check Node version:
  2. Clear cache and reinstall:
  3. Check for permission issues:
Problem: Intelligence scripts fail with import errors.Solution:
Python 3.10+ required. Earlier versions may have compatibility issues.

Performance Issues

Problem: Pipeline or commands take too long.Optimize:
  1. Check file sizes:
    • Large videos take longer to transcribe
    • Consider processing audio separately
  2. Review API rate limits:
    • OpenAI Whisper has rate limits
    • Space out large batch processing
  3. Monitor resource usage:
  4. Process in batches:
    • Don’t ingest 50 files at once
    • Process 3-5 files, then review

Session Management

Problem: /save command fails.Check:
  1. Logs directory exists:
  2. Permissions:
  3. Disk space:
Problem: /resume doesn’t work.Check:
  1. Session files exist:
  2. Session format is valid:
    • Sessions are stored as JSON
    • Check for corruption
  3. Try listing sessions:

Getting Help

Still Having Issues?

  1. Check system status: Run /jarvis-briefing for health score
  2. Review logs: Check logs/sessions/ for detailed error messages
  3. Search existing issues: Check GitHub issues for similar problems
  4. Open an issue: Provide:
    • Error message (full text)
    • Command you ran
    • System info (OS, Node version, Python version)
    • Relevant log files
  5. Contact maintainer: Reach out to @thiagofinch
Before reporting an issue, run these diagnostic commands:
Include the output in your issue report.