cc-haha
Local-first cross-platform desktop workspace for Claude Code / agents: multi-agent, Git worktrees, code diffs, skill marketplace, multi-model, Computer Use, task-aware desktop pets, with WeChat, Fe...
Source#
- Repository: NanmiCoder/cc-haha
- Last source update: 2026-08-02
- Last verified: 2026-08-02
Tags#
Integration notes#
Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: cc-haha-repo-derived-worker
name: cc-haha Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/cc-haha/
source_repository: https://github.com/NanmiCoder/cc-haha
repository_default_branch: main
repository_language: TypeScript
repository_license: MIT
repository_updated_at: 2026-08-02
worker_mode: workflow-automation-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-08-02
tags:
- agent
- ai
- ai-agent
- anthropic
- claude
- claude-code
---
# cc-haha Repo-Derived Worker
## Repo-derived summary
- Registry summary: Local-first cross-platform desktop workspace for Claude Code / agents: multi-agent, Git worktrees, code diffs, skill marketplace, multi-model, Computer Use, task-aware desktop pets, with WeChat, Fe...
- Repository description: Local-first cross-platform desktop workspace for Claude Code / agents: multi-agent, Git worktrees, code diffs, skill marketplace, multi-model, Computer Use, task-aware desktop pets, with WeChat, Feishu, DingTalk, Telegram, WhatsApp and H5 access.
- Stars (snapshot): 13,858
- Primary language: TypeScript
- Worker mode classification: workflow-automation-worker
## Extracted from
- https://github.com/NanmiCoder/cc-haha
- https://github.com/NanmiCoder/cc-haha/blob/main/README.md
- https://img.shields.io/github/stars/NanmiCoder/cc-haha?style=social
- https://img.shields.io/github/forks/NanmiCoder/cc-haha?style=social
- https://img.shields.io/github/issues/NanmiCoder/cc-haha
## Evidence notes (from repository text)
- README summary paragraph: Claude Code Haha is a **desktop Claude Code workspace** for macOS, Windows, and Linux: sessions, projects, branch / Worktree launch, workspace changes and diff review, permission approval, model setup, Computer Use, H5 remote access, IM integration, and scheduled tasks in one app.
- Follow the task as it runs Tool calls and stage-by-stage progress stay in view
- - **Five permission modes**: from "ask every time" to "skip permissions" — risky commands, tool calls, and follow-up questions are all approved in the GUI.
- - **Session activity panel**: track task progress, background tasks, SubAgents, and sources in one side panel.
- - **Computer Use**: let the agent take screenshots, click, type, and control desktop apps after authorization.
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Execute one automation workflow step in a bounded worker run.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"trigger",
"step"
],
"properties": {
"run_id": {
"type": "string"
},
"trigger": {
"type": "object"
},
"step": {
"type": "string"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"step",
"status",
"artifacts"
],
"properties": {
"run_id": {
"type": "string"
},
"step": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"artifacts": {
"type": "array"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: run_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
cc-haha-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/cc-haha/
Source URL: https://github.com/NanmiCoder/cc-haha