Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JARVIS

A personal AI voice assistant built on the Claude API, with a pluggable skill (tool) system.

Setup

pip install -e ".[dev]"
cp .env.example .env  # then fill in JARVIS_ANTHROPIC_API_KEY

Usage

jarvis

This starts a console loop: type a message, JARVIS replies (calling any skills it needs along the way). Type exit to quit.

Development

pytest          # run tests
ruff check .    # lint

Adding a skill

Skills are plain Python functions registered as Claude tools. See src/jarvis/skills/example_skill.py:

from jarvis.skills.base import skill

@skill(
    name="get_current_time",
    description="Get the current date and time.",
    parameters={"type": "object", "properties": {}, "required": []},
)
def get_current_time() -> str:
    ...

Import the module once (e.g. from jarvis.brain.assistant) so the @skill decorator runs and registers it.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages