Problem
Currently Hermes Skills operate in isolation. Each Skill is triggered independently by keywords, with no mechanism to chain or compose multiple Skills for complex tasks.
Concrete Example
When a user says "write a WeChat article", the system only loads wechat-article-publish. It does NOT automatically:
- Generate content
- Humanize the text (remove AI tone via
humanizer)
- Check/generate cover image
- Format and optimize layout
- Publish
The user must manually trigger each step: "humanize it", "add a cover", "fix formatting". This is fragmented and inefficient.
Why This Matters
- Cognitive load: Users need to know which Skills exist and when to use them
- Quality gaps: Missing steps (e.g., skipping humanizer) produce worse output
- Skill ecosystem limit: Even with 100+ Skills, they remain isolated tools rather than an integrated workflow
Proposed Solutions
Option A: Task Workflows (User-defined)
- Allow users to define task templates that bind multiple Skills in sequence
- Example: "WeChat publish workflow" = write -> humanize -> cover -> publish
- One trigger runs the full pipeline
Option B: Smart Orchestration (System-driven)
- System analyzes the task, auto-decomposes into steps
- Matches each step to optimal Skill
- Self-checks output quality, auto-triggers missing steps (e.g., detects AI tone -> invokes humanizer)
Preferred Approach
Combine both: Workflows for explicit control, Orchestration for intelligent gap-filling.
Value
- Reduce user cognitive burden
- Improve output quality through systematic pipeline execution
- Transform Skill ecosystem from isolated tools to composable workflows
Problem
Currently Hermes Skills operate in isolation. Each Skill is triggered independently by keywords, with no mechanism to chain or compose multiple Skills for complex tasks.
Concrete Example
When a user says "write a WeChat article", the system only loads
wechat-article-publish. It does NOT automatically:humanizer)The user must manually trigger each step: "humanize it", "add a cover", "fix formatting". This is fragmented and inefficient.
Why This Matters
Proposed Solutions
Option A: Task Workflows (User-defined)
Option B: Smart Orchestration (System-driven)
Preferred Approach
Combine both: Workflows for explicit control, Orchestration for intelligent gap-filling.
Value