├── .editorconfig ├── .github └── workflows │ ├── build-binaries.yml │ ├── publish.yml │ └── publish_docs.yml ├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── bin └── codemachine.js ├── bun.lock ├── bunfig.toml ├── config ├── main.agents.js ├── modules.js ├── package.json ├── placeholders.js └── sub.agents.js ├── docs ├── architecture.md ├── assets │ ├── banner.jpg │ ├── demo.gif │ ├── demo.legacy.v1.gif │ ├── demo.legacy.v2.gif │ ├── discord-badge.png │ ├── logo.png │ └── reddit-badge.png ├── case-studies │ └── sustaina.md ├── cli-reference.md ├── customizing-workflows.md ├── images │ ├── arch-dynamic-agents.png │ ├── arch-workflow.png │ ├── comm-evaluation.png │ ├── comm-multi-coordination.png │ ├── comm-parent-child.png │ ├── comm-sequential.png │ ├── mem-file-based.png │ └── mem-session.png ├── index.md └── specification-schema.md ├── eslint.config.js ├── mkdocs.yml ├── package.json ├── prompts └── templates │ ├── codemachine │ ├── agents │ │ ├── 01-architecture-agent.md │ │ ├── 02-planning-agent.md │ │ ├── 03-task-breakdown-agent.md │ │ ├── 04-context-manager-agent.md │ │ ├── 05-code-generation-agent.md │ │ ├── 06-task-validation-agent.md │ │ └── 07-runtime-preparation-agent.md │ ├── fallback-agents │ │ └── planning-fallback.md │ ├── output-formats │ │ ├── architecture-output.md │ │ ├── context-output.md │ │ ├── planning-output.md │ │ └── task-validation-output.md │ └── workflows │ │ ├── cleanup-code-fallback-workflow.md │ │ ├── git-commit-workflow.md │ │ ├── iteration-verification-workflow.md │ │ └── task-verification-workflow.md │ ├── dev-codemachine │ ├── main-agents │ │ ├── 00-init.md │ │ ├── 01-principal-analyst.md │ │ ├── 02-specifications-indexer.md │ │ └── 04-blueprint-orchestrator.md │ └── sub-agents │ │ ├── architecture │ │ ├── 01-founder-architect.md │ │ ├── 02-structural-data-architect.md │ │ ├── 03-behavior-architect.md │ │ ├── 04-operational-architect.md │ │ ├── 05-ui-ux-architect.md │ │ └── 06-file-assembler.md │ │ └── shared-instructions │ │ ├── atomic-generation.md │ │ ├── command-constraints.md │ │ └── smart-anchor.md │ └── test-workflows │ ├── auto-loop.md │ ├── test-agent-1.md │ ├── test-agent-2.md │ └── test-agent-3.md ├── pyproject.toml ├── scripts ├── build-binaries.mjs ├── publish.mjs ├── publish.ts └── validate.mjs ├── src ├── agents │ ├── coordinator │ │ ├── execution.ts │ │ ├── index.ts │ │ ├── parser.ts │ │ ├── service.ts │ │ └── types.ts │ ├── index.ts │ ├── memory │ │ └── memory-store.ts │ ├── monitoring │ │ ├── cleanup.ts │ │ ├── converters.ts │ │ ├── db │ │ │ ├── connection.ts │ │ │ ├── repository.ts │ │ │ └── schema.ts │ │ ├── index.ts │ │ ├── logLock.ts │ │ ├── logger.ts │ │ ├── monitor.ts │ │ ├── registry.ts │ │ └── types.ts │ └── runner │ │ ├── config.ts │ │ ├── index.ts │ │ └── runner.ts ├── cli │ ├── commands │ │ ├── agents │ │ │ ├── export.ts │ │ │ ├── index.ts │ │ │ ├── list.ts │ │ │ ├── logs.ts │ │ │ └── register.ts │ │ ├── auth.command.ts │ │ ├── index.ts │ │ ├── run.command.ts │ │ ├── start.command.ts │ │ ├── step.command.ts │ │ └── templates.command.ts │ ├── index.ts │ ├── program.ts │ ├── tui │ │ ├── app.tsx │ │ ├── component │ │ │ ├── fade-in.tsx │ │ │ ├── help-row.tsx │ │ │ ├── layout │ │ │ │ └── branding-header.tsx │ │ │ ├── logo.tsx │ │ │ ├── prompt │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ └── select-menu │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ ├── context │ │ │ ├── dialog.tsx │ │ │ ├── helper.tsx │ │ │ ├── kv.tsx │ │ │ ├── session.tsx │ │ │ ├── theme.tsx │ │ │ ├── theme │ │ │ │ └── codemachine.json │ │ │ ├── toast.tsx │ │ │ ├── ui-state.tsx │ │ │ └── update-notifier.tsx │ │ ├── launcher.ts │ │ ├── routes │ │ │ ├── home.tsx │ │ │ └── workflow.tsx │ │ ├── state │ │ │ ├── formatters.ts │ │ │ ├── navigation.ts │ │ │ ├── output.ts │ │ │ ├── performance.ts │ │ │ ├── telemetry.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── ui │ │ │ ├── dialog-wrapper.tsx │ │ │ └── toast.tsx │ │ └── utils │ │ │ └── tui-logger.ts │ └── utils │ │ └── selection-menu.ts ├── config │ ├── index.ts │ └── schema │ │ └── environment.schema.ts ├── infra │ ├── engines │ │ ├── core │ │ │ ├── base.ts │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ ├── registry.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ └── providers │ │ │ ├── auggie │ │ │ ├── auth.ts │ │ │ ├── config.ts │ │ │ ├── execution │ │ │ │ ├── commands.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── index.ts │ │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ │ │ ├── ccr │ │ │ ├── auth.ts │ │ │ ├── execution │ │ │ │ ├── commands.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── index.ts │ │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ │ │ ├── claude │ │ │ ├── auth.ts │ │ │ ├── config.ts │ │ │ ├── execution │ │ │ │ ├── commands.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── index.ts │ │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ │ │ ├── codex │ │ │ ├── auth.ts │ │ │ ├── execution │ │ │ │ ├── commands.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── index.ts │ │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ │ │ ├── cursor │ │ │ ├── auth.ts │ │ │ ├── config.ts │ │ │ ├── execution │ │ │ │ ├── commands.ts │ │ │ │ ├── executor.ts │ │ │ │ ├── index.ts │ │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ │ │ └── opencode │ │ │ ├── auth.ts │ │ │ ├── config.ts │ │ │ ├── execution │ │ │ ├── commands.ts │ │ │ ├── executor.ts │ │ │ ├── index.ts │ │ │ └── runner.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── telemetryParser.ts │ ├── fs │ │ └── memory-adapter.ts │ └── process │ │ └── spawn.ts ├── runtime │ ├── cli-setup.ts │ ├── index.ts │ ├── services │ │ ├── index.ts │ │ ├── validation.ts │ │ └── workspace │ │ │ ├── discovery.ts │ │ │ ├── fs-utils.ts │ │ │ ├── index.ts │ │ │ └── init.ts │ └── version.ts ├── shared │ ├── agents │ │ ├── config │ │ │ ├── paths.ts │ │ │ └── types.ts │ │ ├── discovery │ │ │ ├── catalog.ts │ │ │ └── steps.ts │ │ └── index.ts │ ├── formatters │ │ ├── logFileFormatter.ts │ │ └── outputMarkers.ts │ ├── logging │ │ ├── agent-loggers.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ └── spinner-logger.ts │ ├── prompts │ │ ├── config │ │ │ ├── index.ts │ │ │ ├── loader.ts │ │ │ └── types.ts │ │ ├── content │ │ │ ├── glob.ts │ │ │ ├── index.ts │ │ │ └── loader.ts │ │ ├── index.ts │ │ └── replacement │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ ├── parser.ts │ │ │ └── processor.ts │ ├── runtime │ │ ├── embed.ts │ │ ├── pkg.ts │ │ └── root.ts │ ├── telemetry │ │ ├── capture.ts │ │ ├── index.ts │ │ └── logger.ts │ ├── utils │ │ ├── index.ts │ │ ├── path.ts │ │ ├── resolve-workflow-binary.ts │ │ └── terminal.ts │ └── workflows │ │ ├── index.ts │ │ ├── steps.ts │ │ └── template.ts ├── ui │ ├── components │ │ ├── AgentTimeline.tsx │ │ ├── BrandingHeader.tsx │ │ ├── CheckpointModal.tsx │ │ ├── HistoryView.tsx │ │ ├── LogViewer.tsx │ │ ├── LoopIndicator.tsx │ │ ├── MainAgentNode.tsx │ │ ├── OutputWindow.tsx │ │ ├── ShimmerText.tsx │ │ ├── StatusFooter.tsx │ │ ├── SubAgentList.tsx │ │ ├── SubAgentSummary.tsx │ │ ├── TelemetryBar.tsx │ │ ├── TriggeredAgentList.tsx │ │ ├── UIElementNode.tsx │ │ └── WorkflowDashboard.tsx │ ├── contexts │ │ └── SpinnerContext.tsx │ ├── hooks │ │ ├── useCtrlCHandler.ts │ │ ├── useLogStream.ts │ │ ├── useRegistrySync.ts │ │ └── useTerminalResize.ts │ ├── index.ts │ ├── manager │ │ └── WorkflowUIManager.ts │ ├── state │ │ ├── WorkflowUIState.ts │ │ ├── stateMutations.ts │ │ └── types.ts │ └── utils │ │ ├── agentSelection.ts │ │ ├── calculateDuration.ts │ │ ├── formatters.ts │ │ ├── frameScheduler.ts │ │ ├── heightCalculations.ts │ │ ├── lineSyntaxHighlight.tsx │ │ ├── logReader.ts │ │ ├── navigation.ts │ │ ├── outputProcessor.ts │ │ ├── performance.ts │ │ ├── statusIcons.ts │ │ └── telemetryParser.ts └── workflows │ ├── behaviors │ ├── checkpoint │ │ ├── controller.ts │ │ └── evaluator.ts │ ├── index.ts │ ├── loop │ │ ├── controller.ts │ │ └── evaluator.ts │ ├── skip.ts │ ├── trigger │ │ ├── controller.ts │ │ └── evaluator.ts │ └── types.ts │ ├── execution │ ├── fallback.ts │ ├── index.ts │ ├── queue.ts │ ├── step.ts │ ├── trigger.ts │ └── workflow.ts │ ├── index.ts │ ├── runner-process.ts │ ├── templates │ ├── globals.ts │ ├── index.ts │ ├── loader.ts │ ├── types.ts │ └── validator.ts │ └── utils │ ├── config.ts │ ├── index.ts │ ├── resolvers │ ├── folder.ts │ ├── module.ts │ ├── step.ts │ └── ui.ts │ └── types.ts ├── templates └── workflows │ ├── _example.dev.workflow.js │ ├── _example.test.workflow.js │ ├── _example.workflow.js │ └── codemachine.workflow.js ├── tests ├── e2e │ └── start-cli.spec.ts ├── fixtures │ ├── codex │ │ ├── auth.json │ │ └── mock-response.json │ ├── stdin-echo.js │ └── tasks │ │ └── planning.json ├── integration │ └── workflows │ │ └── planning-workflow.spec.ts ├── setup.ts ├── tsconfig.json ├── ui │ ├── e2e │ │ └── full-workflow.test.ts │ ├── fixtures │ │ ├── claude-output.txt │ │ ├── codex-output.txt │ │ └── cursor-output.txt │ ├── integration │ │ ├── edge-cases.test.ts │ │ └── workflow-ui-manager.test.ts │ └── unit │ │ ├── BrandingHeader.test.tsx │ │ ├── LoopIndicator.test.tsx │ │ ├── MainAgentNode.test.tsx │ │ ├── StatusFooter.test.tsx │ │ ├── SubAgentList.test.tsx │ │ ├── SubAgentSummary.test.tsx │ │ ├── TelemetryBar.test.tsx │ │ ├── TriggeredAgentList.test.tsx │ │ ├── WorkflowUIState.test.ts │ │ ├── formatters.test.ts │ │ ├── heightCalculations.test.ts │ │ ├── outputProcessor.test.ts │ │ ├── performance.test.ts │ │ ├── statusIcons.test.ts │ │ ├── telemetryParser.test.ts │ │ ├── types.test.ts │ │ └── useTerminalResize.test.tsx └── unit │ ├── agents │ └── memory-store.spec.ts │ ├── cli │ └── register-cli.spec.ts │ ├── infra │ ├── auggie-registry.spec.ts │ ├── ccr-command-builder.spec.ts │ ├── ccr-executor.spec.ts │ ├── ccr-registry.spec.ts │ ├── engine-runner.spec.ts │ └── process │ │ └── spawn.spec.ts │ ├── runtime │ └── workspace-init.spec.ts │ └── workflows │ ├── fallback.test.ts │ ├── module-behavior.test.ts │ └── steps.spec.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/README.md -------------------------------------------------------------------------------- /bin/codemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/bin/codemachine.js -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/bunfig.toml -------------------------------------------------------------------------------- /config/main.agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/config/main.agents.js -------------------------------------------------------------------------------- /config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/config/modules.js -------------------------------------------------------------------------------- /config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /config/placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/config/placeholders.js -------------------------------------------------------------------------------- /config/sub.agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/config/sub.agents.js -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/assets/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/banner.jpg -------------------------------------------------------------------------------- /docs/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/demo.gif -------------------------------------------------------------------------------- /docs/assets/demo.legacy.v1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/demo.legacy.v1.gif -------------------------------------------------------------------------------- /docs/assets/demo.legacy.v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/demo.legacy.v2.gif -------------------------------------------------------------------------------- /docs/assets/discord-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/discord-badge.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/reddit-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/assets/reddit-badge.png -------------------------------------------------------------------------------- /docs/case-studies/sustaina.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/case-studies/sustaina.md -------------------------------------------------------------------------------- /docs/cli-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/cli-reference.md -------------------------------------------------------------------------------- /docs/customizing-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/customizing-workflows.md -------------------------------------------------------------------------------- /docs/images/arch-dynamic-agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/arch-dynamic-agents.png -------------------------------------------------------------------------------- /docs/images/arch-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/arch-workflow.png -------------------------------------------------------------------------------- /docs/images/comm-evaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/comm-evaluation.png -------------------------------------------------------------------------------- /docs/images/comm-multi-coordination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/comm-multi-coordination.png -------------------------------------------------------------------------------- /docs/images/comm-parent-child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/comm-parent-child.png -------------------------------------------------------------------------------- /docs/images/comm-sequential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/comm-sequential.png -------------------------------------------------------------------------------- /docs/images/mem-file-based.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/mem-file-based.png -------------------------------------------------------------------------------- /docs/images/mem-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/images/mem-session.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/specification-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/docs/specification-schema.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/eslint.config.js -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/package.json -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/01-architecture-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/01-architecture-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/02-planning-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/02-planning-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/03-task-breakdown-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/03-task-breakdown-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/04-context-manager-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/04-context-manager-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/05-code-generation-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/05-code-generation-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/06-task-validation-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/06-task-validation-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/agents/07-runtime-preparation-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/agents/07-runtime-preparation-agent.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/fallback-agents/planning-fallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/fallback-agents/planning-fallback.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/output-formats/architecture-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/output-formats/architecture-output.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/output-formats/context-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/output-formats/context-output.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/output-formats/planning-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/output-formats/planning-output.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/output-formats/task-validation-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/output-formats/task-validation-output.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/workflows/cleanup-code-fallback-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/workflows/cleanup-code-fallback-workflow.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/workflows/git-commit-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/workflows/git-commit-workflow.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/workflows/iteration-verification-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/workflows/iteration-verification-workflow.md -------------------------------------------------------------------------------- /prompts/templates/codemachine/workflows/task-verification-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/codemachine/workflows/task-verification-workflow.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/main-agents/00-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/main-agents/00-init.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/main-agents/01-principal-analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/main-agents/01-principal-analyst.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/main-agents/02-specifications-indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/main-agents/02-specifications-indexer.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/main-agents/04-blueprint-orchestrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/main-agents/04-blueprint-orchestrator.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/01-founder-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/01-founder-architect.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/02-structural-data-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/02-structural-data-architect.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/03-behavior-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/03-behavior-architect.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/04-operational-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/04-operational-architect.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/05-ui-ux-architect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/05-ui-ux-architect.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/architecture/06-file-assembler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/architecture/06-file-assembler.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/shared-instructions/atomic-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/shared-instructions/atomic-generation.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/shared-instructions/command-constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/shared-instructions/command-constraints.md -------------------------------------------------------------------------------- /prompts/templates/dev-codemachine/sub-agents/shared-instructions/smart-anchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/dev-codemachine/sub-agents/shared-instructions/smart-anchor.md -------------------------------------------------------------------------------- /prompts/templates/test-workflows/auto-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/test-workflows/auto-loop.md -------------------------------------------------------------------------------- /prompts/templates/test-workflows/test-agent-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/test-workflows/test-agent-1.md -------------------------------------------------------------------------------- /prompts/templates/test-workflows/test-agent-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/test-workflows/test-agent-2.md -------------------------------------------------------------------------------- /prompts/templates/test-workflows/test-agent-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/prompts/templates/test-workflows/test-agent-3.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/build-binaries.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/scripts/build-binaries.mjs -------------------------------------------------------------------------------- /scripts/publish.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/scripts/publish.mjs -------------------------------------------------------------------------------- /scripts/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/scripts/publish.ts -------------------------------------------------------------------------------- /scripts/validate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/scripts/validate.mjs -------------------------------------------------------------------------------- /src/agents/coordinator/execution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/coordinator/execution.ts -------------------------------------------------------------------------------- /src/agents/coordinator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/coordinator/index.ts -------------------------------------------------------------------------------- /src/agents/coordinator/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/coordinator/parser.ts -------------------------------------------------------------------------------- /src/agents/coordinator/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/coordinator/service.ts -------------------------------------------------------------------------------- /src/agents/coordinator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/coordinator/types.ts -------------------------------------------------------------------------------- /src/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/index.ts -------------------------------------------------------------------------------- /src/agents/memory/memory-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/memory/memory-store.ts -------------------------------------------------------------------------------- /src/agents/monitoring/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/cleanup.ts -------------------------------------------------------------------------------- /src/agents/monitoring/converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/converters.ts -------------------------------------------------------------------------------- /src/agents/monitoring/db/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/db/connection.ts -------------------------------------------------------------------------------- /src/agents/monitoring/db/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/db/repository.ts -------------------------------------------------------------------------------- /src/agents/monitoring/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/db/schema.ts -------------------------------------------------------------------------------- /src/agents/monitoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/index.ts -------------------------------------------------------------------------------- /src/agents/monitoring/logLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/logLock.ts -------------------------------------------------------------------------------- /src/agents/monitoring/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/logger.ts -------------------------------------------------------------------------------- /src/agents/monitoring/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/monitor.ts -------------------------------------------------------------------------------- /src/agents/monitoring/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/registry.ts -------------------------------------------------------------------------------- /src/agents/monitoring/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/monitoring/types.ts -------------------------------------------------------------------------------- /src/agents/runner/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/runner/config.ts -------------------------------------------------------------------------------- /src/agents/runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/runner/index.ts -------------------------------------------------------------------------------- /src/agents/runner/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/agents/runner/runner.ts -------------------------------------------------------------------------------- /src/cli/commands/agents/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/agents/export.ts -------------------------------------------------------------------------------- /src/cli/commands/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/agents/index.ts -------------------------------------------------------------------------------- /src/cli/commands/agents/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/agents/list.ts -------------------------------------------------------------------------------- /src/cli/commands/agents/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/agents/logs.ts -------------------------------------------------------------------------------- /src/cli/commands/agents/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/agents/register.ts -------------------------------------------------------------------------------- /src/cli/commands/auth.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/auth.command.ts -------------------------------------------------------------------------------- /src/cli/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/index.ts -------------------------------------------------------------------------------- /src/cli/commands/run.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/run.command.ts -------------------------------------------------------------------------------- /src/cli/commands/start.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/start.command.ts -------------------------------------------------------------------------------- /src/cli/commands/step.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/step.command.ts -------------------------------------------------------------------------------- /src/cli/commands/templates.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/commands/templates.command.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/program.ts -------------------------------------------------------------------------------- /src/cli/tui/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/app.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/fade-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/fade-in.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/help-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/help-row.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/layout/branding-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/layout/branding-header.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/logo.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/prompt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/prompt/index.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/prompt/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/prompt/types.ts -------------------------------------------------------------------------------- /src/cli/tui/component/select-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/select-menu/index.tsx -------------------------------------------------------------------------------- /src/cli/tui/component/select-menu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/component/select-menu/types.ts -------------------------------------------------------------------------------- /src/cli/tui/context/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/dialog.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/helper.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/kv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/kv.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/session.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/theme.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/theme/codemachine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/theme/codemachine.json -------------------------------------------------------------------------------- /src/cli/tui/context/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/toast.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/ui-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/ui-state.tsx -------------------------------------------------------------------------------- /src/cli/tui/context/update-notifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/context/update-notifier.tsx -------------------------------------------------------------------------------- /src/cli/tui/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/launcher.ts -------------------------------------------------------------------------------- /src/cli/tui/routes/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/routes/home.tsx -------------------------------------------------------------------------------- /src/cli/tui/routes/workflow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/routes/workflow.tsx -------------------------------------------------------------------------------- /src/cli/tui/state/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/formatters.ts -------------------------------------------------------------------------------- /src/cli/tui/state/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/navigation.ts -------------------------------------------------------------------------------- /src/cli/tui/state/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/output.ts -------------------------------------------------------------------------------- /src/cli/tui/state/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/performance.ts -------------------------------------------------------------------------------- /src/cli/tui/state/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/telemetry.ts -------------------------------------------------------------------------------- /src/cli/tui/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/types.ts -------------------------------------------------------------------------------- /src/cli/tui/state/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/state/utils.ts -------------------------------------------------------------------------------- /src/cli/tui/ui/dialog-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/ui/dialog-wrapper.tsx -------------------------------------------------------------------------------- /src/cli/tui/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/ui/toast.tsx -------------------------------------------------------------------------------- /src/cli/tui/utils/tui-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/tui/utils/tui-logger.ts -------------------------------------------------------------------------------- /src/cli/utils/selection-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/cli/utils/selection-menu.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/schema/environment.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/config/schema/environment.schema.ts -------------------------------------------------------------------------------- /src/infra/engines/core/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/core/base.ts -------------------------------------------------------------------------------- /src/infra/engines/core/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/core/factory.ts -------------------------------------------------------------------------------- /src/infra/engines/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/core/index.ts -------------------------------------------------------------------------------- /src/infra/engines/core/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/core/registry.ts -------------------------------------------------------------------------------- /src/infra/engines/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/core/types.ts -------------------------------------------------------------------------------- /src/infra/engines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/config.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/auggie/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/auggie/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/ccr/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/ccr/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/config.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/claude/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/claude/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/codex/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/codex/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/config.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/cursor/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/cursor/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/auth.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/config.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/execution/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/execution/commands.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/execution/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/execution/executor.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/execution/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/execution/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/execution/runner.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/index.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/metadata.ts -------------------------------------------------------------------------------- /src/infra/engines/providers/opencode/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/engines/providers/opencode/telemetryParser.ts -------------------------------------------------------------------------------- /src/infra/fs/memory-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/fs/memory-adapter.ts -------------------------------------------------------------------------------- /src/infra/process/spawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/infra/process/spawn.ts -------------------------------------------------------------------------------- /src/runtime/cli-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/cli-setup.ts -------------------------------------------------------------------------------- /src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/index.ts -------------------------------------------------------------------------------- /src/runtime/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/index.ts -------------------------------------------------------------------------------- /src/runtime/services/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/validation.ts -------------------------------------------------------------------------------- /src/runtime/services/workspace/discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/workspace/discovery.ts -------------------------------------------------------------------------------- /src/runtime/services/workspace/fs-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/workspace/fs-utils.ts -------------------------------------------------------------------------------- /src/runtime/services/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/workspace/index.ts -------------------------------------------------------------------------------- /src/runtime/services/workspace/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/services/workspace/init.ts -------------------------------------------------------------------------------- /src/runtime/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/runtime/version.ts -------------------------------------------------------------------------------- /src/shared/agents/config/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/agents/config/paths.ts -------------------------------------------------------------------------------- /src/shared/agents/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/agents/config/types.ts -------------------------------------------------------------------------------- /src/shared/agents/discovery/catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/agents/discovery/catalog.ts -------------------------------------------------------------------------------- /src/shared/agents/discovery/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/agents/discovery/steps.ts -------------------------------------------------------------------------------- /src/shared/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/agents/index.ts -------------------------------------------------------------------------------- /src/shared/formatters/logFileFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/formatters/logFileFormatter.ts -------------------------------------------------------------------------------- /src/shared/formatters/outputMarkers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/formatters/outputMarkers.ts -------------------------------------------------------------------------------- /src/shared/logging/agent-loggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/logging/agent-loggers.ts -------------------------------------------------------------------------------- /src/shared/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/logging/index.ts -------------------------------------------------------------------------------- /src/shared/logging/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/logging/logger.ts -------------------------------------------------------------------------------- /src/shared/logging/spinner-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/logging/spinner-logger.ts -------------------------------------------------------------------------------- /src/shared/prompts/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/config/index.ts -------------------------------------------------------------------------------- /src/shared/prompts/config/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/config/loader.ts -------------------------------------------------------------------------------- /src/shared/prompts/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/config/types.ts -------------------------------------------------------------------------------- /src/shared/prompts/content/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/content/glob.ts -------------------------------------------------------------------------------- /src/shared/prompts/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/content/index.ts -------------------------------------------------------------------------------- /src/shared/prompts/content/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/content/loader.ts -------------------------------------------------------------------------------- /src/shared/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/index.ts -------------------------------------------------------------------------------- /src/shared/prompts/replacement/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/replacement/errors.ts -------------------------------------------------------------------------------- /src/shared/prompts/replacement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/replacement/index.ts -------------------------------------------------------------------------------- /src/shared/prompts/replacement/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/replacement/parser.ts -------------------------------------------------------------------------------- /src/shared/prompts/replacement/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/prompts/replacement/processor.ts -------------------------------------------------------------------------------- /src/shared/runtime/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/runtime/embed.ts -------------------------------------------------------------------------------- /src/shared/runtime/pkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/runtime/pkg.ts -------------------------------------------------------------------------------- /src/shared/runtime/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/runtime/root.ts -------------------------------------------------------------------------------- /src/shared/telemetry/capture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/telemetry/capture.ts -------------------------------------------------------------------------------- /src/shared/telemetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/telemetry/index.ts -------------------------------------------------------------------------------- /src/shared/telemetry/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/telemetry/logger.ts -------------------------------------------------------------------------------- /src/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/utils/index.ts -------------------------------------------------------------------------------- /src/shared/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/utils/path.ts -------------------------------------------------------------------------------- /src/shared/utils/resolve-workflow-binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/utils/resolve-workflow-binary.ts -------------------------------------------------------------------------------- /src/shared/utils/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/utils/terminal.ts -------------------------------------------------------------------------------- /src/shared/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/workflows/index.ts -------------------------------------------------------------------------------- /src/shared/workflows/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/workflows/steps.ts -------------------------------------------------------------------------------- /src/shared/workflows/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/shared/workflows/template.ts -------------------------------------------------------------------------------- /src/ui/components/AgentTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/AgentTimeline.tsx -------------------------------------------------------------------------------- /src/ui/components/BrandingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/BrandingHeader.tsx -------------------------------------------------------------------------------- /src/ui/components/CheckpointModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/CheckpointModal.tsx -------------------------------------------------------------------------------- /src/ui/components/HistoryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/HistoryView.tsx -------------------------------------------------------------------------------- /src/ui/components/LogViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/LogViewer.tsx -------------------------------------------------------------------------------- /src/ui/components/LoopIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/LoopIndicator.tsx -------------------------------------------------------------------------------- /src/ui/components/MainAgentNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/MainAgentNode.tsx -------------------------------------------------------------------------------- /src/ui/components/OutputWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/OutputWindow.tsx -------------------------------------------------------------------------------- /src/ui/components/ShimmerText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/ShimmerText.tsx -------------------------------------------------------------------------------- /src/ui/components/StatusFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/StatusFooter.tsx -------------------------------------------------------------------------------- /src/ui/components/SubAgentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/SubAgentList.tsx -------------------------------------------------------------------------------- /src/ui/components/SubAgentSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/SubAgentSummary.tsx -------------------------------------------------------------------------------- /src/ui/components/TelemetryBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/TelemetryBar.tsx -------------------------------------------------------------------------------- /src/ui/components/TriggeredAgentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/TriggeredAgentList.tsx -------------------------------------------------------------------------------- /src/ui/components/UIElementNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/UIElementNode.tsx -------------------------------------------------------------------------------- /src/ui/components/WorkflowDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/components/WorkflowDashboard.tsx -------------------------------------------------------------------------------- /src/ui/contexts/SpinnerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/contexts/SpinnerContext.tsx -------------------------------------------------------------------------------- /src/ui/hooks/useCtrlCHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/hooks/useCtrlCHandler.ts -------------------------------------------------------------------------------- /src/ui/hooks/useLogStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/hooks/useLogStream.ts -------------------------------------------------------------------------------- /src/ui/hooks/useRegistrySync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/hooks/useRegistrySync.ts -------------------------------------------------------------------------------- /src/ui/hooks/useTerminalResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/hooks/useTerminalResize.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/ui/manager/WorkflowUIManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/manager/WorkflowUIManager.ts -------------------------------------------------------------------------------- /src/ui/state/WorkflowUIState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/state/WorkflowUIState.ts -------------------------------------------------------------------------------- /src/ui/state/stateMutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/state/stateMutations.ts -------------------------------------------------------------------------------- /src/ui/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/state/types.ts -------------------------------------------------------------------------------- /src/ui/utils/agentSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/agentSelection.ts -------------------------------------------------------------------------------- /src/ui/utils/calculateDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/calculateDuration.ts -------------------------------------------------------------------------------- /src/ui/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/formatters.ts -------------------------------------------------------------------------------- /src/ui/utils/frameScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/frameScheduler.ts -------------------------------------------------------------------------------- /src/ui/utils/heightCalculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/heightCalculations.ts -------------------------------------------------------------------------------- /src/ui/utils/lineSyntaxHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/lineSyntaxHighlight.tsx -------------------------------------------------------------------------------- /src/ui/utils/logReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/logReader.ts -------------------------------------------------------------------------------- /src/ui/utils/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/navigation.ts -------------------------------------------------------------------------------- /src/ui/utils/outputProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/outputProcessor.ts -------------------------------------------------------------------------------- /src/ui/utils/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/performance.ts -------------------------------------------------------------------------------- /src/ui/utils/statusIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/statusIcons.ts -------------------------------------------------------------------------------- /src/ui/utils/telemetryParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/ui/utils/telemetryParser.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/checkpoint/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/checkpoint/controller.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/checkpoint/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/checkpoint/evaluator.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/index.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/loop/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/loop/controller.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/loop/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/loop/evaluator.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/skip.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/trigger/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/trigger/controller.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/trigger/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/trigger/evaluator.ts -------------------------------------------------------------------------------- /src/workflows/behaviors/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/behaviors/types.ts -------------------------------------------------------------------------------- /src/workflows/execution/fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/fallback.ts -------------------------------------------------------------------------------- /src/workflows/execution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/index.ts -------------------------------------------------------------------------------- /src/workflows/execution/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/queue.ts -------------------------------------------------------------------------------- /src/workflows/execution/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/step.ts -------------------------------------------------------------------------------- /src/workflows/execution/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/trigger.ts -------------------------------------------------------------------------------- /src/workflows/execution/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/execution/workflow.ts -------------------------------------------------------------------------------- /src/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/index.ts -------------------------------------------------------------------------------- /src/workflows/runner-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/runner-process.ts -------------------------------------------------------------------------------- /src/workflows/templates/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/templates/globals.ts -------------------------------------------------------------------------------- /src/workflows/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/templates/index.ts -------------------------------------------------------------------------------- /src/workflows/templates/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/templates/loader.ts -------------------------------------------------------------------------------- /src/workflows/templates/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/templates/types.ts -------------------------------------------------------------------------------- /src/workflows/templates/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/templates/validator.ts -------------------------------------------------------------------------------- /src/workflows/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/config.ts -------------------------------------------------------------------------------- /src/workflows/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/index.ts -------------------------------------------------------------------------------- /src/workflows/utils/resolvers/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/resolvers/folder.ts -------------------------------------------------------------------------------- /src/workflows/utils/resolvers/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/resolvers/module.ts -------------------------------------------------------------------------------- /src/workflows/utils/resolvers/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/resolvers/step.ts -------------------------------------------------------------------------------- /src/workflows/utils/resolvers/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/resolvers/ui.ts -------------------------------------------------------------------------------- /src/workflows/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/src/workflows/utils/types.ts -------------------------------------------------------------------------------- /templates/workflows/_example.dev.workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/templates/workflows/_example.dev.workflow.js -------------------------------------------------------------------------------- /templates/workflows/_example.test.workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/templates/workflows/_example.test.workflow.js -------------------------------------------------------------------------------- /templates/workflows/_example.workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/templates/workflows/_example.workflow.js -------------------------------------------------------------------------------- /templates/workflows/codemachine.workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/templates/workflows/codemachine.workflow.js -------------------------------------------------------------------------------- /tests/e2e/start-cli.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/e2e/start-cli.spec.ts -------------------------------------------------------------------------------- /tests/fixtures/codex/auth.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/fixtures/codex/mock-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/fixtures/codex/mock-response.json -------------------------------------------------------------------------------- /tests/fixtures/stdin-echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/fixtures/stdin-echo.js -------------------------------------------------------------------------------- /tests/fixtures/tasks/planning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/fixtures/tasks/planning.json -------------------------------------------------------------------------------- /tests/integration/workflows/planning-workflow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/integration/workflows/planning-workflow.spec.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/ui/e2e/full-workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/e2e/full-workflow.test.ts -------------------------------------------------------------------------------- /tests/ui/fixtures/claude-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/fixtures/claude-output.txt -------------------------------------------------------------------------------- /tests/ui/fixtures/codex-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/fixtures/codex-output.txt -------------------------------------------------------------------------------- /tests/ui/fixtures/cursor-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/fixtures/cursor-output.txt -------------------------------------------------------------------------------- /tests/ui/integration/edge-cases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/integration/edge-cases.test.ts -------------------------------------------------------------------------------- /tests/ui/integration/workflow-ui-manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/integration/workflow-ui-manager.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/BrandingHeader.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/BrandingHeader.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/LoopIndicator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/LoopIndicator.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/MainAgentNode.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/MainAgentNode.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/StatusFooter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/StatusFooter.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/SubAgentList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/SubAgentList.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/SubAgentSummary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/SubAgentSummary.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/TelemetryBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/TelemetryBar.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/TriggeredAgentList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/TriggeredAgentList.test.tsx -------------------------------------------------------------------------------- /tests/ui/unit/WorkflowUIState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/WorkflowUIState.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/formatters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/formatters.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/heightCalculations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/heightCalculations.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/outputProcessor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/outputProcessor.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/performance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/performance.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/statusIcons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/statusIcons.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/telemetryParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/telemetryParser.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/types.test.ts -------------------------------------------------------------------------------- /tests/ui/unit/useTerminalResize.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/ui/unit/useTerminalResize.test.tsx -------------------------------------------------------------------------------- /tests/unit/agents/memory-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/agents/memory-store.spec.ts -------------------------------------------------------------------------------- /tests/unit/cli/register-cli.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/cli/register-cli.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/auggie-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/auggie-registry.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/ccr-command-builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/ccr-command-builder.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/ccr-executor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/ccr-executor.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/ccr-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/ccr-registry.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/engine-runner.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/engine-runner.spec.ts -------------------------------------------------------------------------------- /tests/unit/infra/process/spawn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/infra/process/spawn.spec.ts -------------------------------------------------------------------------------- /tests/unit/runtime/workspace-init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/runtime/workspace-init.spec.ts -------------------------------------------------------------------------------- /tests/unit/workflows/fallback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/workflows/fallback.test.ts -------------------------------------------------------------------------------- /tests/unit/workflows/module-behavior.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/workflows/module-behavior.test.ts -------------------------------------------------------------------------------- /tests/unit/workflows/steps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tests/unit/workflows/steps.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moazbuilds/CodeMachine-CLI/HEAD/tsconfig.json --------------------------------------------------------------------------------