openteams-web 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -0
- package/bin/cli.js +3 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/openteams-lab/openteams/main/frontend/public/openteams-brand-logo.png" alt="OpenTeams" width="320">
|
|
3
|
+
|
|
4
|
+
<p><strong>Run agents as one team, multiply your efficiency in the AI era.</strong></p>
|
|
5
|
+
|
|
6
|
+
<p>
|
|
7
|
+
<a href="https://www.npmjs.com/package/openteams-web"><img alt="npm" src="https://img.shields.io/npm/v/openteams-web?style=flat-square" /></a>
|
|
8
|
+
<a href="https://github.com/openteams-lab/openteams/actions/workflows/pre-release.yml"><img alt="Build" src="https://github.com/openteams-lab/openteams/actions/workflows/pre-release.yml/badge.svg" /></a>
|
|
9
|
+
<a href="https://github.com/openteams-lab/openteams/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" /></a>
|
|
10
|
+
<a href="https://discord.gg/MbgNFJeWDc"><img alt="Discord" src="https://img.shields.io/badge/Discord-Join%20Chat-5865F2?style=flat-square&logo=discord&logoColor=white" /></a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
<p>
|
|
14
|
+
<a href="https://github.com/openteams-lab/openteams#quick-start">Quick Start</a> |
|
|
15
|
+
<a href="https://docs.openteams.com">Docs</a> |
|
|
16
|
+
<a href="https://github.com/openteams-lab/openteams">GitHub</a>
|
|
17
|
+
</p>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## What is OpenTeams?
|
|
23
|
+
|
|
24
|
+
OpenTeams is a multi-agent conversation platform where multiple AI agents (Claude Code, Gemini CLI, Codex, QWen Coder, etc.) can collaborate in shared chat sessions like a real team.
|
|
25
|
+
|
|
26
|
+
**Key Features:**
|
|
27
|
+
|
|
28
|
+
| Feature | What you get |
|
|
29
|
+
|--|--|
|
|
30
|
+
| **Supported agents** | Supports 10 coding-agent runtimes, including `Claude Code`, `Gemini CLI`, `Codex`, `Qwen Code`, `Amp`, `Cursor Agent`, `Copilot`, `Droid`, `Kimi Code`, and `OpenCode`. |
|
|
31
|
+
| **Shared group-chat context** | Every participant works from the same conversation history instead of juggling copied prompts across separate windows. |
|
|
32
|
+
| **Parallel execution** | Multiple agents can work on the same task at the same time inside one shared session. |
|
|
33
|
+
| **Autonomous collaboration** | Agents can `@mention` each other, hand work off, and coordinate directly inside the chat. |
|
|
34
|
+
| **Built-in AI members** | Start with 160+ built-in AI members across engineering, marketing, writing, research, and content production. |
|
|
35
|
+
| **Built-in AI team presets** | Launch with 8 ready-to-use team presets for common workflows. |
|
|
36
|
+
| **Skill library** | Equip agents with 1000+ built-in skills, and import your own skills when needed. |
|
|
37
|
+
| **Fully local execution** | Agents run against your local workspace. No need to be concerned about data privacy. |
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Quick Start
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# Run OpenTeams web app
|
|
45
|
+
npx openteams-web
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Requirements
|
|
49
|
+
|
|
50
|
+
**You'll need at least one AI agent installed:**
|
|
51
|
+
|
|
52
|
+
| Agent | Install |
|
|
53
|
+
|-------|---------|
|
|
54
|
+
| [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | `npm i -g @anthropic-ai/claude-code` |
|
|
55
|
+
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `npm i -g @google/gemini-cli` |
|
|
56
|
+
| [Codex](https://github.com/openai/codex) | `npm i -g @openai/codex` |
|
|
57
|
+
| [Qwen Code](https://qwenlm.github.io/qwen-code-docs/en/users/overview/) | `npm i -g @qwen-code/qwen-code` |
|
|
58
|
+
|
|
59
|
+
📚 [More agent installation guides](https://docs.openteams.com/getting-started)
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Why we're better
|
|
64
|
+
|
|
65
|
+
Legend: ✅ Full support | 🟡 Partial support | ❌ No support
|
|
66
|
+
|
|
67
|
+
| **Capability** | Traditional Single Agent | Multi-window Workflow | Claude Code Agent Team | OpenTeams |
|
|
68
|
+
|--|--|--|--|--|
|
|
69
|
+
| **Parallelism**| ❌ No, sequential | 🟡 Partial, manual | ✅ Yes, Claude subagents | ✅ Yes, automatic |
|
|
70
|
+
| **Shared context** | ❌ No | ❌ No, copy-paste | 🟡 Partial, split subagent contexts | ✅ Yes, always in sync |
|
|
71
|
+
| **Multi-model collaboration** | ❌ No | 🟡 Partial, manual switching | ❌ No, Claude only | ✅ Yes, Claude + Gemini + Codex + more |
|
|
72
|
+
| **Agent handoff** | ❌ No | ❌ No, you orchestrate it | 🟡 Partial, delegated inside Claude | ✅ Yes, direct `@mentions` |
|
|
73
|
+
| **Predefined AI member** | ❌ No | ❌ No | ❌ No | ✅ Yes, 160+ members |
|
|
74
|
+
| **Team manager** | ❌ No | ❌ No | ❌ No | ✅ Yes, Customize team guidelines |
|
|
75
|
+
| **Your effort** | 🔴 High | 🔴 Very high | 🟠 Medium | 🟢 Low |
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Community
|
|
80
|
+
|
|
81
|
+
| | |
|
|
82
|
+
|--|--|
|
|
83
|
+
| **Bug Reports** | [GitHub Issues](https://github.com/openteams-lab/openteams/issues) |
|
|
84
|
+
| **Discussions** | [GitHub Discussions](https://github.com/openteams-lab/openteams/discussions) |
|
|
85
|
+
| **Community Chat** | [Discord](https://discord.gg/MbgNFJeWDc) |
|
|
86
|
+
|
|
87
|
+
## License
|
|
88
|
+
|
|
89
|
+
Apache 2.0
|
package/bin/cli.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openteams-web",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "AI Coding Agents Chatgroup - Alias package for @openteams-lab/openteams-web",
|
|
5
|
+
"author": "openteams-lab",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/StarterraAI/OpenTeams"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/StarterraAI/OpenTeams",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/StarterraAI/OpenTeams/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"ai",
|
|
17
|
+
"agents",
|
|
18
|
+
"chatgroup",
|
|
19
|
+
"coding",
|
|
20
|
+
"assistant",
|
|
21
|
+
"installer",
|
|
22
|
+
"cli",
|
|
23
|
+
"cross-platform"
|
|
24
|
+
],
|
|
25
|
+
"bin": {
|
|
26
|
+
"openteams": "bin/cli.js"
|
|
27
|
+
},
|
|
28
|
+
"main": "bin/cli.js",
|
|
29
|
+
"files": [
|
|
30
|
+
"bin"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"os": [
|
|
36
|
+
"darwin",
|
|
37
|
+
"linux",
|
|
38
|
+
"win32"
|
|
39
|
+
],
|
|
40
|
+
"cpu": [
|
|
41
|
+
"x64",
|
|
42
|
+
"arm64"
|
|
43
|
+
],
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@openteams-lab/openteams-web": "^0.3.1"
|
|
46
|
+
}
|
|
47
|
+
}
|