ワンクリックで
jules-remote
Use this skill when dispatching atomic, isolated development tasks to Jules, a remote AI coding agent.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use this skill when dispatching atomic, isolated development tasks to Jules, a remote AI coding agent.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing.
Interactive workflow to review changes, split them into logical groups, and create atomic conventional commits. Replaces 'git commit -m' with a thoughtful process.
Multi-agent autonomous startup system for Claude Code. Triggers on "Loki Mode". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations, marketing, HR, and customer success. Takes PRD to fully deployed, revenue-generating product with zero human intervention. Features Task tool for subagent dispatch, parallel code review with 3 specialized reviewers, severity-based issue triage, distributed task queue with dead letter handling, automatic deployment to cloud providers, A/B testing, customer feedback loops, incident response, circuit breakers, and self-healing. Handles rate limits via distributed state checkpoints and auto-resume with exponential backoff. Requires --dangerously-skip-permissions flag.
| name | jules-remote |
| description | Use this skill when dispatching atomic, isolated development tasks to Jules, a remote AI coding agent. |
Jules is for atomic, isolated, non-urgent tasks where we don't need immediate results.
| ✅ Good Fit | ❌ Bad Fit |
|---|---|
| Fix lint errors in 1-3 files | Large refactoring |
| Resolve type checking issues | Multi-file architecture |
| Add missing docstrings | Subjective design work |
| Write unit tests for existing code | Needs immediate results |
| Update import statements | Complex debugging |
| Simple bug fixes with clear repro | Vague requirements |
# List recent sessions
jules remote list --session 2>&1 | cat | head -20
# Create task with full context
jules remote new --session "Title: Fix lint errors in src/auth/
## Context
Files: src/auth/login.py, src/auth/session.py
Related: See .agent/codestyles/python.md for conventions
## Requirements
- Fix all ruff lint errors
- Ensure mypy passes with --strict
- Don't change public API
## Acceptance Criteria
- \`ruff check src/auth/\` returns 0 errors
- \`mypy src/auth/\` returns 0 errors"
# Check status
jules remote list --session 2>&1 | cat | grep "task_id"
# Pull completed task (review only)
jules remote pull --session <task_id>
# Pull and apply patch
jules remote pull --session <task_id> --apply
Title: {Action} {Target}
## Context
Files: {exact file paths}
Related: {reference docs or backlog items}
Current State: {what exists now}
## Requirements
- {specific requirement 1}
- {specific requirement 2}
- Don't: {anti-requirement}
## Acceptance Criteria
- {verifiable criterion 1}
- {verifiable criterion 2}
Title: Fix lint errors in {path}
## Context
Files: {exact paths}
Tool: ruff / mypy / eslint
## Requirements
- Fix all errors reported by {tool}
- Preserve existing functionality
- Follow .agent/codestyles/{lang}.md conventions
## Acceptance Criteria
- `{tool command}` returns 0 errors
Title: Add unit tests for {module}
## Context
Files: {source file}
Create: {test file path}
Framework: pytest / vitest / jest
## Requirements
- Cover all public functions
- Include edge cases
- Mock external dependencies
## Acceptance Criteria
- All tests pass with `{test command}`
- Coverage > 80% for the module
Title: Add docstrings to {module}
## Context
Files: {exact paths}
Style: Google / NumPy / JSDoc
## Requirements
- Document all public functions/classes
- Include parameter types and descriptions
- Add usage examples where helpful
## Acceptance Criteria
- `pydoc {module}` shows complete documentation
- No "missing docstring" lint warnings
.agent/codestyles/ or .agent/references/jules remote pull <id>When Jules task is created, add to matrix:
| {id} | QUEUED | P3 | easy | jules | - | - | - | @jules | {description} | {date} | {date} |
When pulled and applied, update to DONE.
| Mechanism | Urgency | Complexity | Isolation |
|---|---|---|---|
| Gemini CLI | Immediate | Low-Med | Any |
| Manual Task | Later | High | Any |
| Jules | Hours+ | Low | Must be atomic |
Jules = "fire and forget" for well-defined atomic work.