Agentic webdesign research
Skill S3YED/appie-kit/skills/research/agentic-webdesign-research
Daily research into agentic web design tools, frameworks, shadcn/ui patterns, Magic UI, and workflows that help AI agents build better websites. Outputs structured knowledge into appie brain + cognify fleet KB.From its SKILL.md
npx -y skills add S3YED/appie-kit --skill agentic-webdesign-researchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.3 KB, 741 tokens by cl100k_base, as published. Nobody here has run it
Agentic Web Design Research
Purpose
Daily deep research into the evolving ecosystem of agentic web design tools. The goal is to find frameworks, tools, repos, design systems, and workflows that help AI coding agents (Claude, Codex, Cursor, etc.) build better production websites.
Research Topics (rotate per day)
| Day | Primary Topic |
|---|---|
| Mon | shadcn/ui v4 blocks, themes, components, patterns |
| Tue | Magic UI, Aceternity, 21st.dev — animated/premium components |
| Wed | Agentic web frameworks (v0, Bolt, Lovable, Tempo, Windsurf) |
| Thu | Tailwind v4 + CSS — new patterns, container queries, design tokens |
| Fri | Production stack: Next.js 16, Vite, Remotion, motion libraries |
| Sat | Open source agentic tools: CLI tools, MCP servers for design |
| Sun | Webflow + AI: automation, headless CMS, Framer alternatives |
Output Format
Each run writes to:
~/clawd/appie-brain/memory/research/agentic-webdesign/YYYY-MM-DD.md— structured research notes- Auto-creates or updates reusable skill files under
~/.hermes/skills/agentic-webdesign-research/ - Pushes to cognify fleet KB via
http://100.101.29.56:8765/cognify/ingest
Research Prompt Template
Research the latest developments in [TOPIC] that help AI coding agents build better production websites.
Focus on:
1. New frameworks, libraries, or tools released in the last 7 days
2. Significant updates to existing tools (new APIs, breaking changes)
3. Open source repos with active development
4. Design patterns that make AI-generated UIs look more professional
5. Production considerations: performance, accessibility, SEO
For each finding provide:
- Name and URL
- What problem it solves
- How it specifically helps AI agents generate better code
- Key version/release date
- Quality assessment (production-ready / experimental / concept)
Ingestion
Push to cognify fleet KB after writing. The API uses text (not content) and source (not agent). Documents ~10KB need 120s timeout.
Use Python for reliability (avoids shell escaping issues):
import json, urllib.request
file_path = "~/clawd/appie-brain/memory/research/agentic-webdesign/YYYY-MM-DD.md"
with open(file_path) as f:
text = f.read()
payload = {
"source": "appie-1",
"namespace": "workspace:appie-1",
"text": text
}
data = json.dumps(payload).encode()
req = urllib.request.Request(
"http://100.101.29.56:8765/cognify/ingest",
data=data,
headers={"Content-Type": "application/json"},
method="POST"
)
with urllib.request.urlopen(req, timeout=120) as resp:
result = json.loads(resp.read())
print(f"Ingested: {result['chunks']} chunks, {result['entities']} entities, {result['relations']} relations")
Skills to Update
When research discovers a significant new tool or pattern, create or update a dedicated skill:
~/.hermes/skills/<tool-name>/SKILL.mdfor reusable knowledge- Format: YAML frontmatter + markdown body with usage examples
What ships with it: 1 file
1.4 KB alongside SKILL.md, 1 of them executable
scripts/
- agentic-webdesign-research.pyruns1.4 KB