Skip to content

Command Variants

Understanding _nt and _generic command variants

Most Hyprlayer commands have variants for different contexts.

The standard versions integrate with the thoughts directory. They read and write thoughts/, use shared templates, and sync artifacts.

/create_plan
/research_codebase
/describe_pr
/iterate_plan

The _nt variants skip thoughts directory integration. Use these in repositories that don’t have Hyprlayer thoughts initialized.

/create_plan_nt
/research_codebase_nt
/describe_pr_nt
/iterate_plan_nt

These commands work the same way and leave the thoughts directory alone. The agent produces plans and research in the conversation only.

The _generic variants work outside the Hyprlayer ecosystem. They assume no project structure and no tooling.

/create_plan_generic
/research_codebase_generic
Base Command _nt _generic
/create_plan /create_plan_nt /create_plan_generic
/research_codebase /research_codebase_nt /research_codebase_generic
/iterate_plan /iterate_plan_nt
/describe_pr /describe_pr_nt

Commands like /commit, /implement_plan, /validate_plan, /create_handoff, /resume_handoff, /local_review, and /founder_mode do not have variants.

Two commands have CI-specific variants optimized for non-interactive environments:

  • /ci_commit: commits without interactive approval
  • /ci_describe_pr: generates PR descriptions in CI pipelines