Skip to content

Commit 7b82e09

Browse files
committed
docs: explain packaged workflows
1 parent 30cb6c1 commit 7b82e09

3 files changed

Lines changed: 28 additions & 5 deletions

File tree

packages/docs/.vitepress/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ export default defineConfig({
3737
text: 'Workflows',
3838
items: [
3939
{ text: 'Workflow-Selection', link: '/user/workflow-selection' },
40-
{ text: 'Explore All Workflows', link: '/workflows' },
40+
{ text: 'Packaged Workflows', link: '/user/packaged-workflows' },
4141
{ text: 'Custom Workflows', link: '/user/custom-workflows' },
42+
{ text: 'Explore All Workflows', link: '/workflows' },
4243
{
4344
text: 'Crowd MCP Integration',
4445
link: '/user/crowd-mcp-integration',

packages/docs/user/custom-workflows.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,3 @@ states:
267267
**Discoverable**: Rich metadata helps AI select appropriate workflows
268268
269269
Your custom workflows integrate seamlessly with the built-in ones, giving you complete control over your development process.
270-
271-
---
272-
273-
**Next**: [Git Commits](./git-commit-feature.md) – Configure automatic commit behavior
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Packaged Workflows
2+
3+
Responsible Vibe includes more and more workflows for different purposes.
4+
5+
In order to now consume more and more space in your agent's context (their descriptions are always exposed, so that the agent knows which one to pick), not all of them are loaded by default.
6+
7+
Instead, they are organized into multiple domains and you can decide which ones you'd like to use.
8+
9+
**By default, only the `code` workflows are loaded**
10+
11+
### Workflow Domains
12+
13+
- **`code`**: Software development workflows
14+
- **`architecture`**: System design and architecture workflows
15+
- **`office`**: Business process and documentation workflows
16+
17+
**Control which domains are loaded:**
18+
19+
When running the MCP-server (or configuring your agent how to run it), pass an environment variable to define the domains you'd like to use.
20+
21+
```bash
22+
export VIBE_WORKFLOW_DOMAINS="code,architecture"
23+
# Only loads workflows from code and architecture domains
24+
```
25+
26+
If the included workflows don't match your needs, feel free to [define custom workflows](./custom-workflows.md)!

0 commit comments

Comments
 (0)