Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ jobs:

- name: 验证 .gitignore 排除源 MD
run: |
if [ -f "Test-Agent工作流搭建.md" ]; then
if [ -f "Test-Agent.md" ]; then
echo "❌ 敏感本地文档不应出现在仓库"
exit 1
fi
grep "Test-Agent工作流搭建.md" .gitignore || \
grep "Test-Agent.md" .gitignore || \
{ echo "❌ .gitignore 未排除源 MD"; exit 1; }
echo "✅ 敏感本地文档受保护"

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ coverage.xml
pip-wheel-metadata/

# ===== 私有源文档(个人归属,不公开)=====
Test-Agent工作流搭建.md
Test-Agent.md
00-协作宪章.md
灵感笔记.md
_精髓库_apply_policy.example.yaml
Expand Down
6 changes: 3 additions & 3 deletions 01-快速开始/使用手册.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## 🚀 启动指引(首次部署到首次跑通)

> **关键概念**:本仓库是**模板**,需"部署"到你的**真实测试项目目录**才能用。
> 模板目录(`Test-Agent工作流搭建/`)≠ 工作目录(`your-test-project/`)。
> 模板目录(`Test-Agent/`)≠ 工作目录(`your-test-project/`)。

### 一图速览

```text
A. 模板仓库(你下载的) B. 真实测试项目(你工作的)
Test-Agent工作流搭建/ ─部署→ your-test-project/
Test-Agent/ ─部署→ your-test-project/
├── 02-专家定义/ ├── .claude/agents/
├── 03-技能定义/ ├── .claude/skills/
├── 04-配置文件/ ├── conftest.py / pytest.ini / .env / .mcp.json
Expand Down Expand Up @@ -46,7 +46,7 @@ curl -fsSL https://raw.githubusercontent.com/Wool-xing/Test-Agent/main/install.s

# 或先 clone 再本地跑
git clone https://github.com/Wool-xing/Test-Agent.git
bash Test-Agent工作流搭建/install.sh /path/to/your-test-project
bash Test-Agent/install.sh /path/to/your-test-project
```

> 默认仓库为 `Wool-xing/Test-Agent`。fork 后将路径替换为你自己用户名 / 组织名(或用 `TEST_AGENT_REPO_URL` 环境变量覆盖)。
Expand Down
10 changes: 5 additions & 5 deletions 01-快速开始/部署说明.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ scoop install allure

```powershell
# 用户填入两个变量
$TEMPLATE_DIR = "C:\path\to\Test-Agent工作流搭建" # 模板克隆目录
$TEMPLATE_DIR = "C:\path\to\Test-Agent" # 模板克隆目录
$PROJECT_ROOT = "C:\path\to\your-test-project" # 测试项目目录

# 配置 PowerShell 执行策略(首次需要)
Expand Down Expand Up @@ -245,7 +245,7 @@ curl -fsSL https://raw.githubusercontent.com/Wool-xing/Test-Agent/main/install.s
# 私有仓库(先认证)
gh auth login # 或配置 SSH
git clone git@github.com:Wool-xing/Test-Agent.git
bash Test-Agent工作流搭建/install.sh /path/to/your-test-project
bash Test-Agent/install.sh /path/to/your-test-project
```

如 fork 后使用,将 `Wool-xing` 替换为你的 GitHub 用户名 / 组织名(或用 `TEST_AGENT_REPO_URL` 环境变量覆盖,详见 install.sh)。
Expand Down Expand Up @@ -374,10 +374,10 @@ echo "=========================================="
chmod +x deploy.sh

# 部署(参数化)
TEMPLATE_DIR=/path/to/Test-Agent工作流搭建 ./deploy.sh /path/to/your-test-project
TEMPLATE_DIR=/path/to/Test-Agent ./deploy.sh /path/to/your-test-project

# 或部署到默认目录(当前目录下 test-project)
TEMPLATE_DIR=/path/to/Test-Agent工作流搭建 ./deploy.sh
TEMPLATE_DIR=/path/to/Test-Agent ./deploy.sh
```

### macOS Java/JMeter/Allure 安装
Expand Down Expand Up @@ -561,7 +561,7 @@ pip install -U -r requirements.txt
### 升级模板

```bash
cd /path/to/Test-Agent工作流搭建
cd /path/to/Test-Agent
git pull
TEMPLATE_DIR=$(pwd) ./01-快速开始/deploy.sh /path/to/your-test-project
```
Expand Down
2 changes: 1 addition & 1 deletion 04-配置文件/llm-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
1. 选厂商 (路径 A 内置 6 / 路径 B 兼容 5+)
2. 复制对应 export
3. `tagent demo` 验路由
- **实测有效** (V1.21.0): Claude / OpenAI / Gemini / DeepSeek / Qwen / Ollama / **智谱 GLM** (路径 B 实测 20/20 准, 见 PR #79)
- **实测有效** (V1.32.0): Claude / OpenAI / Gemini / DeepSeek / Qwen / Ollama / **智谱 GLM** (路径 B 实测 20/20 准, 见 PR #79)
- **适用场景**:
- 离线本地 = Ollama / Qwen
- 国内合规 = 智谱 / 豆包 / 通义
Expand Down
2 changes: 1 addition & 1 deletion 04-配置文件/templates/INDEX.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 配置模板库索引(V1.12.0)
# 配置模板库索引V1.32.0)

> `tagent init` 交互向导从本目录读取模板 + matrix · 5 分钟生成 `.env` + `tagent.yml` + `STARTUP.md`。

Expand Down
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Changelog

本文件记录 Test-Agent 工作流项目的所有可见变更
本文件记录 Test-Agent 项目的所有可见变更

格式参考 [Keep a Changelog 1.1.0](https://keepachangelog.com/zh-CN/1.1.0/),
版本号遵循 [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/)。

> 项目代号:`test-agent-team`(全英文内部代号)
> 中文别名:`Test-Agent 工作流搭建`
> 项目名称:`Test-Agent`(内部代号 `test-agent-team`)

---

Expand All @@ -16,9 +15,9 @@ _后续累积变更入此节;切版本时移到下方版本节。_

---

## [v1.32.0] - 2026-05-16
## [v1.32.0] - 2026-05-17

> **V1.15.0 → V1.32.0 (2026-05-15 ~ 2026-05-16) 共 17 版累积**。
> **V1.15.0 → V1.32.0 (2026-05-15 ~ 2026-05-17) 共 17 版累积**。
> expert rollout 收尾 (V1.15-V1.20) + skill rollout 全 14/14 完成 (V1.21-V1.31)。
> 版本历史见 [ROADMAP.md](ROADMAP.md#进度跟踪) 进度跟踪表。

Expand Down
5 changes: 2 additions & 3 deletions FULL_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
> 简明入口 → [README.md](README.md) ;按职责分类速查 → [00-项目导航.md](00-项目导航.md)。
> **维护原则**:决策入档、开放问题入档、不打脸的承诺才写。重大决策须更新「📋 开放问题」与「🗺️ 项目当前状态」两节。

**项目代号**:`test-agent-team`(全英文)
**项目目录名**:`Test-Agent`(中文别名 `Test-Agent团队`)
**项目名称**:`Test-Agent`(内部代号 `test-agent-team`)
**当前阶段**:Phase 2 前期(V1.32.0 · 16 expert + 23/32 skill production + 0 rollout + 2 vision;V1.x rollout 收尾)
**版本**:V1.32.0(详见 [VERSION](VERSION) + [CHANGELOG.md](CHANGELOG.md))
**更新日期**:2026-05-16
**更新日期**:2026-05-17
**模型**:Claude 4.x 系列(Opus 4.7 / Sonnet 4.6 / Haiku 4.5,由 Claude Code 默认管理)

---
Expand Down
2 changes: 1 addition & 1 deletion docs/charter/05-install-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ curl -fsSL https://raw.githubusercontent.com/Wool-xing/Test-Agent/main/install.s

# 或先 clone 再本地跑
git clone https://github.com/Wool-xing/Test-Agent.git
bash Test-Agent工作流搭建/install.sh /path/to/your-test-project
bash Test-Agent/install.sh /path/to/your-test-project
```

> 默认仓库为 `Wool-xing/Test-Agent`。fork 后将路径替换为你自己用户名(或用 `TEST_AGENT_REPO_URL` 环境变量覆盖)。Windows / 手动方式见 `01-快速开始/部署说明.md`。
Expand Down
6 changes: 3 additions & 3 deletions docs/charter/07-runtime-license.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,19 @@ V1.14+ 真 LLM-driven agent runner + V1.21+ SkillRunner 系统为 runtime 新增

## 🗺️ 项目当前状态与下次会话快速指引

### 当前阶段(最后更新:2026-05-16
### 当前阶段(最后更新:2026-05-17

- **Phase**:Phase 2 前期(V1.32.0 · expert rollout 收尾 + skill rollout 完成 14/14)
- **关键已交付**:16 expert (11p+5s) · 32 skill (23p+7s+0r+2v) · AgentChat · Bug 多适配 · 按需安装 · darwin-skill · MCP 6 件套 · Marketplace · 教学层 · 多 LLM config · 16 SkillRunner 全落地
- **活跃 PR**:无(V1.31 rollout 完成,2026-05-16
- **活跃 PR**:无(V1.32.0 release,2026-05-17

### 历史关键决议

- 2026-05-11:宪章四章 + 三公理 + 五铭文起草完成
- 2026-05-11:FULL_GUIDE.md 确立永久宪章地位
- 2026-05-11:darwin-skill 不消费运行数据(Via Negativa);反问 KB 不进 V1.0.0
- 2026-05-12 ~ 2026-05-14:V1.1-V1.14 runtime 层 + 教学层 + Marketplace + 渗透/车载 + Hermes + GBrain + Karpathy + ECC
- 2026-05-15 ~ 2026-05-16:V1.15-V1.26 13 版迭代 — 11 expert 真 LLM-driven 落地 + 4 SkillRunner 生产落地 + 多 LLM config + 深审修复
- 2026-05-15 ~ 2026-05-17:V1.15-V1.32 18 版迭代 — 16 expert 全 production + 23 SkillRunner 生产落地 + 多 LLM config + 深审修复 + GUI + Dashboard + Mobile

### 下次会话进入项目时,按顺序检查

Expand Down
Loading