linmux 0.1.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/LICENSE +21 -0
- package/README.md +240 -0
- package/bin/run.js +4 -0
- package/dist/commands/comment/create.js +94 -0
- package/dist/commands/comment/delete.js +74 -0
- package/dist/commands/comment/list.js +84 -0
- package/dist/commands/comment/update.js +80 -0
- package/dist/commands/cycle/current.js +78 -0
- package/dist/commands/cycle/list.js +84 -0
- package/dist/commands/cycle/move.js +91 -0
- package/dist/commands/describe.js +65 -0
- package/dist/commands/graphql/index.js +92 -0
- package/dist/commands/install-skill.js +54 -0
- package/dist/commands/issue/archive.js +75 -0
- package/dist/commands/issue/create.js +115 -0
- package/dist/commands/issue/get.js +84 -0
- package/dist/commands/issue/list.js +93 -0
- package/dist/commands/issue/purge.js +81 -0
- package/dist/commands/issue/search.js +109 -0
- package/dist/commands/issue/transition.js +91 -0
- package/dist/commands/issue/trash.js +75 -0
- package/dist/commands/issue/update.js +126 -0
- package/dist/commands/label/create.js +91 -0
- package/dist/commands/label/list.js +76 -0
- package/dist/commands/list-tools.js +47 -0
- package/dist/commands/me.js +71 -0
- package/dist/commands/project/create.js +101 -0
- package/dist/commands/project/get.js +83 -0
- package/dist/commands/project/list.js +75 -0
- package/dist/commands/project/update-status.js +99 -0
- package/dist/commands/project/update.js +99 -0
- package/dist/commands/raw/batch.js +85 -0
- package/dist/commands/raw/index.js +72 -0
- package/dist/commands/schema.js +69 -0
- package/dist/commands/state/list.js +77 -0
- package/dist/commands/team/get.js +73 -0
- package/dist/commands/team/list.js +73 -0
- package/dist/commands/whoami.js +71 -0
- package/dist/commands/workspace/add.js +97 -0
- package/dist/commands/workspace/list.js +47 -0
- package/dist/commands/workspace/remove.js +63 -0
- package/dist/commands/workspace/replace-token.js +89 -0
- package/dist/commands/workspace/use.js +54 -0
- package/dist/core/client/factory.js +28 -0
- package/dist/core/client/index.js +2 -0
- package/dist/core/config/index.js +4 -0
- package/dist/core/config/paths.js +30 -0
- package/dist/core/config/schema.js +36 -0
- package/dist/core/config/store.js +149 -0
- package/dist/core/errors/error.js +142 -0
- package/dist/core/errors/exit-codes.js +70 -0
- package/dist/core/output/envelope.js +53 -0
- package/dist/core/output/format.js +42 -0
- package/dist/core/output/index.js +3 -0
- package/dist/core/pagination/flags.js +29 -0
- package/dist/core/pagination/index.js +2 -0
- package/dist/core/projection/presets.js +116 -0
- package/dist/core/projection/project.js +282 -0
- package/dist/core/redact/redact.js +45 -0
- package/dist/core/resolvers/cycle.js +60 -0
- package/dist/core/resolvers/index.js +7 -0
- package/dist/core/resolvers/label.js +54 -0
- package/dist/core/resolvers/project-status.js +42 -0
- package/dist/core/resolvers/project.js +43 -0
- package/dist/core/resolvers/state.js +46 -0
- package/dist/core/resolvers/team.js +50 -0
- package/dist/core/transport/fetch-interceptor.js +109 -0
- package/dist/core/transport/index.js +3 -0
- package/dist/core/transport/rate-limit.js +167 -0
- package/dist/core/workspace/resolver.js +70 -0
- package/dist/core/workspace/write-guard.js +43 -0
- package/dist/generated/graphql.js +89428 -0
- package/dist/generated/operations.js +3013 -0
- package/dist/lib/comment-create-runtime.js +96 -0
- package/dist/lib/comment-delete-runtime.js +46 -0
- package/dist/lib/comment-list-runtime.js +182 -0
- package/dist/lib/comment-update-runtime.js +93 -0
- package/dist/lib/cycle-current-runtime.js +90 -0
- package/dist/lib/cycle-list-runtime.js +151 -0
- package/dist/lib/cycle-move-runtime.js +142 -0
- package/dist/lib/describe-runtime.js +180 -0
- package/dist/lib/filter-heuristics.js +59 -0
- package/dist/lib/graphql-runtime.js +202 -0
- package/dist/lib/include-fragments.js +73 -0
- package/dist/lib/install-skill-runtime.js +228 -0
- package/dist/lib/introspection-registry.js +488 -0
- package/dist/lib/issue-archive-runtime.js +89 -0
- package/dist/lib/issue-create-runtime.js +175 -0
- package/dist/lib/issue-get-runtime.js +153 -0
- package/dist/lib/issue-list-runtime.js +164 -0
- package/dist/lib/issue-purge-runtime.js +89 -0
- package/dist/lib/issue-search-runtime.js +114 -0
- package/dist/lib/issue-transition-runtime.js +131 -0
- package/dist/lib/issue-trash-runtime.js +84 -0
- package/dist/lib/issue-update-runtime.js +164 -0
- package/dist/lib/label-create-runtime.js +113 -0
- package/dist/lib/label-list-runtime.js +97 -0
- package/dist/lib/levenshtein.js +42 -0
- package/dist/lib/list-tools-runtime.js +38 -0
- package/dist/lib/me-runtime.js +55 -0
- package/dist/lib/project-create-runtime.js +103 -0
- package/dist/lib/project-get-runtime.js +134 -0
- package/dist/lib/project-list-runtime.js +84 -0
- package/dist/lib/project-update-runtime.js +110 -0
- package/dist/lib/project-update-status-runtime.js +91 -0
- package/dist/lib/raw-batch-runtime.js +229 -0
- package/dist/lib/raw-runtime.js +171 -0
- package/dist/lib/schema-loader.js +41 -0
- package/dist/lib/schema-runtime.js +65 -0
- package/dist/lib/state-list-runtime.js +93 -0
- package/dist/lib/team-get-runtime.js +55 -0
- package/dist/lib/team-list-runtime.js +52 -0
- package/dist/lib/workspace-runtime.js +112 -0
- package/dist/operations/_registry.zod.js +5337 -0
- package/oclif.manifest.json +3631 -0
- package/package.json +99 -0
- package/schema.graphql +30772 -0
- package/skills/linmux/SKILL.md +186 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "linmux",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "One CLI for Linear across all your workspaces — the full GraphQL surface (~500 ops), multiple workspaces in a single session, and stable versioned JSON built for AI agents. For Claude Code, Codex, Cursor, or any agent that can shell out.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Charlie Helman",
|
|
8
|
+
"homepage": "https://github.com/ChuckMayo/linear-multi-workspace-cli#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/ChuckMayo/linear-multi-workspace-cli.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ChuckMayo/linear-multi-workspace-cli/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"linmux",
|
|
18
|
+
"linear",
|
|
19
|
+
"linear-app",
|
|
20
|
+
"multi-workspace",
|
|
21
|
+
"workspace",
|
|
22
|
+
"cli",
|
|
23
|
+
"agent",
|
|
24
|
+
"agents",
|
|
25
|
+
"ai-agent",
|
|
26
|
+
"claude",
|
|
27
|
+
"claude-code",
|
|
28
|
+
"codex",
|
|
29
|
+
"gemini",
|
|
30
|
+
"cursor",
|
|
31
|
+
"graphql",
|
|
32
|
+
"issue-tracker"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=22"
|
|
36
|
+
},
|
|
37
|
+
"bin": {
|
|
38
|
+
"linmux": "./bin/run.js"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"bin",
|
|
42
|
+
"dist",
|
|
43
|
+
"schema.graphql",
|
|
44
|
+
"oclif.manifest.json",
|
|
45
|
+
"skills",
|
|
46
|
+
"README.md",
|
|
47
|
+
"LICENSE"
|
|
48
|
+
],
|
|
49
|
+
"main": "./dist/index.js",
|
|
50
|
+
"scripts": {
|
|
51
|
+
"lint": "biome check .",
|
|
52
|
+
"lint:fix": "biome check --write .",
|
|
53
|
+
"format": "biome format --write .",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"test:watch": "vitest",
|
|
57
|
+
"build": "tsdown",
|
|
58
|
+
"prepack": "npm run build && oclif manifest && node scripts/stamp-skill.mjs",
|
|
59
|
+
"postpack": "rm -f oclif.manifest.json skills/linmux/SKILL.md",
|
|
60
|
+
"codegen": "npm run build-operations && graphql-codegen",
|
|
61
|
+
"build-operations": "tsx codegen/build-operations.ts",
|
|
62
|
+
"fetch-schema": "tsx codegen/fetch-schema.ts",
|
|
63
|
+
"verify-pack": "node scripts/verify-pack.mjs",
|
|
64
|
+
"cold-start": "node scripts/measure-cold-start.mjs",
|
|
65
|
+
"release:dry-run": "npm run lint && npm run typecheck && npm run test && npm run build && node scripts/stamp-skill.mjs && node scripts/verify-pack.mjs && npm pack && node scripts/measure-cold-start.mjs",
|
|
66
|
+
"smoke:phase-2": "npm run build && node --env-file-if-exists=.env scripts/smoke-phase-2.mjs",
|
|
67
|
+
"smoke:phase-2:burst": "npm run build && node --env-file-if-exists=.env scripts/smoke-phase-2.mjs --burst",
|
|
68
|
+
"smoke:phase-2:keep": "npm run build && node --env-file-if-exists=.env scripts/smoke-phase-2.mjs --keep",
|
|
69
|
+
"smoke:phase-3": "npm run build && node --env-file-if-exists=.env scripts/smoke-phase-3.mjs",
|
|
70
|
+
"smoke:phase-3:keep": "npm run build && node --env-file-if-exists=.env scripts/smoke-phase-3.mjs --keep"
|
|
71
|
+
},
|
|
72
|
+
"oclif": {
|
|
73
|
+
"bin": "linmux",
|
|
74
|
+
"commands": "./dist/commands",
|
|
75
|
+
"topicSeparator": " "
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@graphql-typed-document-node/core": "^3.2.0",
|
|
79
|
+
"@linear/sdk": "^84.0.0",
|
|
80
|
+
"@oclif/core": "^4.11.3",
|
|
81
|
+
"conf": "^14.0.0",
|
|
82
|
+
"graphql": "^16.14.0",
|
|
83
|
+
"picocolors": "^1.1.0",
|
|
84
|
+
"zod": "^4.4.3"
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@biomejs/biome": "^2.4.0",
|
|
88
|
+
"@graphql-codegen/cli": "^7.0.0",
|
|
89
|
+
"@graphql-codegen/client-preset": "*",
|
|
90
|
+
"@types/js-yaml": "^4.0.9",
|
|
91
|
+
"@types/node": "^22.0.0",
|
|
92
|
+
"fast-check": "^4.7.0",
|
|
93
|
+
"oclif": "^4.23.0",
|
|
94
|
+
"tsdown": "*",
|
|
95
|
+
"tsx": "*",
|
|
96
|
+
"typescript": "^5.0.0",
|
|
97
|
+
"vitest": "^3.0.0"
|
|
98
|
+
}
|
|
99
|
+
}
|