# Plandex.quickstart

> Agent workflow for using Plandex CLI in non-interactive mode with explicit autonomy controls.

- Skill: `javimosch/plandex-quickstart` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/plandex-quickstart`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/plandex-quickstart/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/plandex-quickstart

---


# plandex Quickstart

Use this when you need deterministic, scriptable Plandex runs from supercli.

## 1) Install plugin and dependency

```bash
supercli plugins learn plandex
supercli plugins install ./plugins/plandex --json
# Install Plandex CLI from official docs and ensure `plandex` is on PATH
```

## 2) Validate setup

```bash
supercli plandex cli version
```

## 3) Create and tune a plan

```bash
supercli plandex plan new --name "repo-refactor" --full
supercli plandex plan set-auto full
```

## 4) Run one-shot tasks

```bash
supercli plandex task tell --prompt "Implement tests for parser module"
supercli plandex task chat --prompt "Explain remaining tech debt"
```

## 5) Full passthrough for advanced commands

```bash
supercli plandex apply --auto-update-context --auto-exec
supercli plandex chat "Summarize architecture risks"
```

## 6) Caveats

- Higher autonomy settings can apply code changes quickly; use deliberately.
- Start with explicit prompts and review results in CI logs.
- Use passthrough when wrappers do not expose needed flags.

