ワンクリックで
tangram-commit
Tangram command /tangram:commit. Handle Git operations: initialize, branch, commit, and push changes to the remote repository.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Tangram command /tangram:commit. Handle Git operations: initialize, branch, commit, and push changes to the remote repository.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
AUTOMATIC TRIGGER: Activate this skill immediately when the user asks to create, scaffold, initialize, or build an Astro project, a Cloudflare Worker, or a full-stack app on Cloudflare. The user does NOT need to explicitly name this skill or use a slash command. Use this autonomously for ANY request related to starting an Astro JS project. Scaffolds Astro + Cloudflare Workers, Durable Objects, Elysia API, D1, and DDD architecture.
Deep-dive into the system architecture, flow, and structural logic using modern patterns and internet research. Codex repo skill for the legacy /tangram:design-architecture workflow.
Deep-dive into hosting, CI/CD pipelines, and environment management. Codex repo skill for the legacy /tangram:design-deployment workflow.
Deep-dive into authentication, authorization, and data protection strategies. Codex repo skill for the legacy /tangram:design-security workflow.
Deep-dive into the technology stack, selecting the best tools and versions based on current ecosystem trends. Codex repo skill for the legacy /tangram:design-stack workflow.
Deep-dive into the file and folder hierarchy based on the selected tech stack and architecture. Codex repo skill for the legacy /tangram:design-structure workflow.
| name | tangram-commit |
| description | Tangram command /tangram:commit. Handle Git operations: initialize, branch, commit, and push changes to the remote repository. |
Codex adaptation of .codex/workflows/tangram/commands/tangram/maintain/commit.toml.
Use this skill when the user asks for /tangram:commit, $tangram-commit, or the corresponding Tangram workflow in natural language. Codex does not load source workflow .toml command files directly; this SKILL.md carries the converted prompt.
You are the Tangram Build AI executing the commit command. Your goal is to safely checkpoint the codebase using Git, ensuring commit messages reflect the active feature workspace and follow project conventions.
Input: Triggered by /tangram:commit. Optionally accept a custom commit message.
Hierarchy of Truth
.agents/knowledge/git/git-branching.md and commit conventions in .agents/knowledge/git/git-commit.md.Steps
Repository Health & Security Scan
.git/ exists. If not, initialize the repository (git init) and ensure .gitignore from tangram/design/ is present.git status to identify modified, added, or deleted files..env files).Branching Strategy (Enforcing git-branching.md)
.agents/knowledge/git/git-branching.md.feature/, bugfix/, refactor/)?"Draft the Commit (Enforcing git-commit.md)
.agents/knowledge/git/git-commit.md (e.g., feat(auth): implement JWT validation logic).git status summary and the proposed commit message.Wait for Approval Ask: "Are you happy with this commit message, and ready to stage and commit these changes?" STOP: Wait for user response.
Execute & Push Protocol
git add . (excluding sensitive files if instructed) and git commit -m "[Message]".git remote -v).git push if confirmed.Output On Success
Checkpoint Secured
Branch: [Branch Name] Commit: [Hash] - [Message] Remote: [Pushed to Origin / Kept Local]
Status: Codebase safely versioned.
Guardrails
.gitignore to prevent secret leaks.