claudes-office
Version:
CLI tool to initialize Claude's office in your project
43 lines • 1.43 kB
JavaScript
"use strict";
/**
* Type definitions for command options and configurations
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.MeetingType = exports.ProjectType = void 0;
/**
* Available project types
*/
var ProjectType;
(function (ProjectType) {
/** Frontend web development */
ProjectType["FRONTEND"] = "frontend";
/** Backend/server-side development */
ProjectType["BACKEND"] = "backend";
/** Combined frontend and backend */
ProjectType["FULLSTACK"] = "fullstack";
/** Mobile application development */
ProjectType["MOBILE"] = "mobile";
/** Data science and analytics */
ProjectType["DATA"] = "data";
})(ProjectType || (exports.ProjectType = ProjectType = {}));
/**
* Meeting types
*/
var MeetingType;
(function (MeetingType) {
/** Brainstorming session */
MeetingType["BRAINSTORM"] = "brainstorm";
/** Project planning */
MeetingType["PLANNING"] = "planning";
/** Daily/weekly standup */
MeetingType["STANDUP"] = "standup";
/** Project retrospective */
MeetingType["RETROSPECTIVE"] = "retrospective";
/** Decision-making meeting */
MeetingType["DECISION"] = "decision";
/** Requirements gathering */
MeetingType["REQUIREMENTS"] = "requirements";
/** Custom meeting type */
MeetingType["CUSTOM"] = "custom";
})(MeetingType || (exports.MeetingType = MeetingType = {}));
//# sourceMappingURL=commands.js.map