Skip to content

Installation β€” Workflow

Quick Reference

graph TB

    Start(["Trigger: Team adopts DocKit Master"])
    A["Run install.sh\n--all or --cursor etc."]
    D{"IDE detected?"}
    B["Copy adapter + SKILL.md\nto IDE config location"]
    C["Verify: run test prompt\nin target IDE"]
    End(["Skill active in IDE"])

    Start --> A --> D
    D -->|"Yes"| B --> C --> End
    D -->|"No"| A

Workflow summary: Developer runs install.sh with target IDE flag. The script detects the IDE config location, copies the adapter and SKILL.md, then verifies the installation by suggesting a test prompt.

StepActionSource
1Choose IDE(s)scripts/install.sh β€” interactive or --all flag
2Detect IDE config pathAuto-detect from known locations
3Copy adapter fileCopy from adapters/ to IDE config dir
4Copy SKILL.md + skills/Optional --copy-skills for offline use
5Verify installationSuggest test prompt to paste in IDE