### Create and Manage Modules Source: https://docs.plane.so/ai/pi-chat Examples for creating new modules and archiving them. ```text Create a module called "User Authentication Overhaul" Archive the Payment Gateway module ``` -------------------------------- ### Example of Specific Command for Bug Creation Source: https://docs.plane.so/ai/pi-chat Provides an example of a detailed command for creating a bug, including priority, description, assignee, and sprint. This demonstrates the benefit of providing more context. ```plaintext create a high-priority bug for the payment gateway timeout, assign to backend team, and add to Sprint 24 ``` -------------------------------- ### Create and Manage Teamspaces Source: https://docs.plane.so/ai/pi-chat Examples for creating teamspaces and adding members. ```text Create a teamspace called "Frontend Team" Add Sarah and Mike to the Design teamspace ``` -------------------------------- ### Create and Manage Projects Source: https://docs.plane.so/ai/pi-chat Examples for creating new projects with identifiers and enabling project features. ```text Create a new project called "Mobile App Redesign" with identifier MOB Enable Cycles and Modules for the Backend project ``` -------------------------------- ### Create Custom Properties Source: https://docs.plane.so/ai/pi-chat Examples for creating custom properties with options and updating them. ```text Create a custom property "Severity" with options Critical, High, Medium, Low Update the "Customer Impact" property to add a new option "Revenue Blocking" ``` -------------------------------- ### Create and Manage Initiatives Source: https://docs.plane.so/ai/pi-chat Examples for creating initiatives, linking projects, and adding labels. ```text Create an initiative "Improve Platform Performance" Link the Backend Optimization project to the Performance initiative Add the "Q4 Priority" label to the User Experience initiative ``` -------------------------------- ### Manage Labels Source: https://docs.plane.so/ai/pi-chat Example for adding a new label with a specified color. ```text Add a label "technical-debt" with red color ``` -------------------------------- ### Create Project and Workspace Pages Source: https://docs.plane.so/ai/pi-chat Examples for creating new pages within projects and workspaces. ```text Create a project page titled "API Integration Guidelines" Create a workspace page for our Q4 OKRs ``` -------------------------------- ### Manage Sticky Notes Source: https://docs.plane.so/ai/pi-chat Examples for creating and updating sticky notes for brainstorming. ```text Create sticky notes for today's retrospective ideas Update the sticky note about API redesign to include performance concerns ``` -------------------------------- ### Update Project Details Source: https://docs.plane.so/ai/pi-chat Example for updating a project's description. ```text Update the API project description to include our new architecture goals ``` -------------------------------- ### Create Workflow States Source: https://docs.plane.so/ai/pi-chat Example for creating a new custom workflow state. ```text Create a new workflow state "Pending Review" in the In Progress group ``` -------------------------------- ### Create and Update Intake Items Source: https://docs.plane.so/ai/pi-chat Examples for creating new intake items and updating their priority. ```text Create an intake item for the customer feature request about dark mode Update intake item INT-45 to high priority ``` -------------------------------- ### Log Work on Items Source: https://docs.plane.so/ai/pi-chat Example for logging time spent on a specific work item. ```text Log 2 hours of work on CORE-789 ``` -------------------------------- ### Set Work Item Start Date via URL Source: https://docs.plane.so/core-concepts/issues/work-item-url Specify the start date for the work item using 'YYYY-MM-DD' or ISO 8601 format. ```bash https://app.plane.so/work-items/new?start_date=2024-03-15 ``` -------------------------------- ### Example: Fully Populated Work Item Source: https://docs.plane.so/core-concepts/issues/work-item-url Demonstrates creating a work item with all common fields pre-filled via URL parameters. ```bash https://app.plane.so/work-items/new?title=Implement+dark+mode&description=Add+dark+mode+support+to+the+dashboard&project=FRONTEND&priority=medium&assignee=me,john&start_date=2024-03-15&due_date=2024-03-30 ``` -------------------------------- ### CSV File Format Example Source: https://docs.plane.so/importers/csv This is an example of the expected CSV format for importing work items into Plane. It includes columns for name, description, priority, dates, and state. ```csv name,description_html,priority,start_date,target_date,state_group Quarterly report,
Compile Q2 results for stakeholder review.
,high,2025-04-01,2025-04-10,started Update vendor contracts,,medium,2025-04-05,2025-04-20,unstarted Office supply restock,,low,,,backlog ``` -------------------------------- ### Example CSV for Importing Members Source: https://docs.plane.so/core-concepts/workspaces/members This is an example of the required CSV format for bulk importing members into a workspace. Ensure the columns are in the exact order: Email, Display Name, First Name, Last Name, Role. ```csv Email,Display Name,First Name,Last Name,Role alex@company.com,Alex Chen,Alex,Chen,member sarah@company.com,Sarah Kim,Sarah,Kim,admin mike@company.com,Mike Rodriguez,Mike,Rodriguez,guest ``` -------------------------------- ### Build a URL with Parameters Source: https://docs.plane.so/core-concepts/issues/work-item-url Construct a URL with query parameters to pre-fill work item fields. Use '+' or '%20' for spaces and '&' to separate parameters. ```bash https://app.plane.so/work-items/new?title=Fix+bug&priority=high&assignee=me ``` -------------------------------- ### Example: Bug Report with Title and Description Source: https://docs.plane.so/core-concepts/issues/work-item-url Create a work item with a specific title and description, demonstrating parameter combination. ```bash https://app.plane.so/work-items/new?title=Login+button+not+working&description=Users+cannot+click+the+login+button+on+mobile ``` -------------------------------- ### Add Items to Modules Source: https://docs.plane.so/ai/pi-chat Example for adding work items to a specific module. ```text Add all login-related issues to the Authentication module ```