@fprad0/skill-master-mcp 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/README.md +29 -9
- package/VERSION.md +3 -3
- package/bin/lib/client-config.mjs +268 -0
- package/bin/lib/menu-core.mjs +47 -37
- package/bin/skill-master-bootstrap-global.mjs +2 -1
- package/bin/skill-master-doctor.mjs +42 -29
- package/bin/skill-master-install-global-skills.mjs +1 -1
- package/bin/skill-master-register-clients.mjs +36 -115
- package/docs/operations/GUIA_MULTI_COMPUTADOR.md +255 -0
- package/docs/operations/GUIA_NPM_PUBLICO.md +147 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/SKILL.md +399 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/common-patterns.md +331 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/complete-examples.md +872 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/component-patterns.md +502 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/data-fetching.md +767 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/file-organization.md +502 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/performance.md +406 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/routing-guide.md +364 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/styling-guide.md +428 -0
- package/docs/skill-candidates/v0.0.11/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
- package/docs/skill-candidates/v0.0.11/git-version-control-ops/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/go-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/java-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/javascript-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/json-contract-design/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/multi-client-mcp-ops/SKILL.md +36 -0
- package/docs/skill-candidates/v0.0.11/nextjs/SKILL.md +745 -0
- package/docs/skill-candidates/v0.0.11/nextjs/agents/openai.yaml +3 -0
- package/docs/skill-candidates/v0.0.11/nextjs/references/app-router-files.md +94 -0
- package/docs/skill-candidates/v0.0.11/python-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/ruby-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/SKILL.md +209 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/references/architecture_patterns.md +103 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/references/development_workflows.md +103 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/references/tech_stack_guide.md +103 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/scripts/code_quality_analyzer.py +114 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/scripts/fullstack_scaffolder.py +114 -0
- package/docs/skill-candidates/v0.0.11/senior-fullstack/scripts/project_scaffolder.py +114 -0
- package/docs/skill-candidates/v0.0.11/shadcn/SKILL.md +573 -0
- package/docs/skill-candidates/v0.0.11/shadcn/agents/openai.yaml +3 -0
- package/docs/skill-candidates/v0.0.11/sql-postgresql-engineering/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/terminal-shell-ops/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/typescript-expert/SKILL.md +429 -0
- package/docs/skill-candidates/v0.0.11/typescript-expert/references/tsconfig-strict.json +92 -0
- package/docs/skill-candidates/v0.0.11/typescript-expert/references/typescript-cheatsheet.md +383 -0
- package/docs/skill-candidates/v0.0.11/typescript-expert/references/utility-types.ts +335 -0
- package/docs/skill-candidates/v0.0.11/typescript-expert/scripts/ts_diagnostic.py +203 -0
- package/docs/skill-candidates/v0.0.11/ui-component-primitives/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/web-mobile-design-systems/SKILL.md +34 -0
- package/docs/skill-candidates/v0.0.11/windows-linux-platform-ops/SKILL.md +34 -0
- package/manifests/channels/beta.json +7 -7
- package/manifests/channels/stable.json +8 -8
- package/package.json +6 -2
- package/scripts/verify-menu-actions.mjs +115 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Next.js App Router — File Convention Reference
|
|
2
|
+
|
|
3
|
+
## Special Files
|
|
4
|
+
|
|
5
|
+
| File | Purpose | Server/Client |
|
|
6
|
+
|------|---------|---------------|
|
|
7
|
+
| `layout.tsx` | Shared UI wrapper, preserves state | Server (default) |
|
|
8
|
+
| `page.tsx` | Unique route UI | Server (default) |
|
|
9
|
+
| `loading.tsx` | Suspense fallback | Server (default) |
|
|
10
|
+
| `error.tsx` | Error boundary | Client (required) |
|
|
11
|
+
| `not-found.tsx` | 404 UI | Server (default) |
|
|
12
|
+
| `route.ts` | API endpoint (Route Handler) | Server only |
|
|
13
|
+
| `template.tsx` | Layout that remounts on navigation | Server (default) |
|
|
14
|
+
| `default.tsx` | Parallel route fallback | Server (default) |
|
|
15
|
+
| `proxy.ts` | Network proxy (replaces middleware) | Server (Node.js) |
|
|
16
|
+
| `opengraph-image.tsx` | Auto-generated OG image for route | Server (Edge) |
|
|
17
|
+
| `twitter-image.tsx` | Auto-generated Twitter card image | Server (Edge) |
|
|
18
|
+
|
|
19
|
+
## Route Segments
|
|
20
|
+
|
|
21
|
+
| Pattern | Example | Matches |
|
|
22
|
+
|---------|---------|---------|
|
|
23
|
+
| `[id]` | `app/users/[id]/page.tsx` | `/users/123` |
|
|
24
|
+
| `[...slug]` | `app/docs/[...slug]/page.tsx` | `/docs/a/b/c` |
|
|
25
|
+
| `[[...slug]]` | `app/shop/[[...slug]]/page.tsx` | `/shop` or `/shop/a/b` |
|
|
26
|
+
| `(group)` | `app/(marketing)/page.tsx` | `/` (group ignored in URL) |
|
|
27
|
+
| `@slot` | `app/@sidebar/page.tsx` | Parallel route slot |
|
|
28
|
+
|
|
29
|
+
## Data Fetching Patterns
|
|
30
|
+
|
|
31
|
+
### Server Component (Default)
|
|
32
|
+
```tsx
|
|
33
|
+
export default async function Page() {
|
|
34
|
+
const data = await fetch('https://api.example.com/data')
|
|
35
|
+
return <div>{data}</div>
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### With Params (Async in Next.js 16)
|
|
40
|
+
```tsx
|
|
41
|
+
export default async function Page({
|
|
42
|
+
params,
|
|
43
|
+
}: {
|
|
44
|
+
params: Promise<{ id: string }>
|
|
45
|
+
}) {
|
|
46
|
+
const { id } = await params
|
|
47
|
+
const user = await getUser(id)
|
|
48
|
+
return <UserProfile user={user} />
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### With Search Params (Async in Next.js 16)
|
|
53
|
+
```tsx
|
|
54
|
+
export default async function Page({
|
|
55
|
+
searchParams,
|
|
56
|
+
}: {
|
|
57
|
+
searchParams: Promise<{ q?: string }>
|
|
58
|
+
}) {
|
|
59
|
+
const { q } = await searchParams
|
|
60
|
+
const results = await search(q)
|
|
61
|
+
return <SearchResults results={results} />
|
|
62
|
+
}
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### generateStaticParams (SSG)
|
|
66
|
+
```tsx
|
|
67
|
+
export async function generateStaticParams() {
|
|
68
|
+
const posts = await getPosts()
|
|
69
|
+
return posts.map((post) => ({ slug: post.slug }))
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export default async function Page({
|
|
73
|
+
params,
|
|
74
|
+
}: {
|
|
75
|
+
params: Promise<{ slug: string }>
|
|
76
|
+
}) {
|
|
77
|
+
const { slug } = await params
|
|
78
|
+
const post = await getPost(slug)
|
|
79
|
+
return <Post post={post} />
|
|
80
|
+
}
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### generateMetadata
|
|
84
|
+
```tsx
|
|
85
|
+
export async function generateMetadata({
|
|
86
|
+
params,
|
|
87
|
+
}: {
|
|
88
|
+
params: Promise<{ id: string }>
|
|
89
|
+
}) {
|
|
90
|
+
const { id } = await params
|
|
91
|
+
const product = await getProduct(id)
|
|
92
|
+
return { title: product.name, description: product.description }
|
|
93
|
+
}
|
|
94
|
+
```
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: python-engineering
|
|
3
|
+
description: "Design, implement, review and debug Python services, CLIs, automation, APIs, scripts, packaging and runtime behavior with practical attention to typing, environments, tests and production safety."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Python Engineering
|
|
7
|
+
|
|
8
|
+
Use this skill when a task is primarily about Python code, tooling or runtime behavior.
|
|
9
|
+
|
|
10
|
+
## Workflow
|
|
11
|
+
|
|
12
|
+
- Inspect the real Python entrypoint, environment and dependency model before editing.
|
|
13
|
+
- Identify whether the task is service, CLI, automation, library, notebook or data script work.
|
|
14
|
+
- Keep I/O boundaries explicit: args, env vars, files, HTTP, queues and database calls.
|
|
15
|
+
- Prefer simple module boundaries, type hints where they help, and predictable error handling.
|
|
16
|
+
- Validate with one-shot commands, tests or smoke scripts instead of long-running processes.
|
|
17
|
+
|
|
18
|
+
## Coverage
|
|
19
|
+
|
|
20
|
+
- Python services, CLIs, scripts, packaging, virtualenv/uv/pip workflows and automation.
|
|
21
|
+
- Typing, logging, error handling, serialization, subprocesses and background jobs.
|
|
22
|
+
- Refactors, debugging, code review, reliability hardening and operational scripts.
|
|
23
|
+
|
|
24
|
+
## Reference Anchors
|
|
25
|
+
|
|
26
|
+
- Python docs: `https://docs.python.org/3/`
|
|
27
|
+
- Packaging guide: `https://packaging.python.org/`
|
|
28
|
+
|
|
29
|
+
## Guardrails
|
|
30
|
+
|
|
31
|
+
- Do not mix environment management strategies blindly inside the same project.
|
|
32
|
+
- Do not hide runtime import errors behind broad exception handlers.
|
|
33
|
+
- Do not add heavy dependencies when the standard library is enough.
|
|
34
|
+
- Do not claim reproducibility without validating the real environment path.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ruby-engineering
|
|
3
|
+
description: "Implement and review Ruby applications, scripts and services with practical focus on readability, gem hygiene, CLI/runtime behavior, tests, data handling and operational reliability."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ruby Engineering
|
|
7
|
+
|
|
8
|
+
Use this skill when the task is predominantly Ruby code or Ruby-based tooling.
|
|
9
|
+
|
|
10
|
+
## Workflow
|
|
11
|
+
|
|
12
|
+
- Confirm whether the project is script-first, gem-based, Rails-adjacent or service-oriented.
|
|
13
|
+
- Read Gemfile, runtime version and command entrypoints before changing behavior.
|
|
14
|
+
- Favor clear object boundaries, simple flows and expressive error handling.
|
|
15
|
+
- Keep side effects isolated and validate with direct CLI or test execution.
|
|
16
|
+
- Match the existing Ruby style instead of forcing foreign patterns.
|
|
17
|
+
|
|
18
|
+
## Coverage
|
|
19
|
+
|
|
20
|
+
- Ruby scripts, services, gems, automation, CLI tools and app internals.
|
|
21
|
+
- Bundler, dependency hygiene, serialization, file and process workflows.
|
|
22
|
+
- Debugging, refactoring, code review and runtime hardening.
|
|
23
|
+
|
|
24
|
+
## Reference Anchors
|
|
25
|
+
|
|
26
|
+
- Ruby docs: `https://www.ruby-lang.org/en/documentation/`
|
|
27
|
+
- Ruby core reference: `https://docs.ruby-lang.org/en/`
|
|
28
|
+
|
|
29
|
+
## Guardrails
|
|
30
|
+
|
|
31
|
+
- Do not introduce meta-programming where plain code is clearer.
|
|
32
|
+
- Do not ignore Ruby version compatibility.
|
|
33
|
+
- Do not hide shell or file side effects from operators.
|
|
34
|
+
- Do not add gems for trivial standard-library tasks.
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: senior-fullstack
|
|
3
|
+
description: Comprehensive fullstack development skill for building complete web applications with React, Next.js, Node.js, GraphQL, and PostgreSQL. Includes project scaffolding, code quality analysis, architecture patterns, and complete tech stack guidance. Use when building new projects, analyzing code quality, implementing design patterns, or setting up development workflows.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Senior Fullstack
|
|
7
|
+
|
|
8
|
+
Complete toolkit for senior fullstack with modern tools and best practices.
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
### Main Capabilities
|
|
13
|
+
|
|
14
|
+
This skill provides three core capabilities through automated scripts:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Script 1: Fullstack Scaffolder
|
|
18
|
+
python scripts/fullstack_scaffolder.py [options]
|
|
19
|
+
|
|
20
|
+
# Script 2: Project Scaffolder
|
|
21
|
+
python scripts/project_scaffolder.py [options]
|
|
22
|
+
|
|
23
|
+
# Script 3: Code Quality Analyzer
|
|
24
|
+
python scripts/code_quality_analyzer.py [options]
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Core Capabilities
|
|
28
|
+
|
|
29
|
+
### 1. Fullstack Scaffolder
|
|
30
|
+
|
|
31
|
+
Automated tool for fullstack scaffolder tasks.
|
|
32
|
+
|
|
33
|
+
**Features:**
|
|
34
|
+
- Automated scaffolding
|
|
35
|
+
- Best practices built-in
|
|
36
|
+
- Configurable templates
|
|
37
|
+
- Quality checks
|
|
38
|
+
|
|
39
|
+
**Usage:**
|
|
40
|
+
```bash
|
|
41
|
+
python scripts/fullstack_scaffolder.py <project-path> [options]
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### 2. Project Scaffolder
|
|
45
|
+
|
|
46
|
+
Comprehensive analysis and optimization tool.
|
|
47
|
+
|
|
48
|
+
**Features:**
|
|
49
|
+
- Deep analysis
|
|
50
|
+
- Performance metrics
|
|
51
|
+
- Recommendations
|
|
52
|
+
- Automated fixes
|
|
53
|
+
|
|
54
|
+
**Usage:**
|
|
55
|
+
```bash
|
|
56
|
+
python scripts/project_scaffolder.py <target-path> [--verbose]
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### 3. Code Quality Analyzer
|
|
60
|
+
|
|
61
|
+
Advanced tooling for specialized tasks.
|
|
62
|
+
|
|
63
|
+
**Features:**
|
|
64
|
+
- Expert-level automation
|
|
65
|
+
- Custom configurations
|
|
66
|
+
- Integration ready
|
|
67
|
+
- Production-grade output
|
|
68
|
+
|
|
69
|
+
**Usage:**
|
|
70
|
+
```bash
|
|
71
|
+
python scripts/code_quality_analyzer.py [arguments] [options]
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Reference Documentation
|
|
75
|
+
|
|
76
|
+
### Tech Stack Guide
|
|
77
|
+
|
|
78
|
+
Comprehensive guide available in `references/tech_stack_guide.md`:
|
|
79
|
+
|
|
80
|
+
- Detailed patterns and practices
|
|
81
|
+
- Code examples
|
|
82
|
+
- Best practices
|
|
83
|
+
- Anti-patterns to avoid
|
|
84
|
+
- Real-world scenarios
|
|
85
|
+
|
|
86
|
+
### Architecture Patterns
|
|
87
|
+
|
|
88
|
+
Complete workflow documentation in `references/architecture_patterns.md`:
|
|
89
|
+
|
|
90
|
+
- Step-by-step processes
|
|
91
|
+
- Optimization strategies
|
|
92
|
+
- Tool integrations
|
|
93
|
+
- Performance tuning
|
|
94
|
+
- Troubleshooting guide
|
|
95
|
+
|
|
96
|
+
### Development Workflows
|
|
97
|
+
|
|
98
|
+
Technical reference guide in `references/development_workflows.md`:
|
|
99
|
+
|
|
100
|
+
- Technology stack details
|
|
101
|
+
- Configuration examples
|
|
102
|
+
- Integration patterns
|
|
103
|
+
- Security considerations
|
|
104
|
+
- Scalability guidelines
|
|
105
|
+
|
|
106
|
+
## Tech Stack
|
|
107
|
+
|
|
108
|
+
**Languages:** TypeScript, JavaScript, Python, Go, Swift, Kotlin
|
|
109
|
+
**Frontend:** React, Next.js, React Native, Flutter
|
|
110
|
+
**Backend:** Node.js, Express, GraphQL, REST APIs
|
|
111
|
+
**Database:** PostgreSQL, Prisma, NeonDB, Supabase
|
|
112
|
+
**DevOps:** Docker, Kubernetes, Terraform, GitHub Actions, CircleCI
|
|
113
|
+
**Cloud:** AWS, GCP, Azure
|
|
114
|
+
|
|
115
|
+
## Development Workflow
|
|
116
|
+
|
|
117
|
+
### 1. Setup and Configuration
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
# Install dependencies
|
|
121
|
+
npm install
|
|
122
|
+
# or
|
|
123
|
+
pip install -r requirements.txt
|
|
124
|
+
|
|
125
|
+
# Configure environment
|
|
126
|
+
cp .env.example .env
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### 2. Run Quality Checks
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
# Use the analyzer script
|
|
133
|
+
python scripts/project_scaffolder.py .
|
|
134
|
+
|
|
135
|
+
# Review recommendations
|
|
136
|
+
# Apply fixes
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### 3. Implement Best Practices
|
|
140
|
+
|
|
141
|
+
Follow the patterns and practices documented in:
|
|
142
|
+
- `references/tech_stack_guide.md`
|
|
143
|
+
- `references/architecture_patterns.md`
|
|
144
|
+
- `references/development_workflows.md`
|
|
145
|
+
|
|
146
|
+
## Best Practices Summary
|
|
147
|
+
|
|
148
|
+
### Code Quality
|
|
149
|
+
- Follow established patterns
|
|
150
|
+
- Write comprehensive tests
|
|
151
|
+
- Document decisions
|
|
152
|
+
- Review regularly
|
|
153
|
+
|
|
154
|
+
### Performance
|
|
155
|
+
- Measure before optimizing
|
|
156
|
+
- Use appropriate caching
|
|
157
|
+
- Optimize critical paths
|
|
158
|
+
- Monitor in production
|
|
159
|
+
|
|
160
|
+
### Security
|
|
161
|
+
- Validate all inputs
|
|
162
|
+
- Use parameterized queries
|
|
163
|
+
- Implement proper authentication
|
|
164
|
+
- Keep dependencies updated
|
|
165
|
+
|
|
166
|
+
### Maintainability
|
|
167
|
+
- Write clear code
|
|
168
|
+
- Use consistent naming
|
|
169
|
+
- Add helpful comments
|
|
170
|
+
- Keep it simple
|
|
171
|
+
|
|
172
|
+
## Common Commands
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
# Development
|
|
176
|
+
npm run dev
|
|
177
|
+
npm run build
|
|
178
|
+
npm run test
|
|
179
|
+
npm run lint
|
|
180
|
+
|
|
181
|
+
# Analysis
|
|
182
|
+
python scripts/project_scaffolder.py .
|
|
183
|
+
python scripts/code_quality_analyzer.py --analyze
|
|
184
|
+
|
|
185
|
+
# Deployment
|
|
186
|
+
docker build -t app:latest .
|
|
187
|
+
docker-compose up -d
|
|
188
|
+
kubectl apply -f k8s/
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
## Troubleshooting
|
|
192
|
+
|
|
193
|
+
### Common Issues
|
|
194
|
+
|
|
195
|
+
Check the comprehensive troubleshooting section in `references/development_workflows.md`.
|
|
196
|
+
|
|
197
|
+
### Getting Help
|
|
198
|
+
|
|
199
|
+
- Review reference documentation
|
|
200
|
+
- Check script output messages
|
|
201
|
+
- Consult tech stack documentation
|
|
202
|
+
- Review error logs
|
|
203
|
+
|
|
204
|
+
## Resources
|
|
205
|
+
|
|
206
|
+
- Pattern Reference: `references/tech_stack_guide.md`
|
|
207
|
+
- Workflow Guide: `references/architecture_patterns.md`
|
|
208
|
+
- Technical Guide: `references/development_workflows.md`
|
|
209
|
+
- Tool Scripts: `scripts/` directory
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Architecture Patterns
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This reference guide provides comprehensive information for senior fullstack.
|
|
6
|
+
|
|
7
|
+
## Patterns and Practices
|
|
8
|
+
|
|
9
|
+
### Pattern 1: Best Practice Implementation
|
|
10
|
+
|
|
11
|
+
**Description:**
|
|
12
|
+
Detailed explanation of the pattern.
|
|
13
|
+
|
|
14
|
+
**When to Use:**
|
|
15
|
+
- Scenario 1
|
|
16
|
+
- Scenario 2
|
|
17
|
+
- Scenario 3
|
|
18
|
+
|
|
19
|
+
**Implementation:**
|
|
20
|
+
```typescript
|
|
21
|
+
// Example code implementation
|
|
22
|
+
export class Example {
|
|
23
|
+
// Implementation details
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Benefits:**
|
|
28
|
+
- Benefit 1
|
|
29
|
+
- Benefit 2
|
|
30
|
+
- Benefit 3
|
|
31
|
+
|
|
32
|
+
**Trade-offs:**
|
|
33
|
+
- Consider 1
|
|
34
|
+
- Consider 2
|
|
35
|
+
- Consider 3
|
|
36
|
+
|
|
37
|
+
### Pattern 2: Advanced Technique
|
|
38
|
+
|
|
39
|
+
**Description:**
|
|
40
|
+
Another important pattern for senior fullstack.
|
|
41
|
+
|
|
42
|
+
**Implementation:**
|
|
43
|
+
```typescript
|
|
44
|
+
// Advanced example
|
|
45
|
+
async function advancedExample() {
|
|
46
|
+
// Code here
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Guidelines
|
|
51
|
+
|
|
52
|
+
### Code Organization
|
|
53
|
+
- Clear structure
|
|
54
|
+
- Logical separation
|
|
55
|
+
- Consistent naming
|
|
56
|
+
- Proper documentation
|
|
57
|
+
|
|
58
|
+
### Performance Considerations
|
|
59
|
+
- Optimization strategies
|
|
60
|
+
- Bottleneck identification
|
|
61
|
+
- Monitoring approaches
|
|
62
|
+
- Scaling techniques
|
|
63
|
+
|
|
64
|
+
### Security Best Practices
|
|
65
|
+
- Input validation
|
|
66
|
+
- Authentication
|
|
67
|
+
- Authorization
|
|
68
|
+
- Data protection
|
|
69
|
+
|
|
70
|
+
## Common Patterns
|
|
71
|
+
|
|
72
|
+
### Pattern A
|
|
73
|
+
Implementation details and examples.
|
|
74
|
+
|
|
75
|
+
### Pattern B
|
|
76
|
+
Implementation details and examples.
|
|
77
|
+
|
|
78
|
+
### Pattern C
|
|
79
|
+
Implementation details and examples.
|
|
80
|
+
|
|
81
|
+
## Anti-Patterns to Avoid
|
|
82
|
+
|
|
83
|
+
### Anti-Pattern 1
|
|
84
|
+
What not to do and why.
|
|
85
|
+
|
|
86
|
+
### Anti-Pattern 2
|
|
87
|
+
What not to do and why.
|
|
88
|
+
|
|
89
|
+
## Tools and Resources
|
|
90
|
+
|
|
91
|
+
### Recommended Tools
|
|
92
|
+
- Tool 1: Purpose
|
|
93
|
+
- Tool 2: Purpose
|
|
94
|
+
- Tool 3: Purpose
|
|
95
|
+
|
|
96
|
+
### Further Reading
|
|
97
|
+
- Resource 1
|
|
98
|
+
- Resource 2
|
|
99
|
+
- Resource 3
|
|
100
|
+
|
|
101
|
+
## Conclusion
|
|
102
|
+
|
|
103
|
+
Key takeaways for using this reference guide effectively.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Development Workflows
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This reference guide provides comprehensive information for senior fullstack.
|
|
6
|
+
|
|
7
|
+
## Patterns and Practices
|
|
8
|
+
|
|
9
|
+
### Pattern 1: Best Practice Implementation
|
|
10
|
+
|
|
11
|
+
**Description:**
|
|
12
|
+
Detailed explanation of the pattern.
|
|
13
|
+
|
|
14
|
+
**When to Use:**
|
|
15
|
+
- Scenario 1
|
|
16
|
+
- Scenario 2
|
|
17
|
+
- Scenario 3
|
|
18
|
+
|
|
19
|
+
**Implementation:**
|
|
20
|
+
```typescript
|
|
21
|
+
// Example code implementation
|
|
22
|
+
export class Example {
|
|
23
|
+
// Implementation details
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Benefits:**
|
|
28
|
+
- Benefit 1
|
|
29
|
+
- Benefit 2
|
|
30
|
+
- Benefit 3
|
|
31
|
+
|
|
32
|
+
**Trade-offs:**
|
|
33
|
+
- Consider 1
|
|
34
|
+
- Consider 2
|
|
35
|
+
- Consider 3
|
|
36
|
+
|
|
37
|
+
### Pattern 2: Advanced Technique
|
|
38
|
+
|
|
39
|
+
**Description:**
|
|
40
|
+
Another important pattern for senior fullstack.
|
|
41
|
+
|
|
42
|
+
**Implementation:**
|
|
43
|
+
```typescript
|
|
44
|
+
// Advanced example
|
|
45
|
+
async function advancedExample() {
|
|
46
|
+
// Code here
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Guidelines
|
|
51
|
+
|
|
52
|
+
### Code Organization
|
|
53
|
+
- Clear structure
|
|
54
|
+
- Logical separation
|
|
55
|
+
- Consistent naming
|
|
56
|
+
- Proper documentation
|
|
57
|
+
|
|
58
|
+
### Performance Considerations
|
|
59
|
+
- Optimization strategies
|
|
60
|
+
- Bottleneck identification
|
|
61
|
+
- Monitoring approaches
|
|
62
|
+
- Scaling techniques
|
|
63
|
+
|
|
64
|
+
### Security Best Practices
|
|
65
|
+
- Input validation
|
|
66
|
+
- Authentication
|
|
67
|
+
- Authorization
|
|
68
|
+
- Data protection
|
|
69
|
+
|
|
70
|
+
## Common Patterns
|
|
71
|
+
|
|
72
|
+
### Pattern A
|
|
73
|
+
Implementation details and examples.
|
|
74
|
+
|
|
75
|
+
### Pattern B
|
|
76
|
+
Implementation details and examples.
|
|
77
|
+
|
|
78
|
+
### Pattern C
|
|
79
|
+
Implementation details and examples.
|
|
80
|
+
|
|
81
|
+
## Anti-Patterns to Avoid
|
|
82
|
+
|
|
83
|
+
### Anti-Pattern 1
|
|
84
|
+
What not to do and why.
|
|
85
|
+
|
|
86
|
+
### Anti-Pattern 2
|
|
87
|
+
What not to do and why.
|
|
88
|
+
|
|
89
|
+
## Tools and Resources
|
|
90
|
+
|
|
91
|
+
### Recommended Tools
|
|
92
|
+
- Tool 1: Purpose
|
|
93
|
+
- Tool 2: Purpose
|
|
94
|
+
- Tool 3: Purpose
|
|
95
|
+
|
|
96
|
+
### Further Reading
|
|
97
|
+
- Resource 1
|
|
98
|
+
- Resource 2
|
|
99
|
+
- Resource 3
|
|
100
|
+
|
|
101
|
+
## Conclusion
|
|
102
|
+
|
|
103
|
+
Key takeaways for using this reference guide effectively.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Tech Stack Guide
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This reference guide provides comprehensive information for senior fullstack.
|
|
6
|
+
|
|
7
|
+
## Patterns and Practices
|
|
8
|
+
|
|
9
|
+
### Pattern 1: Best Practice Implementation
|
|
10
|
+
|
|
11
|
+
**Description:**
|
|
12
|
+
Detailed explanation of the pattern.
|
|
13
|
+
|
|
14
|
+
**When to Use:**
|
|
15
|
+
- Scenario 1
|
|
16
|
+
- Scenario 2
|
|
17
|
+
- Scenario 3
|
|
18
|
+
|
|
19
|
+
**Implementation:**
|
|
20
|
+
```typescript
|
|
21
|
+
// Example code implementation
|
|
22
|
+
export class Example {
|
|
23
|
+
// Implementation details
|
|
24
|
+
}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Benefits:**
|
|
28
|
+
- Benefit 1
|
|
29
|
+
- Benefit 2
|
|
30
|
+
- Benefit 3
|
|
31
|
+
|
|
32
|
+
**Trade-offs:**
|
|
33
|
+
- Consider 1
|
|
34
|
+
- Consider 2
|
|
35
|
+
- Consider 3
|
|
36
|
+
|
|
37
|
+
### Pattern 2: Advanced Technique
|
|
38
|
+
|
|
39
|
+
**Description:**
|
|
40
|
+
Another important pattern for senior fullstack.
|
|
41
|
+
|
|
42
|
+
**Implementation:**
|
|
43
|
+
```typescript
|
|
44
|
+
// Advanced example
|
|
45
|
+
async function advancedExample() {
|
|
46
|
+
// Code here
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Guidelines
|
|
51
|
+
|
|
52
|
+
### Code Organization
|
|
53
|
+
- Clear structure
|
|
54
|
+
- Logical separation
|
|
55
|
+
- Consistent naming
|
|
56
|
+
- Proper documentation
|
|
57
|
+
|
|
58
|
+
### Performance Considerations
|
|
59
|
+
- Optimization strategies
|
|
60
|
+
- Bottleneck identification
|
|
61
|
+
- Monitoring approaches
|
|
62
|
+
- Scaling techniques
|
|
63
|
+
|
|
64
|
+
### Security Best Practices
|
|
65
|
+
- Input validation
|
|
66
|
+
- Authentication
|
|
67
|
+
- Authorization
|
|
68
|
+
- Data protection
|
|
69
|
+
|
|
70
|
+
## Common Patterns
|
|
71
|
+
|
|
72
|
+
### Pattern A
|
|
73
|
+
Implementation details and examples.
|
|
74
|
+
|
|
75
|
+
### Pattern B
|
|
76
|
+
Implementation details and examples.
|
|
77
|
+
|
|
78
|
+
### Pattern C
|
|
79
|
+
Implementation details and examples.
|
|
80
|
+
|
|
81
|
+
## Anti-Patterns to Avoid
|
|
82
|
+
|
|
83
|
+
### Anti-Pattern 1
|
|
84
|
+
What not to do and why.
|
|
85
|
+
|
|
86
|
+
### Anti-Pattern 2
|
|
87
|
+
What not to do and why.
|
|
88
|
+
|
|
89
|
+
## Tools and Resources
|
|
90
|
+
|
|
91
|
+
### Recommended Tools
|
|
92
|
+
- Tool 1: Purpose
|
|
93
|
+
- Tool 2: Purpose
|
|
94
|
+
- Tool 3: Purpose
|
|
95
|
+
|
|
96
|
+
### Further Reading
|
|
97
|
+
- Resource 1
|
|
98
|
+
- Resource 2
|
|
99
|
+
- Resource 3
|
|
100
|
+
|
|
101
|
+
## Conclusion
|
|
102
|
+
|
|
103
|
+
Key takeaways for using this reference guide effectively.
|