feat: scaffold CLI and minimal issue list (task 0001)

Tracer bullet for gitea-axi: runnable npm package on axi-sdk-js with
gitea-js as the sole HTTP layer, ESM on Node 20+.

- issue list with --state/--limit, default fields, count line from
  X-Total-Count, type=issues guard, explicit empty state, and next-step
  suggestions
- repo context detection from the git origin remote (SSH/scp/HTTPS),
  tea credential discovery with the three-way login-matching split, and
  -R/--repo and --login overrides (flag > env > auto)
- token retrieval via tea login helper get: tea's login list JSON
  carries no token (ADR 0001 amended)
- full AxiError classification table with path-based 404 split, TOON
  errors on stdout, exit codes 0/1/2
- test mode (GITEA_AXI_API_URL/TOKEN/REPO) suppressing subprocesses,
  fixture server, and vitest suites driving the CLI seam (50 tests)
This commit is contained in:
2026-07-11 07:11:07 -04:00
parent 21a075f8cd
commit 38026f963d
34 changed files with 3892 additions and 0 deletions

133
src/errors.ts Normal file
View File

@@ -0,0 +1,133 @@
import { AxiError } from "axi-sdk-js";
export type AxiErrorCode =
| "REPO_NOT_FOUND"
| "ISSUE_NOT_FOUND"
| "PR_NOT_FOUND"
| "AUTH_REQUIRED"
| "FORBIDDEN"
| "RATE_LIMITED"
| "TEA_NOT_INSTALLED"
| "VALIDATION_ERROR"
| "GIT_ERROR"
| "UNKNOWN";
export function axiError(
message: string,
code: AxiErrorCode,
suggestions: string[] = [],
): AxiError {
return new AxiError(message, code, suggestions);
}
interface HttpResponseLike {
status: number;
url: string;
error: unknown;
}
function isHttpResponseLike(value: unknown): value is HttpResponseLike {
return (
typeof value === "object" &&
value !== null &&
typeof (value as HttpResponseLike).status === "number" &&
typeof (value as HttpResponseLike).url === "string"
);
}
function bodyMessage(response: HttpResponseLike): string | undefined {
const error = response.error;
if (typeof error === "object" && error !== null) {
const message = (error as { message?: unknown }).message;
if (typeof message === "string" && message.length > 0) {
return message;
}
}
return undefined;
}
function pathname(url: string): string {
try {
return new URL(url).pathname;
} catch {
return url;
}
}
const ISSUE_PATH = /\/repos\/[^/]+\/[^/]+\/issues\/(\d+)(?:\/|$)/;
const PULL_PATH = /\/repos\/[^/]+\/[^/]+\/pulls\/(\d+)(?:\/|$)/;
const REPO_PATH = /\/repos\/([^/]+)\/([^/]+)(?:\/|$)/;
function classify404(response: HttpResponseLike): AxiError {
const path = pathname(response.url);
const issue = ISSUE_PATH.exec(path);
if (issue) {
return axiError(`Issue #${issue[1]} not found`, "ISSUE_NOT_FOUND", [
"Run `gitea-axi issue list` to see existing issues",
]);
}
const pull = PULL_PATH.exec(path);
if (pull) {
return axiError(`Pull request #${pull[1]} not found`, "PR_NOT_FOUND");
}
// Gitea returns 404 for every path under a nonexistent repository, so any
// repo-subtree 404 that is not an indexed issue/pull lookup means the
// repository itself was not found.
const repo = REPO_PATH.exec(path);
if (repo) {
return axiError(
`Repository ${repo[1]}/${repo[2]} not found`,
"REPO_NOT_FOUND",
[
"Check the repository owner and name",
"Pass `-R OWNER/NAME` to target a different repository",
],
);
}
return axiError(`Not found: ${path}`, "UNKNOWN");
}
export function classifyHttpError(error: unknown): AxiError {
if (error instanceof AxiError) {
return error;
}
if (!isHttpResponseLike(error)) {
const message = error instanceof Error ? error.message : String(error);
const cause =
error instanceof Error && error.cause instanceof Error
? ` (${error.cause.message})`
: "";
return axiError(`Request failed: ${message}${cause}`, "UNKNOWN");
}
const detail = bodyMessage(error);
switch (error.status) {
case 401:
return axiError(detail ?? "Authentication required", "AUTH_REQUIRED", [
"Run `tea login add` to configure credentials, or verify the token is still valid",
]);
case 403:
return axiError(detail ?? "Access forbidden", "FORBIDDEN", [
"Verify the token has permission to access this repository",
]);
case 404:
return classify404(error);
case 405:
case 409:
case 422:
return axiError(
detail ?? `Validation failed (HTTP ${error.status})`,
"VALIDATION_ERROR",
);
case 429:
return axiError(detail ?? "Rate limited", "RATE_LIMITED", [
"Wait and retry, or reduce `--limit` to make smaller requests",
]);
default:
return axiError(
detail
? `Gitea API error (HTTP ${error.status}): ${detail}`
: `Gitea API error (HTTP ${error.status})`,
"UNKNOWN",
);
}
}