@ezmodo/mcp-server 0.13.5 → 0.14.1

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.
@@ -1,96 +0,0 @@
1
- /**
2
- * AI Workflow Automation Prompt
3
- * Guidelines for AI agents to automatically track their work in Zephly
4
- */
5
-
6
- export const AI_WORKFLOW_AUTOMATION = `# AI Workflow Automation Guide
7
-
8
- ## Overview
9
-
10
- When you (as an AI agent) are implementing features or working on
11
- complex tasks, **automatically track your work in Zephly in real-time**.
12
- Don't wait for users to ask you to update documentation or check off tasks.
13
-
14
- ## When to Use Workflow Automation
15
-
16
- - User asks you to implement a feature (not just explain or plan)
17
- - Task involves multiple implementation steps (>3 steps)
18
- - Work needs team visibility or historical tracking
19
-
20
- ## Session Setup
21
-
22
- First, discover the user's context:
23
-
24
- \`\`\`javascript
25
- // 1. Get organization
26
- const orgs = await list_organizations();
27
- const orgId = orgs.organizations[0].id;
28
-
29
- // 2. Get projects
30
- const projects = await list_projects({ organizationId: orgId });
31
- const projectId = projects.projects[0].id;
32
- \`\`\`
33
-
34
- ## Workflow Steps
35
-
36
- 1. **Create or Select Project** - Use existing project or create new one with \`create_project\`
37
- 2. **Create Epic** (optional) - Use \`create_epic\` to group related tasks under a milestone
38
- 3. **Break Down Tasks** - Create 3-7 tasks with \`create_task\`, each with implementation steps
39
- 4. **Track Progress** - Update steps with \`update_task\` (toggle, add, modify) as you work
40
- 5. **Update Status** - Move tasks through workflow: backlog → todo → in_progress → in_review → completed
41
- 6. **Document** - Use \`create_document\` to create setup guides, API docs, or troubleshooting guides
42
- 7. **Complete** - Use \`complete_task\` when done, update epic status if applicable
43
-
44
- ## Example Workflow
45
-
46
- \`\`\`javascript
47
- // 1. Get context
48
- const orgs = await list_organizations();
49
- const orgId = orgs.organizations[0].id;
50
- const projects = await list_projects({ organizationId: orgId });
51
- const projectId = projects.projects[0].id;
52
-
53
- // 2. Create epic (milestone)
54
- const epic = await create_epic({
55
- projectId,
56
- title: "User Authentication System",
57
- description: "Complete auth implementation with OAuth2"
58
- });
59
-
60
- // 3. Create tasks with steps
61
- await create_task({
62
- projectId,
63
- epicId: epic.id,
64
- title: "Implement OAuth2 backend",
65
- description: "Set up OAuth2 authentication flow",
66
- steps: ["Set up OAuth2 config", "JWT generation", "Validation middleware", "Tests"],
67
- assigneeType: "ai",
68
- assigneeId: "claude",
69
- assigneeName: "Claude"
70
- });
71
-
72
- // 4. Track progress as you work
73
- await update_task({ taskId: "task1", status: "in_progress" });
74
- await update_task({ taskId: "task1", toggleStep: { stepId: "step_0", completed: true } });
75
-
76
- // 5. Document what you built
77
- await create_document({
78
- projectId,
79
- title: "Authentication Setup Guide",
80
- content: "# How to configure OAuth2...",
81
- type: "setup"
82
- });
83
-
84
- // 6. Complete task
85
- await complete_task({ taskId: "task1", completionNotes: "OAuth2 implementation complete" });
86
-
87
- // 7. Update epic when all tasks done
88
- await update_epic({ epicId: epic.id, status: "completed" });
89
- \`\`\`
90
-
91
- ## Benefits
92
-
93
- - Real-time visibility for users (no "black box" AI work)
94
- - Historical record of decisions and implementation details
95
- - Documentation created alongside code
96
- - The only PM tool where AI agents manage their own project tracking`;
@@ -1,119 +0,0 @@
1
- /**
2
- * Zephly Usage Guide Prompt
3
- * Guidelines for using Zephly MCP tools effectively
4
- */
5
-
6
- export const ZEPHLY_USAGE_GUIDE = `# Zephly MCP Integration Guide
7
-
8
- You have access to Zephly's intelligent project management tools.
9
- Zephly uses a **project-first** model where projects are the primary
10
- work containers.
11
-
12
- ## Session Start - Discover Context
13
-
14
- At the start of each session, discover the user's context:
15
-
16
- \`\`\`
17
- 1. list_organizations() # Get user's workspaces (usually one)
18
- 2. list_projects({ organizationId }) # Get projects
19
- \`\`\`
20
-
21
- This gives you the organizationId and projects needed for all other operations.
22
-
23
- ## Project-First Hierarchy
24
-
25
- \`\`\`
26
- Organization
27
- └── Projects (primary work containers)
28
- └── Epics (milestones within projects)
29
- └── Tasks (individual work items)
30
- └── Goals (strategic alignment, links to epics)
31
- \`\`\`
32
-
33
- **Key points:**
34
- - Tasks belong to **projects** (projectId is required)
35
- - Epics are project-scoped milestones
36
- - Goals provide strategic alignment and can link to epics
37
-
38
- ## When to Use Zephly Tools
39
-
40
- **Proactively use these tools when:**
41
- - User mentions tasks, projects, epics, sprints, or team coordination
42
- - User asks about project status, health, or blockers
43
- - User needs help prioritizing work or deciding what to work on next
44
- - User is planning team assignments or workload distribution
45
- - User is breaking down features into tasks
46
- - User asks about timelines or estimates
47
- - User mentions dependencies, blockers, or handoffs
48
-
49
- ## Core Tools
50
-
51
- ### Discovery
52
- - \`list_organizations\` - List all workspaces
53
- - \`list_projects\` - List projects for an organization
54
- - \`search_projects\` - Search/filter projects
55
-
56
- ### Project Management
57
- - \`create_project\` - Create new project
58
- - \`get_project_context\` - Get project details with progress
59
-
60
- ### Task Operations
61
- - \`create_task\` - Create task in a project (requires projectId)
62
- - \`update_task\` - Update task properties and steps
63
- - \`complete_task\` - Mark task completed
64
- - \`search_tasks\` - Semantic search or filter tasks
65
- - \`get_task\` - Get task by ID or number
66
-
67
- ### Epic Management
68
- - \`create_epic\` - Create epic in project
69
- - \`update_epic\` - Update epic
70
- - \`list_epics\` - List epics for project
71
- - \`get_epic\` - Get epic details
72
-
73
- ### Goal Management
74
- - \`create_goal\` - Create strategic goal
75
- - \`update_goal\` - Update goal
76
- - \`list_goals\` - List goals for organization
77
- - \`link_epic_to_goal\` - Link epic to goal for alignment
78
-
79
- ### AI Intelligence
80
- - \`get_project_insights\` - Project health analysis
81
- - \`suggest_next_actions\` - Task recommendations
82
- - \`analyze_dependency_graph\` - Critical path analysis
83
- - \`estimate_task_duration\` - AI time estimates
84
-
85
- ### Team Coordination
86
- - \`analyze_team_capacity\` - Resource allocation
87
- - \`suggest_task_assignments\` - Smart task matching
88
- - \`bulk_task_operations\` - Batch operations
89
- - \`identify_handoff_needs\` - Detect blocked tasks
90
- - \`pull_ai_task_from_queue\` - AI agent task queue
91
-
92
- ## Example Workflow
93
-
94
- \`\`\`javascript
95
- // 1. Discover context
96
- const orgs = await list_organizations();
97
- const orgId = orgs.organizations[0].id;
98
-
99
- const projects = await list_projects({ organizationId: orgId });
100
- const projectId = projects.projects[0].id;
101
-
102
- // 2. Create a task
103
- await create_task({
104
- projectId,
105
- title: 'Implement user authentication',
106
- description: 'Add login/logout functionality',
107
- priority: 'high'
108
- });
109
-
110
- // 3. Search existing tasks
111
- await search_tasks({ projectId, status: 'in_progress' });
112
- \`\`\`
113
-
114
- ## Best Practices
115
-
116
- 1. **Discover context first** - Call list_organizations + list_projects at session start
117
- 2. **Project-first** - Always have a projectId before creating tasks
118
- 3. **Check health proactively** - Use get_project_insights to identify issues
119
- 4. **Track AI work** - Create tasks for significant work you're doing`;