Noema

by HappyFox001Verified

A voice-first desktop AI companion with memory, emotion, tools, and plugins.

130
Stars
7
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/HappyFox001/Noema

Getting Started

Guides for using skills like Noema.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Noema

Putting a living soul into the desktop

Voice, memory, emotion, personality, and tools, connected into a desktop companion.

Noema banner

Noema website Noema documentation

Features · Quick Start · Plugins

Noema halo orb Noema Live2D avatar

Noema dark control panel Noema light control panel


Noema is a small experiment toward something like JARVIS: a desktop companion that can speak with personality, remember context, understand tasks, and act through tools.

The project is built around a three-layer runtime split:

  • Emotional layer: speaks naturally, applies personality and memory, and detects task intent.
  • Work layer: owns durable task state, plans steps, calls tools, tracks execution state, and records recoverable progress.
  • Interaction layer: routes user interruptions, task starts, resumes, pauses, and status requests between the emotional and work layers.
  • Output layer: speaks or displays selected runtime signals without inventing task facts.
  • Voice pipeline: streams ASR, VAD, turn detection, TTS, interruption, and playback frames.
  • Plugin system: adds tools, prompt extensions, task context, text transforms, expressions, and admin actions.

Features

  • Voice-first desktop conversation with streaming ASR, VAD, smart turn detection, and Fish Audio TTS.
  • Personality-aware replies driven by role YAML files and conversation memory.
  • Task execution runtime with planning, tool calls, execution state, compaction, and task admission.
  • Interruption-aware audio path that can stop speech output without necessarily cancelling active tasks.
  • Persistent memory backed by SQLite for conversation turns, summaries, user profile, and task runs.
  • Extensible plugin system for adding new runtime capabilities without changing the core.

Quick Start

Prerequisites

  • Node.js 18+
  • pnpm 8+
  • macOS, Windows, or Linux with microphone access
# Install workspace dependencies.
pnpm install

# Build the SDK and desktop app.
pnpm build

# Launch the desktop app.
pnpm start

API Configuration

Noema has four independent model slots:

SlotPurposeDefault provider/model
DialogueLow-latency conversationOpenAI-compatible chat endpoint
TaskTool use, planning, and long-running workOpenAI-compatible chat endpoint
TTSVoice outputFish Audio s2-pro
ASRVoice inputQwen qwen3-asr-flash-realtime

Configure these in Settings > System after launching the app, or seed the same values with a .env file in the repository root or apps/desktop/.env. When using the default Fish Audio + Qwen voice setup through a proxy, a Japan-based network node is recommended for lower latency.

# Dialogue model, OpenAI-compatible
LLM_1_API_KEY=your_dialogue_api_key
LLM_1_MODEL=deepseek-chat
LLM_1_BASE_URL=https://api.deepseek.com

# Task model, OpenAI-compatible
TASK_1_API_KEY=your_task_api_key
TASK_1_MODEL=gemini-3.1-pro-preview
TASK_1_BASE_URL=https://generativelanguage.googleapis.com/v1beta/openai

# Text-to-speech
TTS_1_PROVIDER=fish
TTS_1_API_KEY=your_tts_api_key
TTS_1_MODEL=s2-pro
TTS_1_VOICE_ID=your_voice_id

# Speech-to-text
ASR_1_PROVIDER=qwen
ASR_1_API_KEY=your_asr_api_key
ASR_1_MODEL=qwen3-asr-flash-realtime
ASR_1_LANGUAGE=zh

# Optional
PROXY_URL=http://127.0.0.1:7890

The numbered suffix lets you save multiple profiles, for example LLM_2_API_KEY, TASK_2_MODEL, or TTS_2_VOICE_ID. Select the active profile with LLM_ACTIVE, TASK_ACTIVE, TTS_ACTIVE, and ASR_ACTIVE.

Voice provider references:

Plugins

Noema loads runtime plugins from plugins/*/plugin.json. Plugins can register tools, extend prompts, inject task context, transform text, select expression assets, and expose admin actions.

PluginPurpose
base-toolsFile reads/writes, search, patching, shell commands, interactive command sessions
browser-useElectron browser automation, DOM/AX snapshots, screenshots, file upload, page actions
computer-useNative desktop observation and mouse/keyboard control
skills-managerLocal skill discovery, reading, and management
mcp-managerMCP server management and remote tool dispatch
sticker-expressionEmotion-based sticker selection for replies
fish-s2-emotionFish Audio S2 voice cue prompt additions and TTS text filtering

Plugin manifests declare permissions, config fields, default enablement, and admin actions. Keep plugin hooks generic: tools execute actions, context providers contribute task context, and UI/admin behavior remains separate from runtime execution.

Acknowledgements

The orb UI in Noema directly references the visual direction and interaction ideas from these excellent Three.js projects. Thanks to their authors and communities:

Community thanks:

LinuxDo

License

AGPL-3.0-only. See LICENSE.

Frequently Asked Questions

What is Noema?

Noema is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by HappyFox001. A voice-first desktop AI companion with memory, emotion, tools, and plugins. It has 130 GitHub stars.

Is Noema safe to use?

Yes. Noema passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install Noema?

Clone the repository with "git clone https://github.com/HappyFox001/Noema" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is Noema written in?

Noema is primarily written in TypeScript. It is open-source under HappyFox001 on GitHub, so you can review or fork the full source.

Are there alternatives to Noema?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh Noema against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details