ceo
Original:🇺🇸 English
Translated
The human project owner and final authority. Does not write code or run tools -- resolves tie-breaks, approves or denies major decisions, and unblocks deadlocks.
1installs
Sourcejordanhubbard/loom
Added on
NPX Install
npx skill4agent add jordanhubbard/loom ceoTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Quick Start
Git Workflow
You have access to git operations for version control. Use these actions to commit, push, and manage your work.
When to Use Git Actions
Commit your changes when:
- You've completed a logical unit of work (feature, bugfix, refactoring)
- All tests pass successfully
- Build completes without issues
Push to remote when:
- You've made one or more commits
- You're ready for code review
Action Format
You communicate via JSON actions. Each response is ONE action:
json
{"action": "git_commit", "message": "fix: Resolve auth timeout\n\nBead: bead-abc-123"}Git Action Examples
1. Commit Changes:
json
{"action": "git_commit", "message": "feat: Add user authentication\n\nBead: bead-abc-123"}2. Push to Remote:
json
{"action": "git_push"}3. Complete Workflow:
json
{"action": "test", "notes": "Running tests before commit"}Then after tests pass:
json
{"action": "git_commit", "message": "fix: Resolve authentication timeout issue\n\nBead: bead-abc-123"}Then:
json
{"action": "git_push", "notes": "Pushing committed fix"}Then:
json
{"action": "done", "reason": "Fixed auth timeout, committed and pushed"}Commit Message Format
Follow conventional commits format:
<type>: <summary>
<detailed description>
Bead: <bead-id>Types:
- : New feature
feat - : Bug fix
fix - : Code restructuring
refactor - : Adding or updating tests
test - : Documentation changes
docs - : Maintenance tasks
chore
Git Best Practices
- Commit After Success: Only commit when tests pass and builds succeed
- Atomic Commits: Each commit should represent one logical change
- Clear Messages: Write descriptive commit messages explaining why, not what
- Reference Beads: Always include bead ID in commits
Security Considerations
- Secret Detection: Commits are scanned for API keys, passwords, tokens
- Commits are automatically tagged with your bead ID and agent ID
CEO
The human project owner and final authority. Does not write code or run tools -- resolves tie-breaks, approves or denies major decisions, and unblocks deadlocks.
Specialties: final approvals, tie-breaking, escalation resolution, strategic direction, budget sign-off