Create Jira Issue
Creates a new issue in Jira with specified details
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_JIRA_ISSUE])
Update Jira Issue
Updates an existing Jira issue with new information
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_JIRA_ISSUE])
Assign Jira Issue
Assigns a Jira issue to a specific user
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_JIRA_ISSUE])
Create Confluence Page
Creates a new page in Confluence with specified content
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CONFLUENCE_PAGE])
Update Confluence Page
Updates an existing Confluence page with new content
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CONFLUENCE_PAGE])
Add Attachment To Confluence
Adds an attachment to a Confluence page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_CONFLUENCE_ATTACHMENT])
Create Bitbucket Repository
Creates a new repository in Bitbucket
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BITBUCKET_REPO])
Create Bitbucket Pull Request
Creates a new pull request in a Bitbucket repository
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BITBUCKET_PR])
Merge Bitbucket Pull Request
Merges an approved pull request in Bitbucket
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_BITBUCKET_PR])
Create Trello Card
Creates a new card in a specified Trello board and list
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TRELLO_CARD])
Move Trello Card
Moves a Trello card from one list to another
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MOVE_TRELLO_CARD])
Add Member To Trello Card
Adds a member to a specific Trello card
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TRELLO_CARD_MEMBER])
Create Statuspage Incident
Creates a new incident on Statuspage
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_STATUSPAGE_INCIDENT])
Update Statuspage Incident
Updates the status or details of an existing Statuspage incident
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_STATUSPAGE_INCIDENT])
New Jira Issue Created
Triggered when a new issue is created in Jira
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_JIRA_ISSUE])
Jira Issue Updated
Triggered when an existing Jira issue is updated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JIRA_ISSUE_UPDATED])
Confluence Page Created
Triggered when a new page is created in Confluence
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONFLUENCE_PAGE_CREATED])
Confluence Page Updated
Triggered when an existing Confluence page is updated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONFLUENCE_PAGE_UPDATED])
Bitbucket Repository Created
Triggered when a new repository is created in Bitbucket
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BITBUCKET_REPO_CREATED])
Bitbucket Pull Request Created
Triggered when a new pull request is created in Bitbucket
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BITBUCKET_PR_CREATED])
Bitbucket Pull Request Merged
Triggered when a pull request is merged in Bitbucket
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BITBUCKET_PR_MERGED])
Trello Card Created
Triggered when a new card is created in Trello
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_CARD_CREATED])
Trello Card Moved
Triggered when a Trello card is moved to a different list
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_CARD_MOVED])
Statuspage Incident Created
Triggered when a new incident is created on Statuspage
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STATUSPAGE_INCIDENT_CREATED])
Statuspage Incident Updated
Triggered when an existing Statuspage incident is updated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STATUSPAGE_INCIDENT_UPDATED])
Jira Sprint Started
Triggered when a new sprint is started in Jira
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JIRA_SPRINT_STARTED])
Jira Sprint Completed
Triggered when a sprint is completed in Jira
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JIRA_SPRINT_COMPLETED])
Confluence Space Created
Triggered when a new space is created in Confluence
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONFLUENCE_SPACE_CREATED])