Public Access
1d87be7d5e
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
- Update REPO: from MokoStandards-API to moko-platform in 125 files - Fix wrong org path (mokoconsulting-tech → MokoConsulting) in 10 files - Fix SPDX-LICENSE-IDENTIFIER case in 2 template files - Add missing REPO: field to 3 files Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
837 B
TypeScript
31 lines
837 B
TypeScript
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* This file is part of a Moko Consulting project.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: mokostandards-mcp.Types
|
|
* INGROUP: MokoStandards-API
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
* PATH: /mcp/src/types.ts
|
|
* BRIEF: TypeScript type definitions for MokoStandards MCP server
|
|
*/
|
|
|
|
export interface StandardsConfig {
|
|
/** Path to MokoStandards-API root (contains cli/, validate/, definitions/) */
|
|
apiPath: string;
|
|
/** Path to MokoStandards root (contains docs/) */
|
|
standardsPath?: string;
|
|
/** Gitea API base URL */
|
|
giteaUrl?: string;
|
|
/** Gitea API token (for repo queries) */
|
|
giteaToken?: string;
|
|
}
|
|
|
|
export interface ExecResult {
|
|
stdout: string;
|
|
stderr: string;
|
|
exitCode: number;
|
|
}
|