ソース情報
- リポジトリ
- bastani-inc/atomic
- ソースの最終更新活動
- 2026年5月15日 21:31
- 検出された SKILL.md の言語
- 英語
- スター
- 624
- フォーク
- 90
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/bastani-inc/atomic --skill gh-create-prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks.
Streamline session-to-session coordination with the intercom extension. Send messages, delegate tasks, and coordinate work across multiple atomic sessions on the same machine. Use for planner-worker workflows, cross-session context sharing, and real-time collaboration between sessions.
Delegate work to builtin or custom subagents with single-agent, parallel, forked-context, and intercom-coordinated runs. Use for bounded specialist delegation where a single parent agent stays in control while subagents contribute locate, analyze, pattern-find, research, debug, or simplify passes.
SKILL.md を表示中
SOC 職業分類に基づく
| name | gh-create-pr |
| description | Commit unstaged changes, push changes, submit a pull request. |
| metadata | {"internal":true} |
Commit changes, push to remote, and create a pull request with a conventional commit-style title and comprehensive description: $ARGUMENTS
git status --porcelaingit branch --show-currentgit rev-parse --abbrev-ref origin/HEAD 2>/dev/null | sed 's|origin/||' || echo maingit diff --cached --statgit diff --statgit log --oneline -10gh pr view --json number,title,body 2>/dev/null || echo "No existing PR"git push -u origin <branch> to set upstream trackinggit diff origin/<default-branch>...HEAD to review the full scope of changes<type>[optional scope]: <description>feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert! after type/scope for breaking changes: feat(api)!: change response formatgh pr create --title "TITLE" --body "DESCRIPTION"gh pr edit <number> --title "TITLE" --body "DESCRIPTION"feat(auth): add JWT token refresh endpoint
fix(ui): resolve layout shift on mobile navigation
docs: update API reference for v2 endpoints
refactor(db): migrate from raw SQL to query builder
feat(api)!: change pagination response format
chore(deps): bump TypeScript to 5.x
Use this structure for the PR body. Omit sections that are not applicable.
## Summary
[1-2 sentence overview of what this PR does and why]
## Changes
- [Key change 1]
- [Key change 2]
- [Key change 3]
## Breaking Changes
[Describe what breaks and required migration steps]
## Notes
[Additional context, testing instructions, or deployment considerations]
feat/123-add-auth), reference it in the description with Closes #123 or Refs #123.prek.toml) will run to ensure code quality
gh CLI is not authenticated, prompt the user to run gh auth login first