@alwaysmeticulous/cli 2.322.0 → 2.324.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/dist/commands/agent/agent-review-writes.command.spec.d.ts +2 -0
- package/dist/commands/agent/agent-review-writes.command.spec.d.ts.map +1 -0
- package/dist/commands/agent/agent-review-writes.command.spec.js +96 -0
- package/dist/commands/agent/agent-review-writes.command.spec.js.map +1 -0
- package/dist/commands/agent/create-diff-comment.command.d.ts +13 -0
- package/dist/commands/agent/create-diff-comment.command.d.ts.map +1 -0
- package/dist/commands/agent/create-diff-comment.command.js +57 -0
- package/dist/commands/agent/create-diff-comment.command.js.map +1 -0
- package/dist/commands/agent/diff-comment-write.utils.d.ts +13 -0
- package/dist/commands/agent/diff-comment-write.utils.d.ts.map +1 -0
- package/dist/commands/agent/diff-comment-write.utils.js +19 -0
- package/dist/commands/agent/diff-comment-write.utils.js.map +1 -0
- package/dist/commands/agent/diff-comments.command.d.ts.map +1 -1
- package/dist/commands/agent/diff-comments.command.js +15 -4
- package/dist/commands/agent/diff-comments.command.js.map +1 -1
- package/dist/commands/agent/diff-comments.command.spec.js +29 -4
- package/dist/commands/agent/diff-comments.command.spec.js.map +1 -1
- package/dist/commands/agent/ignore-diff.command.d.ts +13 -0
- package/dist/commands/agent/ignore-diff.command.d.ts.map +1 -0
- package/dist/commands/agent/ignore-diff.command.js +54 -0
- package/dist/commands/agent/ignore-diff.command.js.map +1 -0
- package/dist/commands/agent/index.d.ts.map +1 -1
- package/dist/commands/agent/index.js +16 -6
- package/dist/commands/agent/index.js.map +1 -1
- package/dist/commands/agent/js-coverage.command.d.ts +2 -2
- package/dist/commands/agent/js-coverage.command.d.ts.map +1 -1
- package/dist/commands/agent/js-coverage.command.js +6 -5
- package/dist/commands/agent/js-coverage.command.js.map +1 -1
- package/dist/commands/agent/js-coverage.command.spec.js +7 -6
- package/dist/commands/agent/js-coverage.command.spec.js.map +1 -1
- package/dist/commands/agent/reject-diff.command.d.ts +13 -0
- package/dist/commands/agent/reject-diff.command.d.ts.map +1 -0
- package/dist/commands/agent/reject-diff.command.js +54 -0
- package/dist/commands/agent/reject-diff.command.js.map +1 -0
- package/dist/commands/agent/reject-diff.command.spec.d.ts +2 -0
- package/dist/commands/agent/reject-diff.command.spec.d.ts.map +1 -0
- package/dist/commands/agent/reject-diff.command.spec.js +61 -0
- package/dist/commands/agent/reject-diff.command.spec.js.map +1 -0
- package/dist/commands/agent/reply-to-diff-comment.command.d.ts +10 -0
- package/dist/commands/agent/reply-to-diff-comment.command.d.ts.map +1 -0
- package/dist/commands/agent/reply-to-diff-comment.command.js +47 -0
- package/dist/commands/agent/reply-to-diff-comment.command.js.map +1 -0
- package/dist/commands/agent/sessions.command.d.ts +3 -0
- package/dist/commands/agent/sessions.command.d.ts.map +1 -1
- package/dist/commands/agent/sessions.command.js +46 -5
- package/dist/commands/agent/sessions.command.js.map +1 -1
- package/dist/commands/agent/sessions.command.spec.js +30 -7
- package/dist/commands/agent/sessions.command.spec.js.map +1 -1
- package/dist/commands/agent/test-run-checks.command.d.ts +15 -0
- package/dist/commands/agent/test-run-checks.command.d.ts.map +1 -0
- package/dist/commands/agent/test-run-checks.command.js +121 -0
- package/dist/commands/agent/test-run-checks.command.js.map +1 -0
- package/dist/commands/agent/test-run-checks.command.spec.d.ts +2 -0
- package/dist/commands/agent/test-run-checks.command.spec.d.ts.map +1 -0
- package/dist/commands/agent/test-run-checks.command.spec.js +132 -0
- package/dist/commands/agent/test-run-checks.command.spec.js.map +1 -0
- package/dist/commands/agent/test-run-diffs.command.d.ts +1 -0
- package/dist/commands/agent/test-run-diffs.command.d.ts.map +1 -1
- package/dist/commands/agent/test-run-diffs.command.js +32 -40
- package/dist/commands/agent/test-run-diffs.command.js.map +1 -1
- package/dist/commands/agent/test-run-diffs.command.spec.js +114 -52
- package/dist/commands/agent/test-run-diffs.command.spec.js.map +1 -1
- package/dist/commands/agent/test-run-diffs.utils.d.ts +1 -2
- package/dist/commands/agent/test-run-diffs.utils.d.ts.map +1 -1
- package/dist/commands/agent/test-run-diffs.utils.js +6 -7
- package/dist/commands/agent/test-run-diffs.utils.js.map +1 -1
- package/dist/commands/agent/test-run-diffs.utils.spec.js +7 -10
- package/dist/commands/agent/test-run-diffs.utils.spec.js.map +1 -1
- package/dist/commands/agent/test-run-for-commit.command.d.ts.map +1 -1
- package/dist/commands/agent/test-run-for-commit.command.js +5 -4
- package/dist/commands/agent/test-run-for-commit.command.js.map +1 -1
- package/dist/commands/auth/__tests__/get-project.command.spec.js +48 -42
- package/dist/commands/auth/__tests__/get-project.command.spec.js.map +1 -1
- package/dist/commands/auth/__tests__/list-projects.command.spec.js +11 -10
- package/dist/commands/auth/__tests__/list-projects.command.spec.js.map +1 -1
- package/dist/commands/auth/__tests__/set-project.command.spec.js +6 -7
- package/dist/commands/auth/__tests__/set-project.command.spec.js.map +1 -1
- package/dist/commands/auth/__tests__/whoami.command.spec.js +77 -124
- package/dist/commands/auth/__tests__/whoami.command.spec.js.map +1 -1
- package/dist/commands/auth/get-project.command.d.ts +6 -2
- package/dist/commands/auth/get-project.command.d.ts.map +1 -1
- package/dist/commands/auth/get-project.command.js +25 -24
- package/dist/commands/auth/get-project.command.js.map +1 -1
- package/dist/commands/auth/list-projects.command.d.ts.map +1 -1
- package/dist/commands/auth/list-projects.command.js +4 -8
- package/dist/commands/auth/list-projects.command.js.map +1 -1
- package/dist/commands/auth/set-project.command.d.ts +1 -0
- package/dist/commands/auth/set-project.command.d.ts.map +1 -1
- package/dist/commands/auth/set-project.command.js +22 -9
- package/dist/commands/auth/set-project.command.js.map +1 -1
- package/dist/commands/auth/whoami.command.d.ts.map +1 -1
- package/dist/commands/auth/whoami.command.js +94 -87
- package/dist/commands/auth/whoami.command.js.map +1 -1
- package/dist/commands/ci/run-with-uploaded-asset-chunks.command.d.ts.map +1 -1
- package/dist/commands/ci/run-with-uploaded-asset-chunks.command.js +22 -14
- package/dist/commands/ci/run-with-uploaded-asset-chunks.command.js.map +1 -1
- package/dist/commands/ci/run.command.d.ts.map +1 -1
- package/dist/commands/ci/run.command.js +6 -4
- package/dist/commands/ci/run.command.js.map +1 -1
- package/dist/commands/record/__tests__/backend.command.spec.js +54 -4
- package/dist/commands/record/__tests__/backend.command.spec.js.map +1 -1
- package/dist/commands/record/backend.command.d.ts.map +1 -1
- package/dist/commands/record/backend.command.js +196 -100
- package/dist/commands/record/backend.command.js.map +1 -1
- package/dist/utils/__tests__/project-selection-hint.spec.d.ts +2 -0
- package/dist/utils/__tests__/project-selection-hint.spec.d.ts.map +1 -0
- package/dist/utils/__tests__/project-selection-hint.spec.js +73 -0
- package/dist/utils/__tests__/project-selection-hint.spec.js.map +1 -0
- package/dist/utils/__tests__/resolve-project-identifier.spec.js +2 -27
- package/dist/utils/__tests__/resolve-project-identifier.spec.js.map +1 -1
- package/dist/utils/__tests__/resolve-test-run-from-commit.spec.js +9 -2
- package/dist/utils/__tests__/resolve-test-run-from-commit.spec.js.map +1 -1
- package/dist/utils/__tests__/select-project.spec.js +23 -22
- package/dist/utils/__tests__/select-project.spec.js.map +1 -1
- package/dist/utils/handle-auth-failure.d.ts +27 -0
- package/dist/utils/handle-auth-failure.d.ts.map +1 -1
- package/dist/utils/handle-auth-failure.js +44 -3
- package/dist/utils/handle-auth-failure.js.map +1 -1
- package/dist/utils/project-selection-hint.d.ts +16 -0
- package/dist/utils/project-selection-hint.d.ts.map +1 -0
- package/dist/utils/project-selection-hint.js +82 -0
- package/dist/utils/project-selection-hint.js.map +1 -0
- package/dist/utils/resolve-project-identifier.d.ts +0 -13
- package/dist/utils/resolve-project-identifier.d.ts.map +1 -1
- package/dist/utils/resolve-project-identifier.js +3 -26
- package/dist/utils/resolve-project-identifier.js.map +1 -1
- package/dist/utils/resolve-test-run-from-commit.d.ts.map +1 -1
- package/dist/utils/resolve-test-run-from-commit.js +7 -3
- package/dist/utils/resolve-test-run-from-commit.js.map +1 -1
- package/dist/utils/select-project.d.ts +20 -4
- package/dist/utils/select-project.d.ts.map +1 -1
- package/dist/utils/select-project.js +39 -13
- package/dist/utils/select-project.js.map +1 -1
- package/package.json +14 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-project.d.ts","sourceRoot":"","sources":["../../src/utils/select-project.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"select-project.d.ts","sourceRoot":"","sources":["../../src/utils/select-project.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,oBAAoB,EACpB,gBAAgB,EAChB,2BAA2B,EAC3B,YAAY,EACb,MAAM,0BAA0B,CAAC;AAWlC;;;;;;;;GAQG;AACH,eAAO,MAAM,uBAAuB,WAC1B,gBAAgB,KACvB,OAAO,CAAC,YAAY,EAAE,CAQxB,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,WACtB,gBAAgB,KACvB,OAAO,CAAC,oBAAoB,EAAE,CAOhC,CAAC;AAgBF,0EAA0E;AAC1E,eAAO,MAAM,iBAAiB,YACnB,IAAI,CACX,2BAA2B,EAC3B,WAAW,GAAG,MAAM,GAAG,cAAc,CACtC,KACA,MAG4B,CAAC;AAEhC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,qBAAqB,iDAI/B;IACD,MAAM,EAAE,gBAAgB,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC,KAAG,OAAO,CAAC,eAAe,CA2C1B,CAAC;AAEF,2EAA2E;AAC3E,MAAM,WAAW,eAAe;IAC9B,kCAAkC;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACnB;AAmCD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,oBAAoB,sCAI9B;IACD,MAAM,EAAE,gBAAgB,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,WAAW,EAAE,OAAO,CAAC;CACtB,KAAG,OAAO,CAAC,IAAI,CA4Bf,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="456cd521-2cdb-5104-b2e8-902e6b789af2")}catch(e){}}();
|
|
3
3
|
|
|
4
4
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
6
6
|
};
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.selectProjectOnLogin = exports.selectAndStoreProject = exports.formatProjectSlug = exports.fetchAccessibleProjects = void 0;
|
|
8
|
+
exports.selectProjectOnLogin = exports.selectAndStoreProject = exports.formatProjectSlug = exports.listProjectsForUser = exports.fetchAccessibleProjects = void 0;
|
|
9
9
|
const client_1 = require("@alwaysmeticulous/client");
|
|
10
10
|
const common_1 = require("@alwaysmeticulous/common");
|
|
11
11
|
const inquirer_1 = __importDefault(require("inquirer"));
|
|
@@ -31,6 +31,23 @@ const fetchAccessibleProjects = async (client) => {
|
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
33
|
exports.fetchAccessibleProjects = fetchAccessibleProjects;
|
|
34
|
+
/**
|
|
35
|
+
* The `auth list-projects` operation itself, as opposed to the incidental
|
|
36
|
+
* listing {@link fetchAccessibleProjects} does for the interactive picker and
|
|
37
|
+
* its error messages. It goes through the agent endpoint so the two are
|
|
38
|
+
* distinguishable server-side — a counter that also fired for every picker
|
|
39
|
+
* render would not measure the command.
|
|
40
|
+
*/
|
|
41
|
+
const listProjectsForUser = async (client) => {
|
|
42
|
+
try {
|
|
43
|
+
return await (0, client_1.getAgentProjects)(client);
|
|
44
|
+
}
|
|
45
|
+
catch (error) {
|
|
46
|
+
(0, handle_auth_failure_1.handleAuthFailure)(error);
|
|
47
|
+
throw (0, handle_auth_failure_1.toServerMessageError)(error);
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
exports.listProjectsForUser = listProjectsForUser;
|
|
34
51
|
const compareProjectsBySlug = (a, b) => {
|
|
35
52
|
const orgComparison = a.organization.name.localeCompare(b.organization.name, undefined, {
|
|
36
53
|
sensitivity: "base",
|
|
@@ -47,8 +64,10 @@ const formatProjectSlug = (project) => project.organization && project.name
|
|
|
47
64
|
exports.formatProjectSlug = formatProjectSlug;
|
|
48
65
|
/**
|
|
49
66
|
* Picks a project and persists it as the caller's default (via the backend —
|
|
50
|
-
* see `
|
|
51
|
-
* MCP server). Shared by `auth login` and `auth set-project
|
|
67
|
+
* see `setAgentCurrentProject`, consistent across machines and visible to the
|
|
68
|
+
* MCP server). Shared by `auth login` and `auth set-project`: choosing a
|
|
69
|
+
* default at login is the same operation as choosing one later, so both count
|
|
70
|
+
* as one server-side.
|
|
52
71
|
*
|
|
53
72
|
* - When `project` is given, it's resolved by the backend, which accepts any of
|
|
54
73
|
* a bare id, an `organization/name` slug, or a unique bare name (see
|
|
@@ -71,15 +90,14 @@ const selectAndStoreProject = async ({ client, project, allowInteractivePrompt =
|
|
|
71
90
|
const trimmedProject = project.trim();
|
|
72
91
|
let stored;
|
|
73
92
|
try {
|
|
74
|
-
stored = await (0, client_1.
|
|
93
|
+
stored = await (0, client_1.setAgentCurrentProject)(client, trimmedProject);
|
|
75
94
|
}
|
|
76
95
|
catch (error) {
|
|
77
96
|
(0, handle_auth_failure_1.handleAuthFailure)(error);
|
|
78
97
|
throw await toProjectResolutionError(client, trimmedProject, error);
|
|
79
98
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
return projectSlug;
|
|
99
|
+
(0, common_1.logNotice)(`Selected project: ${stored.project}`);
|
|
100
|
+
return stored;
|
|
83
101
|
}
|
|
84
102
|
const projects = await (0, exports.fetchAccessibleProjects)(client);
|
|
85
103
|
if (projects.length === 0) {
|
|
@@ -98,18 +116,26 @@ const selectAndStoreProject = async ({ client, project, allowInteractivePrompt =
|
|
|
98
116
|
"terminal). Pass `--project` or run `meticulous auth set-project` to " +
|
|
99
117
|
"choose one.", 1, "warn");
|
|
100
118
|
}
|
|
101
|
-
const
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
return projectSlug;
|
|
119
|
+
const stored = await (0, client_1.setAgentCurrentProject)(client, selected.id);
|
|
120
|
+
(0, common_1.logNotice)(`Selected project: ${stored.project}`);
|
|
121
|
+
return stored;
|
|
105
122
|
};
|
|
106
123
|
exports.selectAndStoreProject = selectAndStoreProject;
|
|
107
124
|
/**
|
|
108
125
|
* Turns a failed explicit-project resolution into a helpful `CliUserError`: the
|
|
109
126
|
* backend's own message (not found / not accessible / ambiguous name) plus the
|
|
110
127
|
* list of accessible projects to pick from.
|
|
128
|
+
*
|
|
129
|
+
* Checked separately from that: a `404` because `PUT agent/project` itself
|
|
130
|
+
* doesn't exist yet (this CLI newer than the backend) would otherwise be
|
|
131
|
+
* misread as "project not found" — worse, with a list of "available projects"
|
|
132
|
+
* attached that makes the named project look like it's simply not among them.
|
|
111
133
|
*/
|
|
112
134
|
const toProjectResolutionError = async (client, identifier, error) => {
|
|
135
|
+
if ((0, handle_auth_failure_1.isRouteNotFoundError)(error)) {
|
|
136
|
+
return new cli_user_error_1.CliUserError("The backend doesn't support project selection yet (it may not have finished deploying " +
|
|
137
|
+
"this CLI's server-side counterpart). Try again shortly.");
|
|
138
|
+
}
|
|
113
139
|
const serverMessage = (0, client_1.isFetchError)(error)
|
|
114
140
|
? (0, handle_auth_failure_1.extractServerMessage)(error.response?.data)
|
|
115
141
|
: null;
|
|
@@ -179,4 +205,4 @@ const promptForProject = async (projects) => {
|
|
|
179
205
|
};
|
|
180
206
|
const formatProjectList = (projects) => projects.map((p) => ` - ${p.organization.name}/${p.name}`).join("\n");
|
|
181
207
|
//# sourceMappingURL=select-project.js.map
|
|
182
|
-
//# debugId=
|
|
208
|
+
//# debugId=456cd521-2cdb-5104-b2e8-902e6b789af2
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-project.js","sources":["../../src/utils/select-project.ts"],"sourceRoot":"","names":[],"mappings":";;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"select-project.js","sources":["../../src/utils/select-project.ts"],"sourceRoot":"","names":[],"mappings":"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","debugId":"456cd521-2cdb-5104-b2e8-902e6b789af2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.324.0",
|
|
4
4
|
"description": "The Meticulous CLI",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,22 +20,22 @@
|
|
|
20
20
|
"inquirer": "^8.2.7",
|
|
21
21
|
"ora": "^5.4.1",
|
|
22
22
|
"parse-diff": "^0.11.1",
|
|
23
|
-
"puppeteer-core": "24.
|
|
23
|
+
"puppeteer-core": "24.42.0",
|
|
24
24
|
"tar": "^7.5.19",
|
|
25
25
|
"yargs": "^17.5.1",
|
|
26
|
-
"@alwaysmeticulous/
|
|
27
|
-
"@alwaysmeticulous/
|
|
28
|
-
"@alwaysmeticulous/
|
|
29
|
-
"@alwaysmeticulous/
|
|
30
|
-
"@alwaysmeticulous/
|
|
26
|
+
"@alwaysmeticulous/api": "2.324.0",
|
|
27
|
+
"@alwaysmeticulous/client": "2.324.0",
|
|
28
|
+
"@alwaysmeticulous/common": "2.324.0",
|
|
29
|
+
"@alwaysmeticulous/downloading-helpers": "2.324.0",
|
|
30
|
+
"@alwaysmeticulous/debug-workspace": "2.324.0",
|
|
31
|
+
"@alwaysmeticulous/record": "2.324.0",
|
|
32
|
+
"@alwaysmeticulous/remote-replay-launcher": "2.324.0",
|
|
31
33
|
"@alwaysmeticulous/replay-debugger-ui": "2.283.1",
|
|
32
|
-
"@alwaysmeticulous/replay-orchestrator-launcher": "2.
|
|
33
|
-
"@alwaysmeticulous/
|
|
34
|
-
"@alwaysmeticulous/
|
|
35
|
-
"@alwaysmeticulous/
|
|
36
|
-
"@alwaysmeticulous/client": "2.
|
|
37
|
-
"@alwaysmeticulous/session-filters": "2.321.0",
|
|
38
|
-
"@alwaysmeticulous/sentry": "2.321.0"
|
|
34
|
+
"@alwaysmeticulous/replay-orchestrator-launcher": "2.324.0",
|
|
35
|
+
"@alwaysmeticulous/sdk-bundles-api": "2.324.0",
|
|
36
|
+
"@alwaysmeticulous/sentry": "2.324.0",
|
|
37
|
+
"@alwaysmeticulous/session-filters": "2.324.0",
|
|
38
|
+
"@alwaysmeticulous/tunnels-client": "2.324.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/cli-progress": "^3.11.5",
|