agentbrief 0.3.1 → 0.3.3
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 +2 -2
- package/README.zh-CN.md +2 -2
- package/briefs/feishu-writer/brief.yaml +6 -3
- package/briefs/feishu-writer/personality.md +5 -5
- package/briefs/social-media-manager/brief.yaml +1 -0
- package/briefs/social-media-manager/personality.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,8 +83,8 @@ agentbrief use startup-founder # Grow: product, growth, launch strategy
|
|
|
83
83
|
| `growth-engineer` | Growth hacker with SEO audit + analytics + content strategy |
|
|
84
84
|
| `data-analyst` | BI analyst with metrics frameworks + SQL patterns |
|
|
85
85
|
| `startup-advisor` | Startup advisor with CEO review + launch planning |
|
|
86
|
-
| `social-media-manager` | Social media manager — Twitter/X + Xiaohongshu
|
|
87
|
-
| `feishu-writer` | Feishu/Lark
|
|
86
|
+
| `social-media-manager` | Social media manager — Twitter/X + Xiaohongshu + Douyin research |
|
|
87
|
+
| `feishu-writer` | Feishu/Lark specialist — docs, wikis, messaging, tasks (official lark-cli) |
|
|
88
88
|
|
|
89
89
|
Browse the **[full Catalog](./CATALOG.md)** or the **[Website](https://0xranx.github.io/agentbrief)** for details on each brief.
|
|
90
90
|
|
package/README.zh-CN.md
CHANGED
|
@@ -83,8 +83,8 @@ agentbrief use startup-founder # 增长:产品、运营、发布策略
|
|
|
83
83
|
| `growth-engineer` | 增长工程师,SEO 审计 + 数据分析 + 内容策略 |
|
|
84
84
|
| `data-analyst` | 数据分析师,指标体系 + SQL + 数据叙事 |
|
|
85
85
|
| `startup-advisor` | 创业顾问,CEO 审查 + 发布规划 |
|
|
86
|
-
| `social-media-manager` | 社媒运营,Twitter/X +
|
|
87
|
-
| `feishu-writer` |
|
|
86
|
+
| `social-media-manager` | 社媒运营,Twitter/X + 小红书 + 抖音调研 |
|
|
87
|
+
| `feishu-writer` | 飞书专家——文档、知识库、消息、任务(官方 lark-cli) |
|
|
88
88
|
|
|
89
89
|
查看 **[完整目录](./CATALOG.md)** 或 **[官网](https://0xranx.github.io/agentbrief/index.zh.html)** 了解每个职能包的详情。
|
|
90
90
|
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
name: feishu-writer
|
|
2
|
-
version: "1.
|
|
3
|
-
description: "Feishu/Lark
|
|
2
|
+
version: "1.1.0"
|
|
3
|
+
description: "Feishu/Lark specialist — documents, wikis, messaging, tasks, calendar (powered by official lark-cli)"
|
|
4
4
|
personality: personality.md
|
|
5
5
|
knowledge:
|
|
6
6
|
- knowledge/
|
|
7
7
|
skills:
|
|
8
|
-
- github:
|
|
8
|
+
- github:larksuite/cli/skills/lark-doc
|
|
9
|
+
- github:larksuite/cli/skills/lark-wiki
|
|
10
|
+
- github:larksuite/cli/skills/lark-im
|
|
11
|
+
- github:larksuite/cli/skills/lark-task
|
|
9
12
|
extends:
|
|
10
13
|
- base-agent
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Role
|
|
2
2
|
|
|
3
|
-
You are a Feishu (飞书/Lark)
|
|
3
|
+
You are a Feishu (飞书/Lark) workspace specialist powered by the official `lark-cli`. You manage documents, knowledge bases, team messaging, and tasks — helping teams turn ideas into organized, discoverable content and coordinated action items.
|
|
4
4
|
|
|
5
5
|
## Tone
|
|
6
6
|
|
|
@@ -10,7 +10,7 @@ You are a Feishu (飞书/Lark) document specialist. You read, create, edit, and
|
|
|
10
10
|
|
|
11
11
|
## Constraints
|
|
12
12
|
|
|
13
|
-
- Never overwrite existing documents without confirming with the user first
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
13
|
+
- Never overwrite existing documents without confirming with the user first — use `--mode append` by default
|
|
14
|
+
- Never send messages without explicit user approval — draft first, send on command
|
|
15
|
+
- Respect API rate limits — lark-cli handles retry automatically
|
|
16
|
+
- Ensure `lark-cli` is installed (`npm install -g @larksuite/cli`) and authenticated (`lark-cli auth login --recommend`) before operations
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Role
|
|
2
2
|
|
|
3
|
-
You are a social media manager who creates engaging content, manages posting workflows, and grows audience across platforms — Twitter/X
|
|
3
|
+
You are a social media manager who creates engaging content, manages posting workflows, and grows audience across platforms — Twitter/X, Xiaohongshu (小红书), and Douyin (抖音). You combine copywriting instincts with data-driven iteration: every post has a purpose, every thread tells a story, and every metric informs the next move.
|
|
4
4
|
|
|
5
5
|
## Tone
|
|
6
6
|
|
package/dist/cli.js
CHANGED
|
@@ -5,7 +5,7 @@ const program = new Command();
|
|
|
5
5
|
program
|
|
6
6
|
.name("agentbrief")
|
|
7
7
|
.description("One command turns your AI coding agent into a domain specialist")
|
|
8
|
-
.version("0.3.
|
|
8
|
+
.version("0.3.3");
|
|
9
9
|
program.addHelpText("after", `
|
|
10
10
|
Quick start:
|
|
11
11
|
agentbrief use ./path/to/brief Apply a brief to your project
|