@elizaos/plugin-linear 2.0.3-beta.5 → 2.0.3-beta.7
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.
- package/dist/accounts.d.ts +18 -0
- package/dist/accounts.d.ts.map +1 -0
- package/dist/actions/account-options.d.ts +12 -0
- package/dist/actions/account-options.d.ts.map +1 -0
- package/dist/actions/clearActivity.d.ts +3 -0
- package/dist/actions/clearActivity.d.ts.map +1 -0
- package/dist/actions/createComment.d.ts +3 -0
- package/dist/actions/createComment.d.ts.map +1 -0
- package/dist/actions/createIssue.d.ts +3 -0
- package/dist/actions/createIssue.d.ts.map +1 -0
- package/dist/actions/deleteComment.d.ts +3 -0
- package/dist/actions/deleteComment.d.ts.map +1 -0
- package/dist/actions/deleteIssue.d.ts +3 -0
- package/dist/actions/deleteIssue.d.ts.map +1 -0
- package/dist/actions/getActivity.d.ts +3 -0
- package/dist/actions/getActivity.d.ts.map +1 -0
- package/dist/actions/getIssue.d.ts +3 -0
- package/dist/actions/getIssue.d.ts.map +1 -0
- package/dist/actions/index.d.ts +9 -0
- package/dist/actions/index.d.ts.map +1 -0
- package/dist/actions/linear.d.ts +4 -0
- package/dist/actions/linear.d.ts.map +1 -0
- package/dist/actions/listComments.d.ts +3 -0
- package/dist/actions/listComments.d.ts.map +1 -0
- package/dist/actions/message-source.d.ts +4 -0
- package/dist/actions/message-source.d.ts.map +1 -0
- package/dist/actions/parseLinearPrompt.d.ts +8 -0
- package/dist/actions/parseLinearPrompt.d.ts.map +1 -0
- package/dist/actions/routers.d.ts +154 -0
- package/dist/actions/routers.d.ts.map +1 -0
- package/dist/actions/searchIssues.d.ts +3 -0
- package/dist/actions/searchIssues.d.ts.map +1 -0
- package/dist/actions/updateComment.d.ts +3 -0
- package/dist/actions/updateComment.d.ts.map +1 -0
- package/dist/actions/updateIssue.d.ts +4 -0
- package/dist/actions/updateIssue.d.ts.map +1 -0
- package/dist/actions/validate-linear-intent.d.ts +12 -0
- package/dist/actions/validate-linear-intent.d.ts.map +1 -0
- package/dist/connector-account-provider.d.ts +19 -0
- package/dist/connector-account-provider.d.ts.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3692 -0
- package/dist/index.js.map +36 -0
- package/dist/prompts.d.ts +27 -0
- package/dist/prompts.d.ts.map +1 -0
- package/dist/providers/activity.d.ts +3 -0
- package/dist/providers/activity.d.ts.map +1 -0
- package/dist/providers/index.d.ts +5 -0
- package/dist/providers/index.d.ts.map +1 -0
- package/dist/providers/issues.d.ts +3 -0
- package/dist/providers/issues.d.ts.map +1 -0
- package/dist/providers/projects.d.ts +3 -0
- package/dist/providers/projects.d.ts.map +1 -0
- package/dist/providers/teams.d.ts +3 -0
- package/dist/providers/teams.d.ts.map +1 -0
- package/dist/search-category.d.ts +4 -0
- package/dist/search-category.d.ts.map +1 -0
- package/dist/services/linear.d.ts +41 -0
- package/dist/services/linear.d.ts.map +1 -0
- package/dist/types/index.d.ts +96 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Prompt templates for Linear plugin actions.
|
|
3
|
+
*
|
|
4
|
+
* Handlebars-style template syntax:
|
|
5
|
+
* - {{variableName}} for simple substitution
|
|
6
|
+
* - {{#each items}}...{{/each}} for iteration
|
|
7
|
+
* - {{#if condition}}...{{/if}} for conditionals
|
|
8
|
+
*/
|
|
9
|
+
export declare const createCommentTemplate = "Extract comment details from the user's request to add a comment to a Linear issue.\n\nUser request: \"{{userMessage}}\"\n\nThe user might express this in various ways:\n- \"Comment on ENG-123: This looks good\"\n- \"Tell ENG-123 that the fix is ready for testing\"\n- \"Add a note to the login bug saying we need more info\"\n- \"Reply to COM2-7: Thanks for the update\"\n- \"Let the payment issue know that it's blocked by API changes\"\n\nRespond with JSON only. Use this shape:\n{\n \"issueId\": \"Direct issue ID if explicitly mentioned, for example ENG-123\",\n \"issueDescription\": \"Description or keywords of the issue if no ID was provided\",\n \"commentBody\": \"The actual comment content to add\",\n \"commentType\": \"note|reply|update|question|feedback\"\n}\n\nExtract the core message the user wants to convey as the comment body.\nOmit unknown fields. Output only the JSON object, with no prose before or after it.";
|
|
10
|
+
export declare const CREATE_COMMENT_TEMPLATE = "Extract comment details from the user's request to add a comment to a Linear issue.\n\nUser request: \"{{userMessage}}\"\n\nThe user might express this in various ways:\n- \"Comment on ENG-123: This looks good\"\n- \"Tell ENG-123 that the fix is ready for testing\"\n- \"Add a note to the login bug saying we need more info\"\n- \"Reply to COM2-7: Thanks for the update\"\n- \"Let the payment issue know that it's blocked by API changes\"\n\nRespond with JSON only. Use this shape:\n{\n \"issueId\": \"Direct issue ID if explicitly mentioned, for example ENG-123\",\n \"issueDescription\": \"Description or keywords of the issue if no ID was provided\",\n \"commentBody\": \"The actual comment content to add\",\n \"commentType\": \"note|reply|update|question|feedback\"\n}\n\nExtract the core message the user wants to convey as the comment body.\nOmit unknown fields. Output only the JSON object, with no prose before or after it.";
|
|
11
|
+
export declare const createIssueTemplate = "Given the user's request, extract the information needed to create a Linear issue.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only. Use this shape:\n{\n \"title\": \"Brief, clear issue title\",\n \"description\": \"Detailed description of the issue\",\n \"teamKey\": \"Team key if mentioned, such as ENG or PROD\",\n \"priority\": 3,\n \"labels\": [\"label\"],\n \"assignee\": \"Assignee username or email if mentioned\"\n}\n\nOmit optional fields when they are not provided. Output only the JSON object, with no prose before or after it.";
|
|
12
|
+
export declare const CREATE_ISSUE_TEMPLATE = "Given the user's request, extract the information needed to create a Linear issue.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only. Use this shape:\n{\n \"title\": \"Brief, clear issue title\",\n \"description\": \"Detailed description of the issue\",\n \"teamKey\": \"Team key if mentioned, such as ENG or PROD\",\n \"priority\": 3,\n \"labels\": [\"label\"],\n \"assignee\": \"Assignee username or email if mentioned\"\n}\n\nOmit optional fields when they are not provided. Output only the JSON object, with no prose before or after it.";
|
|
13
|
+
export declare const deleteIssueTemplate = "Given the user's request to delete/archive a Linear issue, extract the issue identifier.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only:\n{\n \"issueId\": \"The issue identifier, such as ENG-123 or COM2-7\"\n}\n\nOutput only the JSON object, with no prose before or after it.";
|
|
14
|
+
export declare const DELETE_ISSUE_TEMPLATE = "Given the user's request to delete/archive a Linear issue, extract the issue identifier.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only:\n{\n \"issueId\": \"The issue identifier, such as ENG-123 or COM2-7\"\n}\n\nOutput only the JSON object, with no prose before or after it.";
|
|
15
|
+
export declare const getActivityTemplate = "Extract activity filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for activity in various ways:\n- \"Show me today's activity\" \u2192 time range filter\n- \"What issues were created?\" \u2192 action type filter\n- \"What did John do yesterday?\" \u2192 user filter + time range\n- \"Activity on ENG-123\" \u2192 resource filter\n- \"Recent comment activity\" \u2192 action type + recency\n- \"Failed operations this week\" \u2192 success filter + time range\n\nRespond with JSON only. Use this shape:\n{\n \"timeRange\": {\n \"period\": \"today|yesterday|this-week|last-week|this-month\",\n \"from\": \"ISO datetime if a specific start is mentioned\",\n \"to\": \"ISO datetime if a specific end is mentioned\"\n },\n \"actionTypes\": [\"create_issue\"],\n \"resourceTypes\": [\"issue\"],\n \"resourceId\": \"Specific resource ID if mentioned, such as ENG-123\",\n \"user\": \"User name, or me for current user\",\n \"successFilter\": \"success|failed|all\",\n \"limit\": 10\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
16
|
+
export declare const GET_ACTIVITY_TEMPLATE = "Extract activity filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for activity in various ways:\n- \"Show me today's activity\" \u2192 time range filter\n- \"What issues were created?\" \u2192 action type filter\n- \"What did John do yesterday?\" \u2192 user filter + time range\n- \"Activity on ENG-123\" \u2192 resource filter\n- \"Recent comment activity\" \u2192 action type + recency\n- \"Failed operations this week\" \u2192 success filter + time range\n\nRespond with JSON only. Use this shape:\n{\n \"timeRange\": {\n \"period\": \"today|yesterday|this-week|last-week|this-month\",\n \"from\": \"ISO datetime if a specific start is mentioned\",\n \"to\": \"ISO datetime if a specific end is mentioned\"\n },\n \"actionTypes\": [\"create_issue\"],\n \"resourceTypes\": [\"issue\"],\n \"resourceId\": \"Specific resource ID if mentioned, such as ENG-123\",\n \"user\": \"User name, or me for current user\",\n \"successFilter\": \"success|failed|all\",\n \"limit\": 10\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
17
|
+
export declare const getIssueTemplate = "Extract issue identification from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might reference an issue by:\n- Direct ID (e.g., \"ENG-123\", \"COM2-7\")\n- Title keywords (e.g., \"the login bug\", \"that payment issue\")\n- Assignee (e.g., \"John's high priority task\")\n- Recency (e.g., \"the latest bug\", \"most recent issue\")\n- Team context (e.g., \"newest issue in ELIZA team\")\n\nRespond with JSON only. Use directId when an issue ID is explicitly mentioned:\n{\n \"directId\": \"Issue ID such as ENG-123\"\n}\n\nWhen no issue ID is provided, use searchBy fields:\n{\n \"searchBy\": {\n \"title\": \"Keywords from issue title if mentioned\",\n \"assignee\": \"Name or email of assignee if mentioned\",\n \"priority\": \"urgent|high|normal|low|1|2|3|4\",\n \"team\": \"Team name or key if mentioned\",\n \"state\": \"Issue state if mentioned, such as to-do, in-progress, or done\",\n \"recency\": \"latest|newest|recent|last\",\n \"type\": \"bug|feature|task\"\n }\n}\n\nOnly include fields that are clearly mentioned or implied. Output only the JSON object, with no prose before or after it.";
|
|
18
|
+
export declare const GET_ISSUE_TEMPLATE = "Extract issue identification from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might reference an issue by:\n- Direct ID (e.g., \"ENG-123\", \"COM2-7\")\n- Title keywords (e.g., \"the login bug\", \"that payment issue\")\n- Assignee (e.g., \"John's high priority task\")\n- Recency (e.g., \"the latest bug\", \"most recent issue\")\n- Team context (e.g., \"newest issue in ELIZA team\")\n\nRespond with JSON only. Use directId when an issue ID is explicitly mentioned:\n{\n \"directId\": \"Issue ID such as ENG-123\"\n}\n\nWhen no issue ID is provided, use searchBy fields:\n{\n \"searchBy\": {\n \"title\": \"Keywords from issue title if mentioned\",\n \"assignee\": \"Name or email of assignee if mentioned\",\n \"priority\": \"urgent|high|normal|low|1|2|3|4\",\n \"team\": \"Team name or key if mentioned\",\n \"state\": \"Issue state if mentioned, such as to-do, in-progress, or done\",\n \"recency\": \"latest|newest|recent|last\",\n \"type\": \"bug|feature|task\"\n }\n}\n\nOnly include fields that are clearly mentioned or implied. Output only the JSON object, with no prose before or after it.";
|
|
19
|
+
export declare const listProjectsTemplate = "Extract project filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for projects in various ways:\n- \"Show me all projects\" \u2192 list all projects\n- \"Active projects\" \u2192 filter by state (active/planned/completed)\n- \"Projects due this quarter\" \u2192 filter by target date\n- \"Which projects is Sarah managing?\" \u2192 filter by lead/owner\n- \"Projects with high priority issues\" \u2192 filter by contained issue priority\n- \"Projects for the engineering team\" \u2192 filter by team\n- \"Completed projects\" \u2192 filter by state\n- \"Projects starting next month\" \u2192 filter by start date\n\nRespond with JSON only. Use this shape:\n{\n \"teamFilter\": \"Team name or key if mentioned\",\n \"stateFilter\": \"active|planned|completed|all\",\n \"dateFilter\": {\n \"type\": \"due|starting\",\n \"period\": \"this-week|this-month|this-quarter|next-month|next-quarter\",\n \"from\": \"ISO date if a specific start is mentioned\",\n \"to\": \"ISO date if a specific end is mentioned\"\n },\n \"leadFilter\": \"Project lead name if mentioned\",\n \"showAll\": true\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
20
|
+
export declare const LIST_PROJECTS_TEMPLATE = "Extract project filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for projects in various ways:\n- \"Show me all projects\" \u2192 list all projects\n- \"Active projects\" \u2192 filter by state (active/planned/completed)\n- \"Projects due this quarter\" \u2192 filter by target date\n- \"Which projects is Sarah managing?\" \u2192 filter by lead/owner\n- \"Projects with high priority issues\" \u2192 filter by contained issue priority\n- \"Projects for the engineering team\" \u2192 filter by team\n- \"Completed projects\" \u2192 filter by state\n- \"Projects starting next month\" \u2192 filter by start date\n\nRespond with JSON only. Use this shape:\n{\n \"teamFilter\": \"Team name or key if mentioned\",\n \"stateFilter\": \"active|planned|completed|all\",\n \"dateFilter\": {\n \"type\": \"due|starting\",\n \"period\": \"this-week|this-month|this-quarter|next-month|next-quarter\",\n \"from\": \"ISO date if a specific start is mentioned\",\n \"to\": \"ISO date if a specific end is mentioned\"\n },\n \"leadFilter\": \"Project lead name if mentioned\",\n \"showAll\": true\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
21
|
+
export declare const listTeamsTemplate = "Extract team filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for teams in various ways:\n- \"Show me all teams\" \u2192 list all teams\n- \"Engineering teams\" \u2192 filter by teams with engineering in name/description\n- \"List teams I'm part of\" \u2192 filter by membership\n- \"Which teams work on the mobile app?\" \u2192 filter by description/focus\n- \"Show me the ELIZA team details\" \u2192 specific team lookup\n- \"Active teams\" \u2192 teams with recent activity\n- \"Frontend and backend teams\" \u2192 multiple team types\n\nRespond with JSON only. Use this shape:\n{\n \"nameFilter\": \"Keywords to search in team names\",\n \"specificTeam\": \"Specific team name or key if looking for one team\",\n \"myTeams\": true,\n \"showAll\": true,\n \"includeDetails\": true\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
22
|
+
export declare const LIST_TEAMS_TEMPLATE = "Extract team filter criteria from the user's request.\n\nUser request: \"{{userMessage}}\"\n\nThe user might ask for teams in various ways:\n- \"Show me all teams\" \u2192 list all teams\n- \"Engineering teams\" \u2192 filter by teams with engineering in name/description\n- \"List teams I'm part of\" \u2192 filter by membership\n- \"Which teams work on the mobile app?\" \u2192 filter by description/focus\n- \"Show me the ELIZA team details\" \u2192 specific team lookup\n- \"Active teams\" \u2192 teams with recent activity\n- \"Frontend and backend teams\" \u2192 multiple team types\n\nRespond with JSON only. Use this shape:\n{\n \"nameFilter\": \"Keywords to search in team names\",\n \"specificTeam\": \"Specific team name or key if looking for one team\",\n \"myTeams\": true,\n \"showAll\": true,\n \"includeDetails\": true\n}\n\nOnly include fields that are clearly mentioned. Output only the JSON object, with no prose before or after it.";
|
|
23
|
+
export declare const searchIssuesTemplate = "Extract search criteria from the user's request for Linear issues.\n\nUser request: \"{{userMessage}}\"\n\nThe user might express searches in various ways:\n- \"Show me what John is working on\" \u2192 assignee filter\n- \"Any blockers for the next release?\" \u2192 priority/label filters\n- \"Issues created this week\" \u2192 date range filter\n- \"My high priority bugs\" \u2192 assignee (current user) + priority + label\n- \"Unassigned tasks in the backend team\" \u2192 no assignee + team filter\n- \"What did Sarah close yesterday?\" \u2192 assignee + state + date\n- \"Bugs that are almost done\" \u2192 label + state filter\n- \"Show me the oldest open issues\" \u2192 state + sort order\n\nRespond with JSON only. Use this shape:\n{\n \"query\": \"General search text for title or description\",\n \"states\": [\"In Progress\"],\n \"assignees\": [\"me\"],\n \"priorities\": [\"high\"],\n \"teams\": [\"ENG\"],\n \"labels\": [\"bug\"],\n \"hasAssignee\": true,\n \"dateRange\": {\n \"field\": \"created|updated|completed\",\n \"period\": \"today|yesterday|this-week|last-week|this-month|last-month\",\n \"from\": \"ISO date if a specific start is mentioned\",\n \"to\": \"ISO date if a specific end is mentioned\"\n },\n \"sort\": {\n \"field\": \"created|updated|priority\",\n \"order\": \"asc|desc\"\n },\n \"limit\": 10\n}\n\nOnly include fields that are clearly mentioned or implied. For \"my\" issues, set assignees to [\"me\"]. Output only the JSON object, with no prose before or after it.";
|
|
24
|
+
export declare const SEARCH_ISSUES_TEMPLATE = "Extract search criteria from the user's request for Linear issues.\n\nUser request: \"{{userMessage}}\"\n\nThe user might express searches in various ways:\n- \"Show me what John is working on\" \u2192 assignee filter\n- \"Any blockers for the next release?\" \u2192 priority/label filters\n- \"Issues created this week\" \u2192 date range filter\n- \"My high priority bugs\" \u2192 assignee (current user) + priority + label\n- \"Unassigned tasks in the backend team\" \u2192 no assignee + team filter\n- \"What did Sarah close yesterday?\" \u2192 assignee + state + date\n- \"Bugs that are almost done\" \u2192 label + state filter\n- \"Show me the oldest open issues\" \u2192 state + sort order\n\nRespond with JSON only. Use this shape:\n{\n \"query\": \"General search text for title or description\",\n \"states\": [\"In Progress\"],\n \"assignees\": [\"me\"],\n \"priorities\": [\"high\"],\n \"teams\": [\"ENG\"],\n \"labels\": [\"bug\"],\n \"hasAssignee\": true,\n \"dateRange\": {\n \"field\": \"created|updated|completed\",\n \"period\": \"today|yesterday|this-week|last-week|this-month|last-month\",\n \"from\": \"ISO date if a specific start is mentioned\",\n \"to\": \"ISO date if a specific end is mentioned\"\n },\n \"sort\": {\n \"field\": \"created|updated|priority\",\n \"order\": \"asc|desc\"\n },\n \"limit\": 10\n}\n\nOnly include fields that are clearly mentioned or implied. For \"my\" issues, set assignees to [\"me\"]. Output only the JSON object, with no prose before or after it.";
|
|
25
|
+
export declare const updateIssueTemplate = "Given the user's request to update a Linear issue, extract the information needed.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only. Use this shape:\n{\n \"issueId\": \"Issue identifier such as ENG-123 or COM2-7\",\n \"updates\": {\n \"title\": \"New title if changing the title\",\n \"description\": \"New description if changing the description\",\n \"priority\": 3,\n \"teamKey\": \"New team key if moving to another team, such as ENG, ELIZA, or COM2\",\n \"assignee\": \"New assignee username or email if changing\",\n \"status\": \"to-do|in-progress|done|canceled\",\n \"labels\": [\"label\"]\n }\n}\n\nOnly include fields that are being updated. Use an empty labels array to clear all labels. Output only the JSON object, with no prose before or after it.";
|
|
26
|
+
export declare const UPDATE_ISSUE_TEMPLATE = "Given the user's request to update a Linear issue, extract the information needed.\n\nUser request: \"{{userMessage}}\"\n\nRespond with JSON only. Use this shape:\n{\n \"issueId\": \"Issue identifier such as ENG-123 or COM2-7\",\n \"updates\": {\n \"title\": \"New title if changing the title\",\n \"description\": \"New description if changing the description\",\n \"priority\": 3,\n \"teamKey\": \"New team key if moving to another team, such as ENG, ELIZA, or COM2\",\n \"assignee\": \"New assignee username or email if changing\",\n \"status\": \"to-do|in-progress|done|canceled\",\n \"labels\": [\"label\"]\n }\n}\n\nOnly include fields that are being updated. Use an empty labels array to clear all labels. Output only the JSON object, with no prose before or after it.";
|
|
27
|
+
//# sourceMappingURL=prompts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../src/prompts.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,eAAO,MAAM,qBAAqB,66BAoBkD,CAAC;AAErF,eAAO,MAAM,uBAAuB,66BAAwB,CAAC;AAE7D,eAAO,MAAM,mBAAmB,ojBAcgF,CAAC;AAEjH,eAAO,MAAM,qBAAqB,ojBAAsB,CAAC;AAEzD,eAAO,MAAM,mBAAmB,ySAS+B,CAAC;AAEhE,eAAO,MAAM,qBAAqB,ySAAsB,CAAC;AAEzD,eAAO,MAAM,mBAAmB,4oCA2B+E,CAAC;AAEhH,eAAO,MAAM,qBAAqB,4oCAAsB,CAAC;AAEzD,eAAO,MAAM,gBAAgB,koCA6B6F,CAAC;AAE3H,eAAO,MAAM,kBAAkB,koCAAmB,CAAC;AAEnD,eAAO,MAAM,oBAAoB,yvCA4B8E,CAAC;AAEhH,eAAO,MAAM,sBAAsB,yvCAAuB,CAAC;AAE3D,eAAO,MAAM,iBAAiB,i8BAsBiF,CAAC;AAEhH,eAAO,MAAM,mBAAmB,i8BAAoB,CAAC;AAErD,eAAO,MAAM,oBAAoB,qgDAoCmI,CAAC;AAErK,eAAO,MAAM,sBAAsB,qgDAAuB,CAAC;AAE3D,eAAO,MAAM,mBAAmB,oyBAkB0H,CAAC;AAE3J,eAAO,MAAM,qBAAqB,oyBAAsB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activity.d.ts","sourceRoot":"","sources":["../../src/providers/activity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAyB,QAAQ,EAAS,MAAM,eAAe,CAAC;AAmB5E,eAAO,MAAM,sBAAsB,EAAE,QA0DpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/providers/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"issues.d.ts","sourceRoot":"","sources":["../../src/providers/issues.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAyB,QAAQ,EAAS,MAAM,eAAe,CAAC;AAI5E,eAAO,MAAM,oBAAoB,EAAE,QAoDlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/providers/projects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAyB,QAAQ,EAAS,MAAM,eAAe,CAAC;AAI5E,eAAO,MAAM,sBAAsB,EAAE,QAuDpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"teams.d.ts","sourceRoot":"","sources":["../../src/providers/teams.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAyB,QAAQ,EAAS,MAAM,eAAe,CAAC;AAO5E,eAAO,MAAM,mBAAmB,EAAE,QAmDjC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { IAgentRuntime, SearchCategoryRegistration } from "@elizaos/core";
|
|
2
|
+
export declare const LINEAR_ISSUES_SEARCH_CATEGORY: SearchCategoryRegistration;
|
|
3
|
+
export declare function registerLinearSearchCategory(runtime: IAgentRuntime): void;
|
|
4
|
+
//# sourceMappingURL=search-category.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-category.d.ts","sourceRoot":"","sources":["../src/search-category.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,0BAA0B,EAAE,MAAM,eAAe,CAAC;AAE/E,eAAO,MAAM,6BAA6B,EAAE,0BA+D3C,CAAC;AAWF,wBAAgB,4BAA4B,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI,CAIzE"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type IAgentRuntime, Service } from "@elizaos/core";
|
|
2
|
+
import { type Comment, type Issue, type IssueLabel, type Project, type Team, type User, type WorkflowState } from "@linear/sdk";
|
|
3
|
+
import type { LinearActivityItem, LinearCommentInput, LinearIssueInput, LinearSearchFilters } from "../types";
|
|
4
|
+
export declare class LinearService extends Service {
|
|
5
|
+
static serviceType: string;
|
|
6
|
+
capabilityDescription: string;
|
|
7
|
+
private clients;
|
|
8
|
+
private activityLog;
|
|
9
|
+
private defaultAccountId;
|
|
10
|
+
workspaceId?: string;
|
|
11
|
+
constructor(runtime?: IAgentRuntime);
|
|
12
|
+
static start(runtime: IAgentRuntime): Promise<LinearService>;
|
|
13
|
+
stop(): Promise<void>;
|
|
14
|
+
private validateConnection;
|
|
15
|
+
hasAccount(accountId?: string): boolean;
|
|
16
|
+
getDefaultTeamKey(accountId?: string): string | undefined;
|
|
17
|
+
private getAccountState;
|
|
18
|
+
private getClient;
|
|
19
|
+
private logActivity;
|
|
20
|
+
getActivityLog(limit?: number, filter?: Partial<LinearActivityItem>, accountId?: string): LinearActivityItem[];
|
|
21
|
+
clearActivityLog(accountId?: string): void;
|
|
22
|
+
getTeams(accountId?: string): Promise<Team[]>;
|
|
23
|
+
getTeam(teamId: string, accountId?: string): Promise<Team>;
|
|
24
|
+
createIssue(input: LinearIssueInput, accountId?: string): Promise<Issue>;
|
|
25
|
+
getIssue(issueId: string, accountId?: string): Promise<Issue>;
|
|
26
|
+
updateIssue(issueId: string, updates: Partial<LinearIssueInput>, accountId?: string): Promise<Issue>;
|
|
27
|
+
deleteIssue(issueId: string, accountId?: string): Promise<void>;
|
|
28
|
+
searchIssues(filters: LinearSearchFilters, accountId?: string): Promise<Issue[]>;
|
|
29
|
+
createComment(input: LinearCommentInput, accountId?: string): Promise<Comment>;
|
|
30
|
+
updateComment(commentId: string, body: string, accountId?: string): Promise<Comment>;
|
|
31
|
+
deleteComment(commentId: string, accountId?: string): Promise<void>;
|
|
32
|
+
listComments(issueId: string, limit?: number, accountId?: string): Promise<Comment[]>;
|
|
33
|
+
getProjects(teamId?: string, accountId?: string): Promise<Project[]>;
|
|
34
|
+
getProject(projectId: string, accountId?: string): Promise<Project>;
|
|
35
|
+
getUsers(accountId?: string): Promise<User[]>;
|
|
36
|
+
getCurrentUser(accountId?: string): Promise<User>;
|
|
37
|
+
getUserTeams(accountId?: string): Promise<Team[]>;
|
|
38
|
+
getLabels(teamId?: string, accountId?: string): Promise<IssueLabel[]>;
|
|
39
|
+
getWorkflowStates(teamId: string, accountId?: string): Promise<WorkflowState[]>;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=linear.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"linear.d.ts","sourceRoot":"","sources":["../../src/services/linear.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
export interface LinearConfig {
|
|
2
|
+
LINEAR_API_KEY: string;
|
|
3
|
+
LINEAR_WORKSPACE_ID?: string;
|
|
4
|
+
LINEAR_ACCOUNT_ID?: string;
|
|
5
|
+
LINEAR_DEFAULT_ACCOUNT_ID?: string;
|
|
6
|
+
LINEAR_ACCOUNTS?: string;
|
|
7
|
+
}
|
|
8
|
+
/** Primitive types allowed in activity details */
|
|
9
|
+
export type ActivityDetailPrimitive = string | number | boolean | null;
|
|
10
|
+
/** Array types allowed in activity details */
|
|
11
|
+
export type ActivityDetailArray = ActivityDetailPrimitive[];
|
|
12
|
+
/** Nested object allowed in activity details (one level deep) */
|
|
13
|
+
export type ActivityDetailObject = Record<string, ActivityDetailPrimitive | ActivityDetailArray>;
|
|
14
|
+
/** Valid values for activity detail fields */
|
|
15
|
+
export type ActivityDetailValue = ActivityDetailPrimitive | ActivityDetailArray | ActivityDetailObject | Date;
|
|
16
|
+
export interface LinearActivityItem {
|
|
17
|
+
id: string;
|
|
18
|
+
timestamp: string;
|
|
19
|
+
action: string;
|
|
20
|
+
resource_type: "issue" | "project" | "comment" | "label" | "user" | "team";
|
|
21
|
+
resource_id: string;
|
|
22
|
+
details: Record<string, ActivityDetailValue>;
|
|
23
|
+
success: boolean;
|
|
24
|
+
error?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface LinearIssueInput {
|
|
27
|
+
title: string;
|
|
28
|
+
description?: string;
|
|
29
|
+
teamId: string;
|
|
30
|
+
priority?: number;
|
|
31
|
+
assigneeId?: string;
|
|
32
|
+
labelIds?: string[];
|
|
33
|
+
projectId?: string;
|
|
34
|
+
stateId?: string;
|
|
35
|
+
estimate?: number;
|
|
36
|
+
dueDate?: Date;
|
|
37
|
+
}
|
|
38
|
+
export interface LinearCommentInput {
|
|
39
|
+
body: string;
|
|
40
|
+
issueId: string;
|
|
41
|
+
}
|
|
42
|
+
export interface LinearSearchFilters {
|
|
43
|
+
state?: string[];
|
|
44
|
+
assignee?: string[];
|
|
45
|
+
label?: string[];
|
|
46
|
+
project?: string;
|
|
47
|
+
team?: string;
|
|
48
|
+
priority?: number[];
|
|
49
|
+
query?: string;
|
|
50
|
+
limit?: number;
|
|
51
|
+
}
|
|
52
|
+
export interface CreateCommentParameters {
|
|
53
|
+
issueId?: string;
|
|
54
|
+
body?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface UpdateCommentParameters {
|
|
57
|
+
commentId?: string;
|
|
58
|
+
body?: string;
|
|
59
|
+
}
|
|
60
|
+
export interface DeleteCommentParameters {
|
|
61
|
+
commentId?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface ListCommentsParameters {
|
|
64
|
+
issueId?: string;
|
|
65
|
+
limit?: number;
|
|
66
|
+
}
|
|
67
|
+
export interface CreateIssueParameters {
|
|
68
|
+
issueData?: Partial<LinearIssueInput>;
|
|
69
|
+
}
|
|
70
|
+
export interface DeleteIssueParameters {
|
|
71
|
+
issueId?: string;
|
|
72
|
+
}
|
|
73
|
+
export interface SearchIssuesParameters {
|
|
74
|
+
filters?: LinearSearchFilters;
|
|
75
|
+
limit?: number;
|
|
76
|
+
}
|
|
77
|
+
export interface LinearErrorResponse {
|
|
78
|
+
message?: string;
|
|
79
|
+
errors?: Array<{
|
|
80
|
+
message: string;
|
|
81
|
+
path?: string[];
|
|
82
|
+
}>;
|
|
83
|
+
}
|
|
84
|
+
export declare class LinearAPIError extends Error {
|
|
85
|
+
status?: number | undefined;
|
|
86
|
+
response?: LinearErrorResponse | undefined;
|
|
87
|
+
constructor(message: string, status?: number | undefined, response?: LinearErrorResponse | undefined);
|
|
88
|
+
}
|
|
89
|
+
export declare class LinearAuthenticationError extends LinearAPIError {
|
|
90
|
+
constructor(message: string);
|
|
91
|
+
}
|
|
92
|
+
export declare class LinearRateLimitError extends LinearAPIError {
|
|
93
|
+
resetTime: number;
|
|
94
|
+
constructor(message: string, resetTime: number);
|
|
95
|
+
}
|
|
96
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-linear",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.7",
|
|
4
4
|
"description": "Linear integration plugin for ElizaOS (TypeScript)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@elizaos/core": "2.0.3-beta.
|
|
73
|
+
"@elizaos/core": "2.0.3-beta.7",
|
|
74
74
|
"@linear/sdk": "^86.0.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"node": "ESM build available via exports.import"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "61094f10458d11055c75b3dd0bae374e3f66bac5"
|
|
115
115
|
}
|