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-09-13
- Last verified: 2026-09-13
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-09-13
worker_mode: tool-gateway-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.9
derived_on: 2026-09-13
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): 14,363
- Primary language: TypeScript
- Worker mode classification: tool-gateway-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 是一个**桌面端 Claude Code 工作台**:多会话与全局搜索、分支 / Worktree 启动、Diff 审阅、内置浏览器预览、图形化权限审批、模型自选(Claude / ChatGPT / Grok / 预设 / 本地端点)、图片生成、MCP 与 SubAgent 可视化管理、Agent Teams 协作工作台、动态 Workflow 编排、模型请求追踪、Computer Use、技能市场、多主题、桌面宠物、H5 远程访问、IM 接入和定时任务,集中在一个 macOS / Windows / Linux APP 里。
- 使用过程中有问题、想反馈 Bug,或者想看看别人怎么用,欢迎扫码加入 cc-haha 企业微信用户群。也可以直接来 https://github.com/NanmiCoder/cc-haha/issues 提问。企业定制 / 私有化部署 / Agent 定制需求,请联系作者 https://github.com/NanmiCoder。
- - **内置浏览器预览**:Agent 刚改完的页面直接在应用内渲染,登录态和 Cookie 真实可用。
- - **MCP 图形化管理**:界面化增删改 MCP Server,支持 STDIO / Streamable HTTP / SSE 三种传输方式与项目私有、共享、全局三种作用域。
- - **会话活动面板**:集中查看任务进度、后台任务、SubAgent 与来源。
- - **可视化 SubAgent 管理**:图形界面创建和调校子代理,选择模型、工具与权限模式。
## Installation hints found in README
- No explicit package installation command detected in README text.
## worker.md contract (derived starter)
Purpose: Expose repository-supported tool/server capabilities behind a bounded worker interface.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"operation",
"payload"
],
"properties": {
"request_id": {
"type": "string"
},
"operation": {
"type": "string"
},
"payload": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"request_id",
"status",
"result"
],
"properties": {
"request_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"result": {
"type": "object"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: request_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