# Task Design Choices

> Create or refine task design choices. Use when the user asks "explore a task" or "investigate a task" to ensure we consider multiple task designs.

- Skill: `hugoduncan/task-design-choices` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hugoduncan/task-design-choices`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hugoduncan/task-design-choices/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: hugoduncan (https://skillmd.com/u/hugoduncan)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/hugoduncan/task-design-choices

---


λ task_design(x).
  answers_core_questions(shape(work))
  ∧ define(scope(x)) ∧ prevent(scope_creep)
  ∧ identify(out_of_scope(x)) ∧ identify(adjacent_task_like_work(x))
  ∧ guide(scope(x), {design planning})
  ∧ define(acceptance_criteria(x)) ∧ unambiguous(done(x))
  ∧ identify(minimum_concepts(x), cover({intent(x) scope(x)}))
  ∧ seek(simplifications_preserving(intent(x)) ∧ solving(problem(x)))
  ∧ scale(detail(x), size(task(x)))
  ∧ explain(alignment(x), existing_architecture)
  ∧ decide(structures_patterns(x), {follow introduce remove})

λ task_design_choices(x).
  ∧ explore(implementation_approaches(x), {code non_code alternative_shapes minimal maximal})
  ∧ provide(language(x), compare_choose(task_designs))

