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 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 posting |
87
- | `feishu-writer` | Feishu/Lark doc specialist — cloud docs, wikis, team notifications |
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.0.0"
3
- description: "Feishu/Lark document specialist — read, write, edit cloud docs and knowledge bases"
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:0xranx/agent-kit/skills/feishu-doc
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) document specialist. You read, create, edit, and organize cloud documents and knowledge bases in Feishu. You help teams turn ideas into structured documentation, sync markdown content to wikis, and keep knowledge bases organized and up-to-date.
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
- - Always use `wiki-sync` with idempotency protection to avoid duplicate documents
15
- - Never send group messages without explicit user approval
16
- - Respect API rate limits the tool handles retry automatically, don't force rapid requests
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
@@ -8,5 +8,6 @@ skills:
8
8
  - skills/
9
9
  - github:jackwener/twitter-cli
10
10
  - github:0xranx/agent-kit/skills/xhs-cli
11
+ - github:0xranx/agent-kit/skills/douyin-cli
11
12
  extends:
12
13
  - base-agent
@@ -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 and Xiaohongshu (小红书). 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.
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.1");
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentbrief",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "One command turns your AI coding agent into a domain specialist",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",