linear-cli-agents 0.2.0 → 0.4.0
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/README.md +253 -5
- package/bin/dev.js +0 -0
- package/dist/commands/comments/add.d.ts +13 -0
- package/dist/commands/comments/add.js +89 -0
- package/dist/commands/comments/delete.d.ts +12 -0
- package/dist/commands/comments/delete.js +50 -0
- package/dist/commands/comments/list.d.ts +14 -0
- package/dist/commands/comments/list.js +103 -0
- package/dist/commands/comments/update.d.ts +13 -0
- package/dist/commands/comments/update.js +81 -0
- package/dist/commands/issues/add-labels.d.ts +13 -0
- package/dist/commands/issues/add-labels.js +90 -0
- package/dist/commands/issues/archive.d.ts +13 -0
- package/dist/commands/issues/archive.js +83 -0
- package/dist/commands/issues/remove-labels.d.ts +13 -0
- package/dist/commands/issues/remove-labels.js +90 -0
- package/dist/commands/labels/create.d.ts +14 -0
- package/dist/commands/labels/create.js +102 -0
- package/dist/commands/labels/delete.d.ts +12 -0
- package/dist/commands/labels/delete.js +50 -0
- package/dist/commands/labels/list.d.ts +12 -0
- package/dist/commands/labels/list.js +117 -0
- package/dist/commands/labels/update.d.ts +16 -0
- package/dist/commands/labels/update.js +109 -0
- package/dist/commands/me.js +1 -5
- package/dist/commands/milestones/create.d.ts +15 -0
- package/dist/commands/milestones/create.js +90 -0
- package/dist/commands/milestones/get.d.ts +12 -0
- package/dist/commands/milestones/get.js +74 -0
- package/dist/commands/milestones/list.d.ts +14 -0
- package/dist/commands/milestones/list.js +97 -0
- package/dist/commands/milestones/update.d.ts +15 -0
- package/dist/commands/milestones/update.js +94 -0
- package/dist/commands/project-updates/create.d.ts +14 -0
- package/dist/commands/project-updates/create.js +96 -0
- package/dist/commands/project-updates/get.d.ts +12 -0
- package/dist/commands/project-updates/get.js +80 -0
- package/dist/commands/project-updates/list.d.ts +14 -0
- package/dist/commands/project-updates/list.js +120 -0
- package/dist/commands/project-updates/update.d.ts +14 -0
- package/dist/commands/project-updates/update.js +96 -0
- package/dist/commands/projects/archive.d.ts +13 -0
- package/dist/commands/projects/archive.js +79 -0
- package/dist/commands/projects/create.d.ts +16 -0
- package/dist/commands/projects/create.js +115 -0
- package/dist/commands/projects/delete.d.ts +12 -0
- package/dist/commands/projects/delete.js +50 -0
- package/dist/commands/projects/get.d.ts +12 -0
- package/dist/commands/projects/get.js +102 -0
- package/dist/commands/projects/list.d.ts +13 -0
- package/dist/commands/projects/list.js +141 -0
- package/dist/commands/projects/update.d.ts +18 -0
- package/dist/commands/projects/update.js +125 -0
- package/dist/commands/relations/create.d.ts +14 -0
- package/dist/commands/relations/create.js +98 -0
- package/dist/commands/relations/delete.d.ts +12 -0
- package/dist/commands/relations/delete.js +47 -0
- package/dist/commands/relations/list.d.ts +12 -0
- package/dist/commands/relations/list.js +128 -0
- package/dist/commands/search.d.ts +15 -0
- package/dist/commands/search.js +102 -0
- package/dist/commands/states/list.d.ts +12 -0
- package/dist/commands/states/list.js +151 -0
- package/dist/commands/templates/create.d.ts +14 -0
- package/dist/commands/templates/create.js +102 -0
- package/dist/commands/templates/get.d.ts +12 -0
- package/dist/commands/templates/get.js +84 -0
- package/dist/commands/templates/list.d.ts +12 -0
- package/dist/commands/templates/list.js +110 -0
- package/dist/commands/templates/update.d.ts +15 -0
- package/dist/commands/templates/update.js +101 -0
- package/dist/commands/users/get.d.ts +12 -0
- package/dist/commands/users/get.js +91 -0
- package/dist/commands/users/list.d.ts +12 -0
- package/dist/commands/users/list.js +99 -0
- package/dist/lib/config.js +1 -1
- package/oclif.manifest.json +2397 -184
- package/package.json +47 -17
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linear-cli-agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "CLI for interacting with Linear, designed for LLMs and agents",
|
|
5
5
|
"author": "Nacho",
|
|
6
6
|
"bin": {
|
|
7
7
|
"linear": "./bin/run.js"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://github.com/nchgn/linear-cli",
|
|
9
|
+
"homepage": "https://github.com/nchgn/linear-cli-agents",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"main": "dist/index.js",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/nchgn/linear-cli.git"
|
|
15
|
+
"url": "https://github.com/nchgn/linear-cli-agents.git"
|
|
16
16
|
},
|
|
17
17
|
"bugs": {
|
|
18
|
-
"url": "https://github.com/nchgn/linear-cli/issues"
|
|
18
|
+
"url": "https://github.com/nchgn/linear-cli-agents/issues"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
"/bin",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"oclif": {
|
|
48
48
|
"bin": "linear",
|
|
49
|
-
"dirname": "linear-cli",
|
|
49
|
+
"dirname": "linear-cli-agents",
|
|
50
50
|
"commands": "./dist/commands",
|
|
51
51
|
"plugins": [
|
|
52
52
|
"@oclif/plugin-help",
|
|
@@ -57,14 +57,53 @@
|
|
|
57
57
|
"auth": {
|
|
58
58
|
"description": "Authentication commands"
|
|
59
59
|
},
|
|
60
|
+
"comments": {
|
|
61
|
+
"description": "Comment management commands"
|
|
62
|
+
},
|
|
60
63
|
"issues": {
|
|
61
64
|
"description": "Issue management commands"
|
|
62
65
|
},
|
|
66
|
+
"labels": {
|
|
67
|
+
"description": "Label management commands"
|
|
68
|
+
},
|
|
69
|
+
"milestones": {
|
|
70
|
+
"description": "Project milestone commands"
|
|
71
|
+
},
|
|
72
|
+
"project-updates": {
|
|
73
|
+
"description": "Project update/status commands"
|
|
74
|
+
},
|
|
75
|
+
"projects": {
|
|
76
|
+
"description": "Project management commands"
|
|
77
|
+
},
|
|
78
|
+
"relations": {
|
|
79
|
+
"description": "Issue relation commands"
|
|
80
|
+
},
|
|
81
|
+
"states": {
|
|
82
|
+
"description": "Workflow state commands"
|
|
83
|
+
},
|
|
63
84
|
"teams": {
|
|
64
85
|
"description": "Team management commands"
|
|
86
|
+
},
|
|
87
|
+
"templates": {
|
|
88
|
+
"description": "Template management commands"
|
|
89
|
+
},
|
|
90
|
+
"users": {
|
|
91
|
+
"description": "User management commands"
|
|
65
92
|
}
|
|
66
93
|
}
|
|
67
94
|
},
|
|
95
|
+
"scripts": {
|
|
96
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
97
|
+
"lint": "eslint . && tsc --noEmit",
|
|
98
|
+
"lint:fix": "eslint . --fix",
|
|
99
|
+
"format": "prettier --write .",
|
|
100
|
+
"format:check": "prettier --check .",
|
|
101
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
102
|
+
"prepack": "pnpm run build && oclif manifest && oclif readme",
|
|
103
|
+
"test": "vitest run",
|
|
104
|
+
"test:watch": "vitest",
|
|
105
|
+
"test:coverage": "vitest run --coverage"
|
|
106
|
+
},
|
|
68
107
|
"engines": {
|
|
69
108
|
"node": ">=18.0.0"
|
|
70
109
|
},
|
|
@@ -75,15 +114,6 @@
|
|
|
75
114
|
"agent",
|
|
76
115
|
"project-management"
|
|
77
116
|
],
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
"lint": "eslint . && tsc --noEmit",
|
|
82
|
-
"lint:fix": "eslint . --fix",
|
|
83
|
-
"format": "prettier --write .",
|
|
84
|
-
"format:check": "prettier --check .",
|
|
85
|
-
"test": "vitest run",
|
|
86
|
-
"test:watch": "vitest",
|
|
87
|
-
"test:coverage": "vitest run --coverage"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
117
|
+
"packageManager": "pnpm@10.18.1",
|
|
118
|
+
"prettier": "@oclif/prettier-config"
|
|
119
|
+
}
|