help
Guidance, discovery & setup
Your starting point for Engify tools. Get guidance on which tool to use, detailed documentation, and setup wizards for hooks, CI, and preferences.
What You Can Do
Tool Discovery
Not sure which tool to use? Describe your task and get a recommendation.
help({ task: 'validate my API endpoints' })
// Suggests: assess with API checksDetailed Documentation
Get complete documentation for any tool, including all parameters and examples.
help({ tool: 'assess' })
// Returns full docs for assess toolExternal Tool Recommendations
Get suggestions for external tools that complement Engify - ESLint, TypeDoc, etc.
help({ tool: 'tools' })
// Lists recommended external toolsSetup Wizards
Interactive setup for git hooks, CI pipelines, and coding preferences.
help({ action: 'setup' })
// Runs full onboarding wizardSetup Targets
Configure specific aspects of your development environment.
onboarding
Full wizardComplete setup wizard. Installs hooks, generates CI, captures preferences.
help({ action: 'setup', target: 'onboarding' })hooks
Install git hooks for pre-commit and pre-push quality gates.
help({
action: 'setup',
target: 'hooks',
options: { hooks: ['pre-commit', 'pre-push'] }
})ci
Generate GitHub Actions or GitLab CI workflows with quality gates.
help({
action: 'setup',
target: 'ci',
options: { ciProvider: 'github-actions', threshold: 7 }
})preferences
Capture your coding preferences - verbosity, pet peeves, testing style.
help({
action: 'setup',
target: 'preferences',
preferences: {
verbosity: 'peer',
dry: true,
testing: 'tdd',
petPeeves: ['mock-data', 'over-engineering']
}
})claude-code
Configure MCP server settings for Claude Code integration.
help({ action: 'setup', target: 'claude-code' })status
Check what's already set up and what's missing.
help({ action: 'setup', target: 'status' })Preference Options
Customize how AI assistants work with you.
| Preference | Options | Description |
|---|---|---|
| verbosity | teacher, peer, code-only | How much explanation you want |
| testing | tdd, after, parallel, skip | When tests are written |
| typeStrictness | strict, loose | Type safety level |
| controlFlow | early-return, nested | Preferred code structure |
| dry | true, false | Enforce DRY strictly |
| autonomy | ask-first, just-do-it | Should AI ask before big changes |
| mode | prototype, production | Speed vs quality tradeoff |
| petPeeves | mock-data, over-engineering, ... | Behaviors to avoid |
Ready to get started?
Run the help tool to discover what's available and set up your environment.