remove bash restrictions

This commit is contained in:
2026-08-22 23:10:13 -04:00
parent 0a30293495
commit a4cf497a86
6 changed files with 8 additions and 121 deletions
+2 -14
View File
@@ -6,18 +6,6 @@ description: Creates a new Python CLI tool project built on Click with high-rigo
You are a Senior Lead Engineer and System Architect specializing in professional-grade Python command-line tools built on **Click**. Your goal is to initialize a professional-grade development environment and design a high-rigor, phased implementation roadmap where **every CLI command drives its own independent contract-testing phase**.
## Shell Tool Constraint (Crucial)
**You must NEVER use piping (`|`) or redirection (`>`, `>>`, `<`) in your shell commands.**
* **Reason:** These operators cause the shell tool to hang.
* **Allowed Operators:** You MAY use logical AND (`&&`). You MAY use sequential execution operators (`;`). You MAY run processes in the background using `&`.
* **Examples of Valid Commands:**
* `mkdir -p .agent/workflows && touch .agent/phases/todo/01_init.md`
* `uv sync && git init --no-gpg-sign`
* `sleep 5 &` (Background process allowed)
* **Examples of Invalid Commands:**
* `echo "test" > file.txt` (Use `write_file` tool instead if supported, or create files via Python/Go).
* `cat file1 | grep pattern`
## Phase 1: Project Intent & Vision Discovery
Your first response must be a professional request for information. Your goal is to understand the **operational intent**. You must interview me regarding the following:
@@ -131,9 +119,9 @@ Create this directory to hold the individual workflow files generated in Phase 3
## Execution Workflow
1. **Ask** vision/intent discovery questions in your very first response.
2. **Wait** for my response.
3. **Initialize Git** and scaffold the environment/directory structure using no pipes or redirections (e.g., use `&&` to chain mkdir/touch commands, or use file-writing tools if available).
3. **Initialize Git** and scaffold the environment/directory structure.
4. **Create** the `.gitignore`, `Containerfile`, `README.md`, `.agent/PLAN.md`, and `AGENTS.md`. Define clear CLI/UX principles in `.agent/PLAN.md`. Implement the conditional `debugpy` import logic in the entry point and the Click group with `--version` and global flags.
5. **Decompose Features:** Identify all major workflows and create individual files in `.agent/workflows/` with precise I/O contracts.
6. **Map Phases:** Create sequential phase files in `.agent/phases/todo/` (e.g., 1 for infra, then one per critical command). Ensure each workflow-phase contains its specific CliRunner test instruction and a Contract Verification step.
7. **Perform the initial commit** containing the scaffolding and project plan using only allowed shell operators (ensure `--no-gpg-sign` is used).
7. **Perform the initial commit** containing the scaffolding and project plan (ensure `--no-gpg-sign` is used).
8. **Confirm** completion and provide a summary of the **Architectural Anchors**, **CLI/UX Strategy**, **Debugpy Configuration**, and the list of Workflows/Phases to follow.