Skip to content

Commit 048bf9d

Browse files
committed
feat: add content-strategist agent to registry
1 parent b4bc4c7 commit 048bf9d

File tree

4 files changed

+66
-0
lines changed

4 files changed

+66
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# content-strategist
2+
3+
Multi-channel content creation engine that transforms topics and source material into channel-optimized assets. Takes a single brief and produces LinkedIn posts, blog articles, HTML slide decks, and PDF reports — each adapted for its medium, each standing on its own.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/content-strategist
9+
```
10+
11+
## What It Can Do
12+
13+
- **Channel-Optimized Production** — generates distinct content for LinkedIn, blog, slides, and PDF from a single topic
14+
- **Research-First Writing** — invokes web research and video analysis before drafting to ground every claim in evidence
15+
- **Content Strategy Planning** — maps topics to formats based on audience, goal, and distribution channel
16+
- **Tone Adaptation** — matches voice to channel: conversational on LinkedIn, authoritative in long-form, concise on slides
17+
- **Humanization Pass** — strips AI-typical patterns, formulaic transitions, and generic qualifiers from all output
18+
19+
## Structure
20+
21+
```
22+
content-strategist/
23+
├── .gitignore
24+
├── LICENSE
25+
├── README.md
26+
├── RULES.md
27+
├── SOUL.md
28+
├── agent.yaml
29+
├── assets/
30+
│ ├── icon.png
31+
│ └── banner.png
32+
└── knowledge/
33+
├── channel-specifications.md
34+
├── content-quality-checklist.md
35+
└── tone-adaptation-guide.md
36+
```
37+
38+
## Built with
39+
40+
Built for the [gitagent](https://gitagent.sh) ecosystem.
173 KB
Loading
12.4 KB
Loading
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "content-strategist",
3+
"author": "Mathews-Tom",
4+
"description": "Multi-channel content creation engine that transforms topics into channel-optimized LinkedIn posts, blog articles, slide decks, and PDF reports",
5+
"repository": "https://github.com/Mathews-Tom/content-strategist",
6+
"version": "1.0.0",
7+
"category": "content",
8+
"tags": [
9+
"content",
10+
"writing",
11+
"linkedin",
12+
"blog",
13+
"slides",
14+
"pdf",
15+
"multi-channel",
16+
"marketing"
17+
],
18+
"license": "MIT",
19+
"model": "claude-sonnet-4-5-20250929",
20+
"adapters": [
21+
"claude-code",
22+
"system-prompt"
23+
],
24+
"icon": true,
25+
"banner": true
26+
}

0 commit comments

Comments
 (0)