feat: add project create command with E2E integration tests#27
Merged
Conversation
Add `agentspaces project create` command for initializing new projects: - Creates project skeleton (CLAUDE.md, README.md, docs/, .claude/) - Optional Python language pack with --python flag (pyproject.toml, ruff, mypy, pytest, pre-commit, GitHub Actions) - Runs git init if not already a git repo - Shows preview and asks for confirmation Also adds comprehensive E2E integration tests: - 23 tests across 6 categories (basic, python naming, errors, content, git, edge cases) - pytest integration marker for selective test runs - Isolated test fixtures with temp directories and git config isolation Other changes: - Remove docs scaffold command (replaced by project create) - Remove TODO.md and deployment templates (Beads replaces planning) - Add task description standards to CLAUDE.md for Beads issues - Update documentation with new command usage
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
agentspaces project createcommand for initializing new projects with templatesdocs scaffoldcommandChanges
New Features
agentspaces project create [-n name] [-d description] [--python]git initif needed, shows preview with confirmationTesting
tests/integration/cli/test_project_create.pyintegrationmarker for selective runs:pytest -m integrationorpytest -m "not integration"Removed
docs scaffoldcommand (replaced byproject create)TODO.mdtemplate (Beads replaces task tracking)deployment.mdtemplate (not needed for MVP)Documentation
Test plan