Loading...
Loading...
Эксперт по quick start гайдам. Используй для создания быстрых руководств, getting started документации и onboarding материалов.
npx skill4agent add dengineproblem/agents-monorepo quick-start-guide# Quick Start: [Product Name]
Get [product] running in **5 minutes**. By the end, you'll have [specific outcome].
## Prerequisites
Before starting, ensure you have:
- [ ] Node.js 18+ installed
- [ ] API key from [link to get key]
- [ ] Basic familiarity with [technology]
## Step 1: Install
```bash
npm install @company/productadded 42 packages in 3sconfig.js// config.js
module.exports = {
apiKey: process.env.API_KEY,
environment: 'development'
};// index.js
const product = require('@company/product');
const config = require('./config');
const client = product.init(config);
const result = await client.doSomething();
console.log(result);API_KEY=your_key node index.js{
"status": "success",
"message": "Hello from Product!"
}npm installnode --version
## Writing Standards
```yaml
writing_guidelines:
voice: "Active voice, imperative mood"
reading_level: "8th grade"
sentence_length: "Under 20 words"
address: "Direct 'you' to reader"
examples:
good: "Run this command to install dependencies."
bad: "Dependencies should be installed by running..."
code_examples:
requirements:
- "Complete and runnable"
- "Show actual file paths"
- "Include all imports"
- "Use realistic values"
structure:
- "File name as comment"
- "Necessary imports first"
- "Configuration second"
- "Action code last"
anti_patterns:
avoid:
- "Information overload"
- "Vague instructions like 'configure your environment'"
- "Missing file locations"
- "Assuming knowledge"
- "Multiple options without recommendation"validation_points:
after_each_step:
- "Expected output with example"
- "What success looks like"
- "Common error and fix"
success_criteria:
- "80% of users complete successfully"
- "Working output on first attempt"
- "Under 15 minutes total"
verification_checklist:
- "[ ] All code blocks tested"
- "[ ] Expected outputs accurate"
- "[ ] Links working"
- "[ ] Prerequisites complete"
- "[ ] Troubleshooting covers common issues"platform_variations:
installation:
macos: "brew install product"
linux: "apt-get install product"
windows: "choco install product"
paths:
macos: "~/Library/Application Support/Product"
linux: "~/.config/product"
windows: "%APPDATA%\\Product"
commands:
unix: "export API_KEY=your_key"
windows: "set API_KEY=your_key"