@the-agenticflow/openflows 0.1.3 → 0.1.6
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/.env.example +60 -0
- package/README.md +156 -113
- package/bin/LICENSE +21 -0
- package/bin/README.md +535 -0
- package/bin/agentflow-bin +0 -0
- package/bin/agentflow-dashboard-bin +0 -0
- package/bin/agentflow-doctor-bin +0 -0
- package/bin/agentflow-setup-bin +0 -0
- package/bin/openflows.js +285 -3
- package/bin/orchestration/agent/agents/forge.agent.md +110 -0
- package/bin/orchestration/agent/agents/lore.agent.md +27 -0
- package/bin/orchestration/agent/agents/nexus.agent.md +201 -0
- package/bin/orchestration/agent/agents/sentinel.agent.md +96 -0
- package/bin/orchestration/agent/agents/vessel.agent.md +38 -0
- package/bin/orchestration/agent/registry.json +10 -0
- package/bin/orchestration/agent/standards/CODING.md +22 -0
- package/bin/orchestration/agent/standards/REVIEW.md +15 -0
- package/bin/orchestration/agent/standards/SECURITY.md +72 -0
- package/bin/orchestration/plugin/commands/assign.md +45 -0
- package/bin/orchestration/plugin/commands/check-ci.md +26 -0
- package/bin/orchestration/plugin/commands/document-pr.md +32 -0
- package/bin/orchestration/plugin/commands/gate-approve.md +39 -0
- package/bin/orchestration/plugin/commands/handoff.md +75 -0
- package/bin/orchestration/plugin/commands/merge.md +47 -0
- package/bin/orchestration/plugin/commands/plan.md +66 -0
- package/bin/orchestration/plugin/commands/segment-done.md +50 -0
- package/bin/orchestration/plugin/commands/status-check.md +28 -0
- package/bin/orchestration/plugin/commands/status.md +94 -0
- package/bin/orchestration/plugin/commands/update-changelog.md +37 -0
- package/bin/orchestration/plugin/hooks/forge/post_write_lint.sh +76 -0
- package/bin/orchestration/plugin/hooks/forge/pre_bash_guard.sh +81 -0
- package/bin/orchestration/plugin/hooks/forge/pre_compact_handoff.sh +28 -0
- package/bin/orchestration/plugin/hooks/forge/pre_write_check.sh +77 -0
- package/bin/orchestration/plugin/hooks/forge/session_start.sh +59 -0
- package/bin/orchestration/plugin/hooks/forge/stop_require_artifact.sh +75 -0
- package/bin/orchestration/plugin/hooks/lore/session-start.sh +13 -0
- package/bin/orchestration/plugin/hooks/nexus/init-session.sh +23 -0
- package/bin/orchestration/plugin/hooks/nexus/log-decision.sh +10 -0
- package/bin/orchestration/plugin/hooks/sentinel/post_write_validate.sh +59 -0
- package/bin/orchestration/plugin/hooks/sentinel/pre_bash_readonly_guard.sh +107 -0
- package/bin/orchestration/plugin/hooks/sentinel/session_start.sh +74 -0
- package/bin/orchestration/plugin/hooks/sentinel/stop_require_eval.sh +57 -0
- package/bin/orchestration/plugin/hooks/vessel/log-merge-status.sh +7 -0
- package/bin/orchestration/plugin/hooks/vessel/session-start.sh +14 -0
- package/bin/orchestration/plugin/mcp/mcp.json.template +26 -0
- package/bin/orchestration/plugin/plugin.json +66 -0
- package/bin/orchestration/plugin/skills/forge-algorithmic-art.md +24 -0
- package/bin/orchestration/plugin/skills/forge-canvas-design.md +25 -0
- package/bin/orchestration/plugin/skills/forge-coding.md +161 -0
- package/bin/orchestration/plugin/skills/forge-frontend-design.md +30 -0
- package/bin/orchestration/plugin/skills/forge-mcp-builder.md +37 -0
- package/bin/orchestration/plugin/skills/forge-planning.md +102 -0
- package/bin/orchestration/plugin/skills/forge-skill-creator.md +25 -0
- package/bin/orchestration/plugin/skills/forge-web-artifacts-builder.md +29 -0
- package/bin/orchestration/plugin/skills/lore-brand-guidelines.md +33 -0
- package/bin/orchestration/plugin/skills/lore-changelog.md +69 -0
- package/bin/orchestration/plugin/skills/lore-doc-coauthoring.md +33 -0
- package/bin/orchestration/plugin/skills/lore-documentation.md +57 -0
- package/bin/orchestration/plugin/skills/lore-docx.md +20 -0
- package/bin/orchestration/plugin/skills/lore-pdf.md +20 -0
- package/bin/orchestration/plugin/skills/lore-pptx.md +23 -0
- package/bin/orchestration/plugin/skills/lore-theme-factory.md +20 -0
- package/bin/orchestration/plugin/skills/lore-xlsx.md +20 -0
- package/bin/orchestration/plugin/skills/nexus-doc-coauthoring.md +21 -0
- package/bin/orchestration/plugin/skills/nexus-internal-comms.md +28 -0
- package/bin/orchestration/plugin/skills/nexus-orchestration.md +63 -0
- package/bin/orchestration/plugin/skills/nexus-skill-creator.md +15 -0
- package/bin/orchestration/plugin/skills/nexus-slack-gif-creator.md +21 -0
- package/bin/orchestration/plugin/skills/nexus-triage.md +56 -0
- package/bin/orchestration/plugin/skills/nexus-xlsx.md +20 -0
- package/bin/orchestration/plugin/skills/sentinel-algorithmic-art.md +20 -0
- package/bin/orchestration/plugin/skills/sentinel-criteria.md +115 -0
- package/bin/orchestration/plugin/skills/sentinel-frontend-design.md +20 -0
- package/bin/orchestration/plugin/skills/sentinel-review.md +124 -0
- package/bin/orchestration/plugin/skills/sentinel-web-artifacts-builder.md +20 -0
- package/bin/orchestration/plugin/skills/sentinel-webapp-testing.md +34 -0
- package/bin/orchestration/plugin/skills/shared-claude-api.md +25 -0
- package/bin/orchestration/plugin/skills/vessel-ci-gate.md +68 -0
- package/bin/orchestration/plugin/skills/vessel-internal-comms.md +20 -0
- package/bin/orchestration/plugin/skills/vessel-mcp-builder.md +21 -0
- package/bin/orchestration/plugin/skills/vessel-merge-protocol.md +113 -0
- package/bin/orchestration/plugin/skills/vessel-pdf.md +20 -0
- package/bin/orchestration/plugin/skills/vessel-webapp-testing.md +34 -0
- package/package.json +8 -3
- package/scripts/install.js +162 -9
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# FORGE Planning Skill
|
|
2
|
+
|
|
3
|
+
## Writing PLAN.md
|
|
4
|
+
|
|
5
|
+
Before any implementation, write a plan.
|
|
6
|
+
Use the `/plan` command to structure it correctly.
|
|
7
|
+
|
|
8
|
+
## What a good plan contains
|
|
9
|
+
|
|
10
|
+
1. **Your understanding of the ticket** - in your own words
|
|
11
|
+
2. **Technical approach** - follows `orchestration/agent/arch/patterns.md` (if it exists)
|
|
12
|
+
3. **Explicit segment breakdown** - each segment is independently testable
|
|
13
|
+
4. **Definition of done per segment** - specific and verifiable
|
|
14
|
+
5. **List of files you will create or modify**
|
|
15
|
+
6. **Risk areas** - things you are uncertain about
|
|
16
|
+
7. **Questions for SENTINEL** - clarifications needed before starting
|
|
17
|
+
|
|
18
|
+
## Segment sizing
|
|
19
|
+
|
|
20
|
+
A good segment:
|
|
21
|
+
- Touches 1-3 files
|
|
22
|
+
- Has a single clear purpose
|
|
23
|
+
- Can be tested in isolation
|
|
24
|
+
- Takes roughly 20-40 minutes to implement
|
|
25
|
+
|
|
26
|
+
A segment that is too large:
|
|
27
|
+
- Touches more than 5 files
|
|
28
|
+
- Has multiple unrelated concerns
|
|
29
|
+
- Cannot be independently verified
|
|
30
|
+
|
|
31
|
+
**Split it.**
|
|
32
|
+
|
|
33
|
+
## Example PLAN.md structure
|
|
34
|
+
|
|
35
|
+
```markdown
|
|
36
|
+
# PLAN: [Ticket Title]
|
|
37
|
+
|
|
38
|
+
## Understanding
|
|
39
|
+
|
|
40
|
+
[Brief summary of what we're building and why]
|
|
41
|
+
|
|
42
|
+
## Technical Approach
|
|
43
|
+
|
|
44
|
+
[How we'll implement it, referencing existing patterns]
|
|
45
|
+
|
|
46
|
+
## Segments
|
|
47
|
+
|
|
48
|
+
### Segment 1: [Name]
|
|
49
|
+
|
|
50
|
+
**Purpose:** [Single sentence]
|
|
51
|
+
|
|
52
|
+
**Files:**
|
|
53
|
+
- `src/path/file1.ts` (new)
|
|
54
|
+
- `src/path/file2.ts` (modify)
|
|
55
|
+
|
|
56
|
+
**Definition of Done:**
|
|
57
|
+
- [ ] [Specific criterion 1]
|
|
58
|
+
- [ ] [Specific criterion 2]
|
|
59
|
+
- [ ] Tests pass
|
|
60
|
+
|
|
61
|
+
### Segment 2: [Name]
|
|
62
|
+
...
|
|
63
|
+
|
|
64
|
+
## Files Changed
|
|
65
|
+
|
|
66
|
+
- `src/auth/login.ts` (new)
|
|
67
|
+
- `src/middleware/auth.ts` (modify)
|
|
68
|
+
- `tests/auth/login.test.ts` (new)
|
|
69
|
+
|
|
70
|
+
## Out of Scope
|
|
71
|
+
|
|
72
|
+
- [Explicitly list what we're NOT building]
|
|
73
|
+
- [This prevents scope creep]
|
|
74
|
+
|
|
75
|
+
## Risks
|
|
76
|
+
|
|
77
|
+
- [Risk 1]: [Mitigation strategy]
|
|
78
|
+
- [Risk 2]: [Mitigation strategy]
|
|
79
|
+
|
|
80
|
+
## Questions for SENTINEL
|
|
81
|
+
|
|
82
|
+
- [Question 1]
|
|
83
|
+
- [Question 2]
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Contract negotiation
|
|
87
|
+
|
|
88
|
+
SENTINEL will review your plan.
|
|
89
|
+
|
|
90
|
+
If SENTINEL objects:
|
|
91
|
+
1. Read the objection carefully in `CONTRACT.md`
|
|
92
|
+
2. Update `PLAN.md` addressing each specific objection
|
|
93
|
+
3. Do not argue - either accept the feedback or ask a clarifying question
|
|
94
|
+
|
|
95
|
+
Maximum 3 rounds of negotiation.
|
|
96
|
+
After 3 rounds without agreement, the ticket is BLOCKED.
|
|
97
|
+
|
|
98
|
+
## After CONTRACT is AGREED
|
|
99
|
+
|
|
100
|
+
1. Read `CONTRACT.md` - these are your binding terms
|
|
101
|
+
2. Begin implementation with Segment 1
|
|
102
|
+
3. Do not deviate from the plan without updating `PLAN.md` and getting SENTINEL approval
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: skill-creator
|
|
3
|
+
description: Meta-skill for creating, evaluating, and improving AgentFlow skills.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# FORGE Skill Creator Skill
|
|
7
|
+
|
|
8
|
+
Use this skill when you need to formalize a new set of instructions or common workflows into an AgentFlow `SKILL.md`.
|
|
9
|
+
|
|
10
|
+
## Workflow
|
|
11
|
+
|
|
12
|
+
1. **Capture Intent**: What problem does this skill solve?
|
|
13
|
+
2. **Research**: Identify best practices and common pitfalls for the targeted task.
|
|
14
|
+
3. **Draft SKILL.md**:
|
|
15
|
+
- Use the frontmatter format: `name`, `description`.
|
|
16
|
+
- Include a clear `# Title`.
|
|
17
|
+
- Define a `# Workflow` or `# Guidelines`.
|
|
18
|
+
4. **Iterative Improvement**: Use feedback from tests or user reviews to refine the skill instructions.
|
|
19
|
+
|
|
20
|
+
## Skill Writing Tips
|
|
21
|
+
|
|
22
|
+
- **Be Actionable**: Use imperative verbs.
|
|
23
|
+
- **Be Structured**: Use headers and lists for scannability.
|
|
24
|
+
- **Be Contextual**: Mention specific AgentFlow components if relevant.
|
|
25
|
+
- **Be Minimal**: Only include instructions that provide high value.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: web-artifacts-builder
|
|
3
|
+
description: Guide for creating elaborate, multi-component React artifacts using Tailwind CSS and shadcn/ui.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# FORGE Web Artifacts Builder Skill
|
|
7
|
+
|
|
8
|
+
Use this skill when building complex, stateful web artifacts that require more than a single-file approach.
|
|
9
|
+
|
|
10
|
+
## Stack Requirements
|
|
11
|
+
|
|
12
|
+
- **Framework**: React 18 / TypeScript.
|
|
13
|
+
- **Styling**: Tailwind CSS + shadcn/ui.
|
|
14
|
+
- **Components**: Utilize Radix UI primitives as provided by shadcn/ui.
|
|
15
|
+
|
|
16
|
+
## Workflow
|
|
17
|
+
|
|
18
|
+
1. **Plan Architecture**: Define state management and component hierarchy.
|
|
19
|
+
2. **Implementation**: Build interactive components with clear prop interfaces.
|
|
20
|
+
3. **Bundling**: Ensure all assets are optimized for presentation.
|
|
21
|
+
4. **Testing**: Verify interactive flows (buttons, forms, state transitions).
|
|
22
|
+
|
|
23
|
+
## Design Excellence
|
|
24
|
+
|
|
25
|
+
Avoid "AI slop" by:
|
|
26
|
+
|
|
27
|
+
- Using custom typography and color themes.
|
|
28
|
+
- Implementing sophisticated layout patterns (not just centered stacks).
|
|
29
|
+
- Adding subtle micro-animations and transitions.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: brand-guidelines
|
|
3
|
+
description: Maintains project-specific visual and tonal identity for AgentFlow documentation.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# AgentFlow Brand & Style Guidelines
|
|
7
|
+
|
|
8
|
+
Use this skill to ensure all documentation and UI copy adheres to the AgentFlow project identity.
|
|
9
|
+
|
|
10
|
+
## Visual Identity
|
|
11
|
+
|
|
12
|
+
### Colors
|
|
13
|
+
|
|
14
|
+
- **Primary**: Agentic Blue (#0047AB) - Represents focus and intelligence.
|
|
15
|
+
- **Secondary**: Flow Silver (#C0C0C0) - Represents agility and connection.
|
|
16
|
+
- **Accent**: Gravity Dark (#1A1A1A) - Represents stability and core logic.
|
|
17
|
+
|
|
18
|
+
### Typography
|
|
19
|
+
|
|
20
|
+
- **Headings**: Use strong, geometric sans-serif fonts (e.g., Montserat, Inter).
|
|
21
|
+
- **Body**: Use clean, highly readable serif or sans-serif fonts (e.g., Lora, Open Sans).
|
|
22
|
+
|
|
23
|
+
## Tonal Guidelines
|
|
24
|
+
|
|
25
|
+
- **Professional & Precise**: Avoid jargon where possible, but maintain technical accuracy.
|
|
26
|
+
- **Encouraging & Agentic**: Empower the user to interact with the system.
|
|
27
|
+
- **Concise**: Value the user's time.
|
|
28
|
+
|
|
29
|
+
## Formatting Standards
|
|
30
|
+
|
|
31
|
+
- Use GitHub-style alerts (Note, Tip, Important, Warning, Caution) for emphasis.
|
|
32
|
+
- Use consistent header hierarchies.
|
|
33
|
+
- Ensure all code snippets are syntax-highlighted.
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: changelog
|
|
3
|
+
description: Skill for maintaining CHANGELOG.md
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Changelog Skill
|
|
7
|
+
|
|
8
|
+
## CHANGELOG Format
|
|
9
|
+
|
|
10
|
+
Follow [Keep a Changelog](https://keepachangelog.com/):
|
|
11
|
+
|
|
12
|
+
```markdown
|
|
13
|
+
# Changelog
|
|
14
|
+
|
|
15
|
+
## [Unreleased]
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- New feature X
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Modified behavior Y
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- Bug fix Z
|
|
25
|
+
|
|
26
|
+
## [1.2.0] - 2024-01-15
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
- Feature A
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Categories
|
|
33
|
+
|
|
34
|
+
| Category | Use For |
|
|
35
|
+
|----------|---------|
|
|
36
|
+
| `Added` | New features |
|
|
37
|
+
| `Changed` | Modified behavior |
|
|
38
|
+
| `Deprecated` | Soon-to-be removed |
|
|
39
|
+
| `Removed` | Removed features |
|
|
40
|
+
| `Fixed` | Bug fixes |
|
|
41
|
+
| `Security` | Security fixes |
|
|
42
|
+
|
|
43
|
+
## Entry Style
|
|
44
|
+
|
|
45
|
+
### Good Entry
|
|
46
|
+
```
|
|
47
|
+
- Add OAuth2 authentication support (#42)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Bad Entry
|
|
51
|
+
```
|
|
52
|
+
- Fixed stuff
|
|
53
|
+
- Updated code
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Process
|
|
57
|
+
|
|
58
|
+
1. Read PR description from SENTINEL's final-review.md
|
|
59
|
+
2. Categorize changes
|
|
60
|
+
3. Write concise, user-focused entry
|
|
61
|
+
4. Place under `[Unreleased]` section
|
|
62
|
+
5. Commit with message: `docs: update CHANGELOG for T-{id}`
|
|
63
|
+
|
|
64
|
+
## Release
|
|
65
|
+
|
|
66
|
+
When version is released:
|
|
67
|
+
1. Rename `[Unreleased]` to `[version] - date`
|
|
68
|
+
2. Add new `[Unreleased]` section
|
|
69
|
+
3. Tag release in git
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: doc-coauthoring
|
|
3
|
+
description: Advanced workflow for iterative documentation refinement and reader testing.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Doc Co-Authoring Skill
|
|
7
|
+
|
|
8
|
+
Use this skill when tasked with creating or refining complex documentation. This workflow ensures that the final output is contextually accurate and reader-friendly.
|
|
9
|
+
|
|
10
|
+
## Workflow Stages
|
|
11
|
+
|
|
12
|
+
### Stage 1: Context Gathering
|
|
13
|
+
|
|
14
|
+
- **Identify Goals**: What is the purpose of the document? Who is the audience?
|
|
15
|
+
- **Gather Info**: Interview the user or research the codebase to capture all necessary details.
|
|
16
|
+
|
|
17
|
+
### Stage 2: Refinement & Structure
|
|
18
|
+
|
|
19
|
+
- **Iterative Drafting**: Start with a structure and refine it based on feedback.
|
|
20
|
+
- **Gap Check**: Identify missing information and resolve contradictions.
|
|
21
|
+
- **Drafting**: Write clear, professional content.
|
|
22
|
+
|
|
23
|
+
### Stage 3: Reader Testing
|
|
24
|
+
|
|
25
|
+
- **Predict Reader Questions**: What will the reader be confused about?
|
|
26
|
+
- **Sub-Agent Testing**: If possible, ask a sub-agent to "read" the doc and provide feedback.
|
|
27
|
+
- **Iterate**: Fix issues identified during testing.
|
|
28
|
+
|
|
29
|
+
## Quality Standards
|
|
30
|
+
|
|
31
|
+
- Clarity, conciseness, and accuracy are paramount.
|
|
32
|
+
- Maintain a consistent tone throughout the document.
|
|
33
|
+
- Use visual hierarchy (headers, lists, alerts) to improve readability.
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: documentation
|
|
3
|
+
description: Skill for maintaining project documentation
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Documentation Skill
|
|
7
|
+
|
|
8
|
+
## Documentation Types
|
|
9
|
+
|
|
10
|
+
### User Documentation
|
|
11
|
+
- `README.md`: Project overview, setup, usage
|
|
12
|
+
- `docs/usage/`: How-to guides
|
|
13
|
+
- `docs/api/`: API reference
|
|
14
|
+
|
|
15
|
+
### Developer Documentation
|
|
16
|
+
- `CONTRIBUTING.md`: Contribution guidelines
|
|
17
|
+
- `docs/architecture/`: System design
|
|
18
|
+
- `.agent/standards/`: Coding standards
|
|
19
|
+
|
|
20
|
+
### Changelog
|
|
21
|
+
- `CHANGELOG.md`: User-facing changes
|
|
22
|
+
|
|
23
|
+
## When to Update
|
|
24
|
+
|
|
25
|
+
Update documentation when:
|
|
26
|
+
- New feature added
|
|
27
|
+
- Breaking change introduced
|
|
28
|
+
- API modified
|
|
29
|
+
- Configuration changed
|
|
30
|
+
- Dependencies updated
|
|
31
|
+
|
|
32
|
+
## Documentation Style
|
|
33
|
+
|
|
34
|
+
### README Updates
|
|
35
|
+
- Keep concise
|
|
36
|
+
- Update examples
|
|
37
|
+
- Reflect current API
|
|
38
|
+
|
|
39
|
+
### API Documentation
|
|
40
|
+
- Document all public interfaces
|
|
41
|
+
- Include examples
|
|
42
|
+
- Document error conditions
|
|
43
|
+
|
|
44
|
+
### Architecture Docs
|
|
45
|
+
- Update diagrams if structure changed
|
|
46
|
+
- Document new patterns
|
|
47
|
+
- Update decision records
|
|
48
|
+
|
|
49
|
+
## Commit Format
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
docs: update README for new auth feature
|
|
53
|
+
|
|
54
|
+
- Add OAuth2 setup instructions
|
|
55
|
+
- Update configuration example
|
|
56
|
+
- Add troubleshooting section
|
|
57
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docx
|
|
3
|
+
description: Advanced document generation, analysis, and refinement for team reports and external docs.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Advanced Document Skill
|
|
7
|
+
|
|
8
|
+
Use this skill when processing Word documents (.docx) or generating formal reports in document formats.
|
|
9
|
+
|
|
10
|
+
## Capabilities
|
|
11
|
+
|
|
12
|
+
- **Structure Analysis**: Verify document hierarchy and style consistency.
|
|
13
|
+
- **New Doc Generation**: Create professional reports from markdown context.
|
|
14
|
+
- **XML Refinement**: Perform low-level XML edits for tracking changes or complex formatting (Table of Contents, Headers).
|
|
15
|
+
|
|
16
|
+
## Critical Rules
|
|
17
|
+
|
|
18
|
+
- **No Unicode Bullets**: Always use standard list formatting.
|
|
19
|
+
- **Style Overrides**: Ensure headers match the Brand Style Guidelines.
|
|
20
|
+
- **Table Formatting**: Use consistent borders and cell padding for readability.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pdf
|
|
3
|
+
description: Advanced PDF processing, including creation, analysis, text extraction, and watermarking.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Advanced PDF Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to process incoming PDF reference material or to generate formal, secure PDF outputs.
|
|
9
|
+
|
|
10
|
+
## Processing Tasks
|
|
11
|
+
|
|
12
|
+
- **Extraction**: Extract text and tables from complex PDF layouts using `pdfplumber`.
|
|
13
|
+
- **Generation**: Create formal reports with consistent branding using `reportlab`.
|
|
14
|
+
- **Security**: Apply watermarking or password protection to sensitive documents.
|
|
15
|
+
|
|
16
|
+
## Quality Standards
|
|
17
|
+
|
|
18
|
+
- Ensure all generated PDFs are searchable (OCR/embedded text).
|
|
19
|
+
- Maintain high-resolution assets for images and charts within the PDF.
|
|
20
|
+
- Follow the visual identity from `Brand & Style Guidelines`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: pptx
|
|
3
|
+
description: Professional presentation design and generation using a theme-first approach.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Presentation Design Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to create high-impact, professional slide decks (.pptx) from project data or documentation.
|
|
9
|
+
|
|
10
|
+
## Design Workflow
|
|
11
|
+
|
|
12
|
+
1. **Choose a Theme**: Select an established goal (see `theme-factory`) or define a new one.
|
|
13
|
+
2. **Slide Architecture**:
|
|
14
|
+
- One primary idea per slide.
|
|
15
|
+
- Use high-quality typography and consistent color palettes.
|
|
16
|
+
- Maintain a 16:9 aspect ratio.
|
|
17
|
+
3. **Execution**: Use `python-pptx` or equivalent libraries to generate the deck.
|
|
18
|
+
|
|
19
|
+
## Quality Assurance
|
|
20
|
+
|
|
21
|
+
- **Visual QA**: Check for text overflows, color contrast, and font consistency.
|
|
22
|
+
- **Content QA**: Ensure the message flows logically across the deck.
|
|
23
|
+
- **Brand Alignment**: Follow the `Brand & Style Guidelines` strictly.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: theme-factory
|
|
3
|
+
description: Professional visual styling and theming for AgentFlow documentation and reports.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Theme & Styling Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to apply consistent, professional themes to all documentation, changelogs, and generated reports.
|
|
9
|
+
|
|
10
|
+
## Themes & Atmosphere
|
|
11
|
+
|
|
12
|
+
- **The "Agentic" Theme**: Blue/Silver/Dark Grey. High-tech, professional.
|
|
13
|
+
- **The "Focus" Theme**: Monochrome/High-Contrast. Minimalist, objective.
|
|
14
|
+
- **The "Warning" Theme**: Amber/Black. Used for critical alerts or post-mortem reports.
|
|
15
|
+
|
|
16
|
+
## Styling Rules
|
|
17
|
+
|
|
18
|
+
- Apply font pairings consistently (Display for headers, Serif/Sans for body).
|
|
19
|
+
- Use color accents for data visualization and call-to-action blocks.
|
|
20
|
+
- Ensure all styling enhances readability and doesn't distract from the content.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: xlsx
|
|
3
|
+
description: Advanced Excel document creation, editing, and technical data analysis.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# LORE Advanced Excel Skill
|
|
7
|
+
|
|
8
|
+
Use this skill for generating complex reports that involve budgeting, technical metrics, or financial modeling.
|
|
9
|
+
|
|
10
|
+
## Core Requirements
|
|
11
|
+
|
|
12
|
+
- **Use Formulas**: NEVER hardcode values that can be calculated.
|
|
13
|
+
- **Data Integrity**: Use `pandas` for large dataset analysis before writing to Excel.
|
|
14
|
+
- **Formatting**: Apply professional formatting (headers, borders, number formats) for all outputs.
|
|
15
|
+
|
|
16
|
+
## Analysis Patterns
|
|
17
|
+
|
|
18
|
+
- **Summary Sheets**: Create high-level dashboards at the beginning of the workbook.
|
|
19
|
+
- **Validation**: Include formula testing strategies to ensure zero erroneous calculations.
|
|
20
|
+
- **Documentation**: Comment complex formulas or data sources within the sheet.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: doc-coauthoring
|
|
3
|
+
description: Collaborative workflow for drafting and refining project-level documents and plans.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# NEXUS Collaborative Planning Skill
|
|
7
|
+
|
|
8
|
+
Use this skill when collaborating with the user to build high-level project plans or architectural documents.
|
|
9
|
+
|
|
10
|
+
## Collaborative Workflow
|
|
11
|
+
|
|
12
|
+
1. **Gather Intent**: Ask clarifying questions to understand the project's "North Star".
|
|
13
|
+
2. **Draft & Discuss**: Present a skeleton plan and wait for user feedback.
|
|
14
|
+
3. **Iterative Refinement**: Refine the plan based on constraints and goals uncovered during the session.
|
|
15
|
+
4. **Reader Projection**: Anticipate stakeholder questions and address them in the plan.
|
|
16
|
+
|
|
17
|
+
## Focus Areas
|
|
18
|
+
|
|
19
|
+
- Clarity of objectives.
|
|
20
|
+
- Resource and time estimation.
|
|
21
|
+
- Risk identification and mitigation strategies.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: internal-comms
|
|
3
|
+
description: Guidelines and templates for professional internal communications (status reports, project updates, etc.).
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# NEXUS Internal Comms Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to communicate project status, plans, and problems to stakeholders in a professional and structured manner.
|
|
9
|
+
|
|
10
|
+
## Communication Types
|
|
11
|
+
|
|
12
|
+
- **3P Updates**: Progress (what was done), Plans (what is next), Problems (blockers).
|
|
13
|
+
- **Status Reports**: High-level summaries of project health.
|
|
14
|
+
- **Leadership Updates**: Concise, executive-level summaries focusing on impact.
|
|
15
|
+
- **Project Updates**: Detailed progress reports on specific initiatives.
|
|
16
|
+
|
|
17
|
+
## Best Practices
|
|
18
|
+
|
|
19
|
+
- **Tone**: Keep it objective, professional, and outcome-oriented.
|
|
20
|
+
- **Clarity**: Use bullet points and clear headings to make updates scannable.
|
|
21
|
+
- **Honesty**: Be transparent about problems and risks.
|
|
22
|
+
- **Actionable**: Always include clear "Next Steps" or "Asks" for the reader.
|
|
23
|
+
|
|
24
|
+
## 3P Template Format
|
|
25
|
+
|
|
26
|
+
- **Progress**: Key accomplishments since the last update.
|
|
27
|
+
- **Plans**: Primary objectives for the next period.
|
|
28
|
+
- **Problems**: Current blockers or risks requiring attention.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: orchestration
|
|
3
|
+
description: Core orchestration skill for assigning work and managing workers
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# NEXUS Orchestration Skill
|
|
7
|
+
|
|
8
|
+
## Worker Assignment Protocol
|
|
9
|
+
|
|
10
|
+
### Step 1: Check Worker Availability
|
|
11
|
+
Read `KEY_WORKER_SLOTS` from shared store. Look for workers with status `Idle`.
|
|
12
|
+
|
|
13
|
+
### Step 2: Prioritize Tickets
|
|
14
|
+
- **BLOCKING (CI-FIRST):** CI setup tickets (IDs starting with `T-CI-`) must be assigned before any other work if `ci_readiness` is `missing` or `ci_must_go_first` is `true`. Without CI, VESSEL stalls on every PR.
|
|
15
|
+
- High priority: Security fixes, blocking issues
|
|
16
|
+
- Medium priority: Features, enhancements
|
|
17
|
+
- Low priority: Refactors, documentation
|
|
18
|
+
|
|
19
|
+
### Step 3: Match Worker to Ticket
|
|
20
|
+
Consider:
|
|
21
|
+
- Worker capacity (some workers may have specializations)
|
|
22
|
+
- Ticket complexity vs worker history
|
|
23
|
+
- Load balancing across workers
|
|
24
|
+
|
|
25
|
+
### Step 4: Assign Work
|
|
26
|
+
Update worker slot:
|
|
27
|
+
```json
|
|
28
|
+
{
|
|
29
|
+
"id": "forge-1",
|
|
30
|
+
"status": {
|
|
31
|
+
"Assigned": {
|
|
32
|
+
"ticket_id": "T-42",
|
|
33
|
+
"issue_url": "https://github.com/org/repo/issues/42"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Step 5: Emit Event
|
|
40
|
+
Log assignment to event stream for observability.
|
|
41
|
+
|
|
42
|
+
## Command Gate Protocol
|
|
43
|
+
|
|
44
|
+
### Evaluating Dangerous Commands
|
|
45
|
+
|
|
46
|
+
Workers may request approval for commands like:
|
|
47
|
+
- `rm -rf` (file deletion)
|
|
48
|
+
- `git push --force` (force push)
|
|
49
|
+
- `npm publish` (package publishing)
|
|
50
|
+
- Database migrations
|
|
51
|
+
|
|
52
|
+
### Decision Framework
|
|
53
|
+
|
|
54
|
+
1. **Necessity**: Is this command required for the ticket?
|
|
55
|
+
2. **Risk**: What could go wrong?
|
|
56
|
+
3. **Reversibility**: Can we undo the effects?
|
|
57
|
+
4. **Alternatives**: Is there a safer approach?
|
|
58
|
+
|
|
59
|
+
### Approval Response
|
|
60
|
+
Set worker status from `Suspended` back to `Assigned`.
|
|
61
|
+
|
|
62
|
+
### Rejection Response
|
|
63
|
+
Set worker status to `Idle` with rejection reason.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: skill-creator
|
|
3
|
+
description: Supervisory skill for identifying, directing, and evaluating the creation of new agent capabilities.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# NEXUS Skill Supervision Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to oversee the "meta-evolution" of the agent system by directing FORGE to create new skills.
|
|
9
|
+
|
|
10
|
+
## Supervision Checklist
|
|
11
|
+
|
|
12
|
+
- **Gap Identification**: Notice when agents struggle with a repeating pattern and need a skill.
|
|
13
|
+
- **Direction**: Task FORGE with creating a specific `SKILL.md` based on successful session logs.
|
|
14
|
+
- **Quality Gate**: Review new skills created by FORGE to ensure they are actionable and follow the AgentFlow standard.
|
|
15
|
+
- **Integration**: Ensure new skills are correctly registered in the system manifest.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: slack-gif-creator
|
|
3
|
+
description: Custom GIF animation for project status alerts and team communication.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# NEXUS Communication Animations Skill
|
|
7
|
+
|
|
8
|
+
Use this skill to create engaging, animated status alerts or celebration artifacts for the team.
|
|
9
|
+
|
|
10
|
+
## Animation Concepts
|
|
11
|
+
|
|
12
|
+
- **Pulse/Heartbeat**: For "System Alive" monitors.
|
|
13
|
+
- **Explode/Particle Burst**: For "Project Milestone Achieved".
|
|
14
|
+
- **Shake/Vibrate**: For "Critical Alert" or "Blocker Identified".
|
|
15
|
+
- **Slide/Fade**: For transitioning between status updates.
|
|
16
|
+
|
|
17
|
+
## Technical Execution
|
|
18
|
+
|
|
19
|
+
- Use procedural graphics with easing functions for smooth motion.
|
|
20
|
+
- Ensure GIFs are optimized for size without sacrificing visual clarity.
|
|
21
|
+
- Maintain a tone that balances professionalism with team engagement.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ticket-triage
|
|
3
|
+
description: Skill for analyzing and prioritizing incoming tickets
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ticket Triage Skill
|
|
7
|
+
|
|
8
|
+
## Analyzing Tickets
|
|
9
|
+
|
|
10
|
+
### Extract Key Information
|
|
11
|
+
From each ticket, identify:
|
|
12
|
+
- **Type**: Bug, feature, refactor, documentation
|
|
13
|
+
- **Priority**: Critical, high, medium, low
|
|
14
|
+
- **Scope**: Files/components affected
|
|
15
|
+
- **Dependencies**: Blocked by other tickets?
|
|
16
|
+
- **Acceptance Criteria**: Definition of done
|
|
17
|
+
|
|
18
|
+
### Estimation Heuristics
|
|
19
|
+
|
|
20
|
+
| Scope | Estimated Segments |
|
|
21
|
+
|-------|-------------------|
|
|
22
|
+
| Single file, small change | 1-2 |
|
|
23
|
+
| Multiple files, moderate | 3-5 |
|
|
24
|
+
| Cross-cutting, large | 6-10 |
|
|
25
|
+
|
|
26
|
+
### Blocking Detection
|
|
27
|
+
|
|
28
|
+
A ticket is blocked if:
|
|
29
|
+
- Depends on unmerged PR
|
|
30
|
+
- Requires external API/service
|
|
31
|
+
- Needs clarification from stakeholder
|
|
32
|
+
|
|
33
|
+
## Prioritization Matrix
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
| High Impact | Low Impact
|
|
37
|
+
---------|-------------|------------
|
|
38
|
+
Urgent | Do Now | Schedule
|
|
39
|
+
Not Urgent| Plan | Backlog
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## CI-First Override
|
|
43
|
+
|
|
44
|
+
**CI setup tickets ALWAYS take absolute priority over all other tickets.**
|
|
45
|
+
|
|
46
|
+
Before applying the normal matrix, check if the repository has CI workflows:
|
|
47
|
+
- If `ci_readiness` is `missing`: Only CI setup tickets should be assigned
|
|
48
|
+
- CI setup tickets are identified by: ID starting with `T-CI-`, or title containing "CI" + ("setup" or "pipeline" or "workflow")
|
|
49
|
+
- Without CI, VESSEL cannot validate PRs and will stall, wasting all worker cycles
|
|
50
|
+
- This override applies regardless of issue number, apparent urgency, or any other priority signal
|
|
51
|
+
|
|
52
|
+
## Assignment Considerations
|
|
53
|
+
|
|
54
|
+
- Complexity matching worker experience
|
|
55
|
+
- File ownership (avoid conflicts)
|
|
56
|
+
- Load balancing across available workers
|