-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Add init workflow step to bootstrap projects like specify init
#2838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Copilot
wants to merge
5
commits into
main
Choose a base branch
from
copilot/add-init-step-bootstrap-project
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+368
−4
Draft
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9f4da7e
Initial plan
Copilot 95a26b3
Add init workflow step to bootstrap projects like `specify init`
Copilot 68e3079
Address review: simplify stderr capture and extract VALID_SCRIPT_TYPES
Copilot 5673df8
Address review: fail fast on non-empty dir, stdout fallback, README f…
Copilot 86333ab
Populate exit_code/stdout/stderr in non-empty-dir fast-fail
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,201 @@ | ||
| """Init step — bootstrap a Spec Kit project from within a workflow. | ||
|
|
||
| Runs the same scaffolding as ``specify init`` so a workflow can create | ||
| (or merge into) a project before driving the rest of the spec-driven | ||
| process. The step invokes the ``init`` command in-process and captures | ||
| its exit code and output. | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| import os | ||
| from typing import Any | ||
|
|
||
| from specify_cli.workflows.base import StepBase, StepContext, StepResult, StepStatus | ||
| from specify_cli.workflows.expressions import evaluate_expression | ||
|
|
||
| #: Valid ``script`` values, mirroring ``specify init --script``. | ||
| VALID_SCRIPT_TYPES = ("sh", "ps") | ||
|
|
||
|
|
||
| class InitStep(StepBase): | ||
| """Bootstrap a project, equivalent to running ``specify init``. | ||
|
|
||
| The step runs the bundled ``specify init`` command non-interactively, | ||
| scaffolding templates, scripts, shared infrastructure, and the | ||
| selected coding agent integration into the target directory. | ||
|
|
||
| Because workflows run unattended, the step defaults to | ||
| ``--ignore-agent-tools`` (skip checks for an installed agent CLI) and | ||
| resolves the integration from the step config, falling back to the | ||
| workflow-level default integration. | ||
|
|
||
| Example YAML:: | ||
|
|
||
| - id: bootstrap | ||
| type: init | ||
| here: true | ||
| integration: copilot | ||
| script: sh | ||
|
|
||
| Supported config fields (all optional): | ||
|
|
||
| ``project`` | ||
| Project name or path to create. Use ``"."`` for the current | ||
| directory. Ignored when ``here`` is truthy. | ||
| ``here`` | ||
| Initialize in the target directory instead of creating a new one. | ||
| ``integration`` | ||
| Integration key (e.g. ``copilot``). Defaults to the workflow's | ||
| default integration. | ||
| ``script`` | ||
| Script type, ``sh`` or ``ps``. | ||
| ``force`` | ||
| Merge/overwrite without confirmation when the directory is not | ||
| empty. | ||
| ``no_git`` | ||
| Skip git repository initialization. | ||
| ``ignore_agent_tools`` | ||
| Skip checks for the coding agent CLI (defaults to ``true``). | ||
| ``preset`` | ||
| Preset ID to install during initialization. | ||
| ``branch_numbering`` | ||
| Branch numbering strategy (``sequential`` or ``timestamp``). | ||
| """ | ||
|
|
||
| type_key = "init" | ||
|
|
||
| def execute(self, config: dict[str, Any], context: StepContext) -> StepResult: | ||
| project = self._resolve(config.get("project"), context) | ||
| here = self._resolve_bool(config.get("here"), context) | ||
|
|
||
| integration = config.get("integration") or context.default_integration | ||
| integration = self._resolve(integration, context) | ||
|
|
||
| script = self._resolve(config.get("script"), context) | ||
| preset = self._resolve(config.get("preset"), context) | ||
| branch_numbering = self._resolve(config.get("branch_numbering"), context) | ||
|
|
||
| force = self._resolve_bool(config.get("force"), context) | ||
| no_git = self._resolve_bool(config.get("no_git"), context) | ||
| # Workflows run unattended; skip the agent CLI presence check by default. | ||
| ignore_agent_tools = self._resolve_bool( | ||
| config.get("ignore_agent_tools", True), context | ||
| ) | ||
|
|
||
| argv: list[str] = ["init"] | ||
| if here: | ||
| argv.append("--here") | ||
| elif project: | ||
| argv.append(str(project)) | ||
| else: | ||
| # No explicit target → initialize the current directory. | ||
| argv.append(".") | ||
|
|
||
| if integration: | ||
| argv.extend(["--integration", str(integration)]) | ||
| if script: | ||
| argv.extend(["--script", str(script)]) | ||
| if branch_numbering: | ||
| argv.extend(["--branch-numbering", str(branch_numbering)]) | ||
| if preset: | ||
| argv.extend(["--preset", str(preset)]) | ||
| if force: | ||
| argv.append("--force") | ||
| if no_git: | ||
| argv.append("--no-git") | ||
| if ignore_agent_tools: | ||
| argv.append("--ignore-agent-tools") | ||
|
|
||
| exit_code, stdout, stderr = self._run_init(argv, context) | ||
|
|
||
| output: dict[str, Any] = { | ||
| "argv": argv, | ||
| "project": project, | ||
| "here": here, | ||
| "integration": integration, | ||
| "script": script, | ||
| "exit_code": exit_code, | ||
| "stdout": stdout, | ||
| "stderr": stderr, | ||
| } | ||
|
|
||
| if exit_code != 0: | ||
| return StepResult( | ||
| status=StepStatus.FAILED, | ||
| output=output, | ||
| error=( | ||
| stderr.strip() | ||
| or f"specify init exited with code {exit_code}." | ||
| ), | ||
|
mnriem marked this conversation as resolved.
|
||
| ) | ||
| return StepResult(status=StepStatus.COMPLETED, output=output) | ||
|
|
||
| @staticmethod | ||
| def _resolve(value: Any, context: StepContext) -> Any: | ||
| """Resolve ``{{ ... }}`` expressions in string config values.""" | ||
| if isinstance(value, str) and "{{" in value: | ||
| return evaluate_expression(value, context) | ||
| return value | ||
|
|
||
| @classmethod | ||
| def _resolve_bool(cls, value: Any, context: StepContext) -> bool: | ||
| """Coerce a config value (possibly an expression) to a boolean.""" | ||
| resolved = cls._resolve(value, context) | ||
| if isinstance(resolved, str): | ||
| return resolved.strip().lower() in ("true", "1", "yes") | ||
| return bool(resolved) | ||
|
|
||
| @staticmethod | ||
| def _run_init( | ||
| argv: list[str], context: StepContext | ||
| ) -> tuple[int, str, str]: | ||
| """Invoke ``specify init`` in-process and capture exit code/output. | ||
|
|
||
| Runs with the working directory set to ``context.project_root`` so | ||
| that ``--here`` and relative project paths target the right place. | ||
| """ | ||
| from typer.testing import CliRunner | ||
|
|
||
| from specify_cli import app | ||
|
|
||
| runner = CliRunner() | ||
|
|
||
| prev_cwd = os.getcwd() | ||
| if context.project_root: | ||
| try: | ||
| os.chdir(context.project_root) | ||
| except OSError as exc: | ||
| return (1, "", f"Cannot enter project root: {exc}") | ||
| try: | ||
| result = runner.invoke(app, argv, catch_exceptions=True) | ||
| finally: | ||
| os.chdir(prev_cwd) | ||
|
Comment on lines
+202
to
+205
|
||
|
|
||
| stdout = result.output or "" | ||
| # click >= 8.2 captures stderr separately; older versions mix it into | ||
| # stdout and raise when ``result.stderr`` is accessed. | ||
| try: | ||
| stderr = result.stderr or "" | ||
| except (ValueError, AttributeError): | ||
| stderr = "" | ||
|
|
||
| if result.exit_code != 0 and result.exception is not None: | ||
| detail = f"{type(result.exception).__name__}: {result.exception}" | ||
| stderr = f"{stderr}\n{detail}".strip() if stderr else detail | ||
|
|
||
| return (result.exit_code, stdout, stderr) | ||
|
|
||
| def validate(self, config: dict[str, Any]) -> list[str]: | ||
| errors = super().validate(config) | ||
| script = config.get("script") | ||
| if ( | ||
| isinstance(script, str) | ||
| and "{{" not in script | ||
| and script not in VALID_SCRIPT_TYPES | ||
| ): | ||
|
Comment on lines
+223
to
+228
|
||
| errors.append( | ||
| f"Init step {config.get('id', '?')!r}: 'script' must be " | ||
| f"{' or '.join(repr(s) for s in VALID_SCRIPT_TYPES)}." | ||
| ) | ||
| return errors | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.