Practical examples for every agent domain. Each section shows conversational prompts and the tools that get called under the hood.
Note: Replace
my-projectwith your actual project slug. All examples use@Agentsyntax for VS Code Copilot. In Claude Desktop or other MCP clients, the tools are called directly.
@Taiga User Stories Create a user story in project my-project:
"As a customer, I want to receive email notifications when my order ships"
Tools called:
taiga_resolver_project→ resolvesmy-projectto IDtaiga_userstories_create→ creates the story
@Taiga User Stories Create these user stories in project my-project:
1. "As a user, I want to reset my password via email"
2. "As a user, I want to enable 2FA"
3. "As a user, I want to log in with Google SSO"
4. "As an admin, I want to manage user permissions"
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstories_bulk_create→ creates all 4 stories
@Taiga User Stories Reorder the backlog for project my-project. Put story #15 first, then #12, then #8.
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstories_get_by_ref× 3 → resolves story IDstaiga_userstories_bulk_update_backlog_order→ sets the order
@Taiga User Stories Set 8 story points (UX role) on story #23 in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstories_get_by_ref→ gets story IDtaiga_points_list→ finds the point scaletaiga_userstories_update→ sets the points
@Taiga User Stories Add a comment to story #23 in project my-project:
"Discussed with the team — we'll use OAuth2 PKCE flow"
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstory_comment_create→ adds the comment
@Taiga Tasks Create the following tasks for story #23 in project my-project:
- Design the database schema
- Implement the REST API endpoints
- Write unit tests
- Update API documentation
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstories_get_by_ref→ gets story ID (for user_story field)taiga_tasks_bulk_create→ creates all 4 tasks
@Taiga Tasks Mark task #45 as "In Progress" and assign it to user john in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_tasks_get_by_ref→ gets task ID and versiontaiga_task_statuses_list→ finds "In Progress" status IDtaiga_users_list→ finds john's user IDtaiga_tasks_update→ updates status and assigned_to
@Taiga Tasks List all open tasks in sprint "Sprint 5" of project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_resolver_milestone→ resolves sprint slug to IDtaiga_tasks_list→ filters by milestone, excludes closed statuses
@Taiga Issues Create a bug in project my-project:
Title: "Login page crashes on Safari 17"
Type: Bug
Severity: Critical
Priority: High
Description: "When clicking 'Sign In' on Safari 17, the page shows a blank white screen.
Steps: 1. Open login page in Safari 17 2. Enter credentials 3. Click Sign In"
Tools called:
taiga_resolver_project→ resolves slugtaiga_issue_types_list→ finds "Bug" type IDtaiga_severities_list→ finds "Critical" severity IDtaiga_priorities_list→ finds "High" priority IDtaiga_issues_create→ creates the issue
@Taiga Issues List all critical and high severity open issues in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_severities_list→ gets severity IDstaiga_issues_list→ filters by severity and open status
@Taiga Issues On issue #78 in project my-project:
1. Change status to "In Progress"
2. Assign to developer alice
3. Add comment "Root cause identified: missing null check in auth middleware"
Tools called:
taiga_resolver_project→ resolves slugtaiga_issues_get_by_ref→ gets issue IDtaiga_issue_statuses_list→ finds status IDtaiga_issues_update→ updates status and assigneetaiga_issue_comment_create→ adds the comment
@Taiga Epics In project my-project:
1. Create an epic "User Authentication System"
2. Link existing stories #10, #11, #12 to it
Tools called:
taiga_resolver_project→ resolves slugtaiga_epics_create→ creates the epictaiga_userstories_get_by_ref× 3 → resolves story IDstaiga_epics_related_userstories_bulk_create→ links all stories
@Taiga Epics Show all user stories linked to epic #3 in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_resolver_epic→ resolves epic IDtaiga_epics_related_userstories_list→ returns linked stories
@Taiga Sprints Create sprint "Sprint 6" in project my-project:
Start: 2026-04-14
End: 2026-04-28
Tools called:
taiga_resolver_project→ resolves slugtaiga_milestones_create→ creates the milestone
@Taiga Sprints Show the burndown stats for the current sprint in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_milestones_list→ finds the current open sprinttaiga_milestones_stats→ returns burndown data
@Taiga Sprints Close sprint "Sprint 5" in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_resolver_milestone→ gets milestone IDtaiga_milestones_update→ setsclosed: true
@Taiga Wiki Create a wiki page in project my-project:
Slug: "api-reference"
Content: |
# API Reference
## Authentication
POST /api/auth/login
## Users
GET /api/users
GET /api/users/:id
Tools called:
taiga_resolver_project→ resolves slugtaiga_wiki_create→ creates the page
@Taiga Wiki Create navigation links for project my-project wiki:
1. "Home" → home
2. "API Reference" → api-reference
3. "Contributing Guide" → contributing
Tools called:
taiga_resolver_project→ resolves slugtaiga_wiki_links_create× 3 → creates each navigation link
@Taiga Wiki Show the change history for wiki page "api-reference" in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_wiki_get_by_slug→ gets page IDtaiga_wiki_history→ returns version history
@Taiga Team Invite these people to project my-project:
- alice@company.com as Developer
- bob@company.com as UX Designer
- carol@company.com as Product Owner
Tools called:
taiga_resolver_project→ resolves slugtaiga_roles_list→ finds role IDs for each role nametaiga_memberships_bulk_create→ invites all 3 members
@Taiga Team List all members and their roles in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_memberships_list→ returns all members with roles
@Taiga Team Change bob's role to "Tech Lead" in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_memberships_list→ finds bob's membership IDtaiga_roles_list→ finds "Tech Lead" role IDtaiga_memberships_update→ updates the role
@Taiga Reporter Generate a sprint burndown report for project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_milestones_list→ finds current sprinttaiga_milestones_stats→ gets burndown data- Agent formats the data into a readable report
@Taiga Reporter Give me a project health overview for my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_projects_stats→ overall project statstaiga_projects_issues_stats→ issue distributiontaiga_projects_member_stats→ member activity- Agent combines all data into a dashboard summary
@Taiga Reporter Show me what the team has been doing this week in project my-project
Tools called:
taiga_resolver_project→ resolves slugtaiga_timeline_project→ recent project activity- Agent filters and formats the timeline
@Taiga Project Setup Create a new Scrum project called "Mobile App" with description "iOS and Android mobile app"
Tools called:
taiga_projects_create→ creates the project with Scrum template
@Taiga Project Setup Add these custom user story statuses to project my-project:
1. "Design" (after "New")
2. "Code Review" (after "In Progress")
3. "QA" (after "Code Review")
Tools called:
taiga_resolver_project→ resolves slugtaiga_userstory_statuses_list→ gets existing statusestaiga_userstory_statuses_create× 3 → creates each new statustaiga_userstory_statuses_bulk_update_order→ sets the display order
@Taiga Project Setup Create a webhook for project my-project:
URL: https://ci.example.com/hooks/taiga
Events: all
Tools called:
taiga_resolver_project→ resolves slugtaiga_webhooks_create→ creates the webhooktaiga_webhooks_test→ sends a test payload
@Taiga Project Setup Export project my-project as a backup
Tools called:
taiga_resolver_project→ resolves slugtaiga_project_export→ triggers the export