Create New Project
Creates a new project in Albus with specified details
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_CREATE_PROJECT])
Assign Task
Assigns a task to a team member in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_ASSIGN_TASK])
Update Task Status
Updates the status of a task in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_UPDATE_TASK_STATUS])
Create Milestone
Creates a new milestone for a project in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_CREATE_MILESTONE])
Generate Report
Generates a project or team performance report in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_GENERATE_REPORT])
Schedule Meeting
Schedules a team meeting in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_SCHEDULE_MEETING])
Create Team
Creates a new team in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_CREATE_TEAM])
Add Team Member
Adds a new member to an existing team in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_ADD_TEAM_MEMBER])
Set Task Priority
Sets the priority level for a task in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_SET_TASK_PRIORITY])
Create Subtask
Creates a subtask under an existing task in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_CREATE_SUBTASK])
Upload File
Uploads a file to a project or task in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_UPLOAD_FILE])
Set Due Date
Sets or updates the due date for a task or project in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_SET_DUE_DATE])
Create Time Entry
Logs time spent on a task or project in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_CREATE_TIME_ENTRY])
Send Notification
Sends a notification to a user or team in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_SEND_NOTIFICATION])
New Task Created
Triggered when a new task is created in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_NEW_TASK_CREATED])
Task Status Changed
Triggered when the status of a task is updated in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_TASK_STATUS_CHANGED])
Project Completed
Triggered when a project is marked as completed in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_PROJECT_COMPLETED])
Milestone Reached
Triggered when a project milestone is reached in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_MILESTONE_REACHED])
Task Assigned
Triggered when a task is assigned to a team member in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_TASK_ASSIGNED])
Due Date Approaching
Triggered when a task or project due date is approaching in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_DUE_DATE_APPROACHING])
New Team Member Added
Triggered when a new member is added to a team in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_NEW_TEAM_MEMBER_ADDED])
File Uploaded
Triggered when a new file is uploaded to a project or task in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_FILE_UPLOADED])
Task Priority Changed
Triggered when the priority of a task is changed in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_TASK_PRIORITY_CHANGED])
Project Budget Updated
Triggered when the budget for a project is updated in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_PROJECT_BUDGET_UPDATED])
Time Entry Logged
Triggered when a new time entry is logged for a task or project in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_TIME_ENTRY_LOGGED])
Task Overdue
Triggered when a task becomes overdue in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_TASK_OVERDUE])
New Project Created
Triggered when a new project is created in Albus
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALBUS_NEW_PROJECT_CREATED])