Cli
Types
Types
LogLevel
Logging service for FlowState CLI Provides verbose logging capabilities with different log levels
type LogLevel = "debug" | "info" | "warn" | "error"
Environment
type Environment = "production" | "staging" | "development" | "local"
ProjectType
Type definitions for flowstate init command
type ProjectType = "nodejs" | "mcp" | "fullstack" | "generic"
TeamMemberAgentData
Agent data stored in TeamMember extended.agent This is the full AgentConfig structure - we preserve the original JSON structure exactly
type TeamMemberAgentData = AgentConfig
MappingType
type MappingType = "todos" | "markdown" | "files" | "commits"
MappingStatus
type MappingStatus = "active" | "orphaned" | "file_deleted"
Mapping
type Mapping = TodoMapping | MarkdownMapping | FileMapping | CommitMapping
MappingFile
type MappingFile = TodoMappingFile | MarkdownMappingFile | FileMappingFile | CommitMappingFile
TaskStatus
type TaskStatus = "To Do" | "In Progress" | "Complete" | "On Hold" | "Blocked"