linear-cli-agents 0.6.0 → 0.7.1
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 +68 -1
- package/bin/dev.js +0 -0
- package/dist/commands/documents/create.d.ts +13 -0
- package/dist/commands/documents/create.js +68 -0
- package/dist/commands/documents/delete.d.ts +9 -0
- package/dist/commands/documents/delete.js +32 -0
- package/dist/commands/documents/get.d.ts +12 -0
- package/dist/commands/documents/get.js +79 -0
- package/dist/commands/documents/list.d.ts +12 -0
- package/dist/commands/documents/list.js +105 -0
- package/dist/commands/documents/update.d.ts +16 -0
- package/dist/commands/documents/update.js +75 -0
- package/dist/commands/info.js +174 -7
- package/dist/commands/initiatives/archive.d.ts +12 -0
- package/dist/commands/initiatives/archive.js +44 -0
- package/dist/commands/initiatives/create.d.ts +15 -0
- package/dist/commands/initiatives/create.js +84 -0
- package/dist/commands/initiatives/delete.d.ts +9 -0
- package/dist/commands/initiatives/delete.js +32 -0
- package/dist/commands/initiatives/get.d.ts +12 -0
- package/dist/commands/initiatives/get.js +90 -0
- package/dist/commands/initiatives/list.d.ts +11 -0
- package/dist/commands/initiatives/list.js +135 -0
- package/dist/commands/initiatives/update.d.ts +18 -0
- package/dist/commands/initiatives/update.js +90 -0
- package/dist/commands/issues/bulk-update.d.ts +2 -0
- package/dist/commands/issues/bulk-update.js +10 -0
- package/dist/commands/issues/create.d.ts +2 -0
- package/dist/commands/issues/create.js +10 -0
- package/dist/commands/issues/get.d.ts +1 -0
- package/dist/commands/issues/get.js +19 -1
- package/dist/commands/issues/update.d.ts +2 -0
- package/dist/commands/issues/update.js +12 -0
- package/dist/commands/projects/create.d.ts +1 -0
- package/dist/commands/projects/create.js +10 -0
- package/dist/commands/projects/update.d.ts +1 -0
- package/dist/commands/projects/update.js +7 -0
- package/dist/commands/upload.d.ts +13 -0
- package/dist/commands/upload.js +117 -0
- package/oclif.manifest.json +1362 -625
- package/package.json +23 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linear-cli-agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "CLI for interacting with Linear, designed for LLMs and agents",
|
|
5
5
|
"author": "Nacho",
|
|
6
6
|
"bin": {
|
|
@@ -67,6 +67,12 @@
|
|
|
67
67
|
"cycles": {
|
|
68
68
|
"description": "Cycle (sprint) management commands"
|
|
69
69
|
},
|
|
70
|
+
"documents": {
|
|
71
|
+
"description": "Document management commands"
|
|
72
|
+
},
|
|
73
|
+
"initiatives": {
|
|
74
|
+
"description": "Initiative management commands"
|
|
75
|
+
},
|
|
70
76
|
"issues": {
|
|
71
77
|
"description": "Issue management commands"
|
|
72
78
|
},
|
|
@@ -99,17 +105,6 @@
|
|
|
99
105
|
}
|
|
100
106
|
}
|
|
101
107
|
},
|
|
102
|
-
"engines": {
|
|
103
|
-
"node": ">=18.0.0"
|
|
104
|
-
},
|
|
105
|
-
"keywords": [
|
|
106
|
-
"linear",
|
|
107
|
-
"cli",
|
|
108
|
-
"llm",
|
|
109
|
-
"agent",
|
|
110
|
-
"project-management"
|
|
111
|
-
],
|
|
112
|
-
"prettier": "@oclif/prettier-config",
|
|
113
108
|
"scripts": {
|
|
114
109
|
"postinstall": "node scripts/postinstall.js || true",
|
|
115
110
|
"build": "shx rm -rf dist && tsc -b",
|
|
@@ -117,8 +112,22 @@
|
|
|
117
112
|
"lint:fix": "eslint . --fix",
|
|
118
113
|
"format": "prettier --write .",
|
|
119
114
|
"format:check": "prettier --check .",
|
|
115
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
116
|
+
"prepack": "pnpm run build && oclif manifest && oclif readme",
|
|
120
117
|
"test": "vitest run",
|
|
121
118
|
"test:watch": "vitest",
|
|
122
119
|
"test:coverage": "vitest run --coverage"
|
|
123
|
-
}
|
|
124
|
-
|
|
120
|
+
},
|
|
121
|
+
"engines": {
|
|
122
|
+
"node": ">=18.0.0"
|
|
123
|
+
},
|
|
124
|
+
"keywords": [
|
|
125
|
+
"linear",
|
|
126
|
+
"cli",
|
|
127
|
+
"llm",
|
|
128
|
+
"agent",
|
|
129
|
+
"project-management"
|
|
130
|
+
],
|
|
131
|
+
"packageManager": "pnpm@10.18.1",
|
|
132
|
+
"prettier": "@oclif/prettier-config"
|
|
133
|
+
}
|