@entro314labs/at3-toolkit
Version:
Advanced development toolkit for AT3 Stack projects
32 lines (31 loc) • 1.04 kB
TypeScript
/**
* Integration utilities for at3-toolkit
* Enables smart detection and suggestions for other AT3 tools
*/
import type { ProjectInfo } from "../types/migration.js";
export interface AT3Config {
version: string;
created: string;
template?: string;
features: string[];
toolsUsed: string[];
suggestedWorkflows?: string[];
lastMigration?: string;
lastToolkitRun?: string;
}
/**
* Update AT3 configuration after toolkit operations
*/
export declare function updateAT3Config(projectPath: string, operation: string): AT3Config;
/**
* Detect if project was created with AT3 tools
*/
export declare function detectAT3Project(projectPath: string): AT3Config | null;
/**
* Suggest complementary AT3 tools based on project analysis
*/
export declare function suggestAT3Tools(projectInfo: ProjectInfo): string[];
/**
* Get workflow recommendations based on project state and toolkit operations
*/
export declare function getWorkflowRecommendations(projectInfo: ProjectInfo, operation: string): string[];