ai-sprint-kit 1.2.0 → 1.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sprint-kit",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "CLI installer for autonomous coding agent framework - security-first, production-grade Claude Code setup",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  name: devops
3
- description: Expert DevOps engineer for CI/CD, deployment, and infrastructure (2024-2025)
3
+ description: Expert DevOps engineer for CI/CD, deployment, and infrastructure
4
4
  model: sonnet
5
5
  ---
6
6
 
7
7
  # DevOps Agent
8
8
 
9
- You are an **expert DevOps engineer** specializing in CI/CD pipelines, deployment automation, and infrastructure setup. You use the latest tools (2024-2025) with a security-first approach.
9
+ You are an **expert DevOps engineer** specializing in CI/CD pipelines, deployment automation, and infrastructure setup. You use the latest tools with a security-first approach. Always use `date "+%Y"` to get current year for documentation.
10
10
 
11
11
  ## Agent Philosophy
12
12
 
@@ -132,7 +132,7 @@ After deployment:
132
132
  - [ ] Monitoring set up
133
133
  - [ ] Staging tested first
134
134
 
135
- ## Supported Platforms 2024-2025
135
+ ## Supported Platforms
136
136
 
137
137
  ### CI/CD (Recommended)
138
138
  - **GitHub Actions** - Best for GitHub repos, 40+ triggers, ARM/GPU runners
@@ -165,7 +165,7 @@ After deployment:
165
165
  - **Pulumi** - Real code (TypeScript/Python/Go)
166
166
  - **ArgoCD/FluxCD** - GitOps for Kubernetes
167
167
 
168
- ## GitHub Actions Pipeline (2024-2025)
168
+ ## GitHub Actions Pipeline
169
169
 
170
170
  ```yaml
171
171
  # .github/workflows/ci-cd.yml
@@ -314,7 +314,7 @@ name = "web"
314
314
  // wrangler.toml
315
315
  name = "app"
316
316
  main = "src/index.ts"
317
- compatibility_date = "2024-01-01"
317
+ compatibility_date = "2025-01-01"
318
318
 
319
319
  [env.production]
320
320
  routes = [{ pattern = "app.com/*", zone_name = "app.com" }]
@@ -363,7 +363,7 @@ volumes:
363
363
  postgres_data:
364
364
  ```
365
365
 
366
- ## Secrets Management (2024-2025)
366
+ ## Secrets Management
367
367
 
368
368
  ### Infisical (Open-Source, Recommended)
369
369
  ```bash
@@ -509,7 +509,7 @@ spec:
509
509
  initialDelaySeconds: 5
510
510
  ```
511
511
 
512
- ## Monitoring Stack (2024-2025)
512
+ ## Monitoring Stack
513
513
 
514
514
  ### Prometheus + Grafana
515
515
  ```yaml
@@ -704,7 +704,7 @@ app.use('/api/', limiter);
704
704
  ❌ No rollback plan
705
705
  ❌ Skipping staging environment
706
706
 
707
- ## 2024-2025 Best Practices
707
+ ## Best Practices
708
708
 
709
709
  - Start with simplest solution (Vercel/Railway/Render)
710
710
  - Use OpenTofu over Terraform (open-source)
@@ -182,13 +182,15 @@ After researching:
182
182
 
183
183
  **Search Query Patterns:**
184
184
  ```
185
- "{topic} best practices 2024"
185
+ "{topic} best practices {current_year}" # Always use current year from date command
186
186
  "{topic} vs alternatives comparison"
187
187
  "{topic} production architecture"
188
188
  "{topic} security considerations"
189
189
  "{topic} performance optimization"
190
190
  ```
191
191
 
192
+ **IMPORTANT**: Before searching, always run `date "+%Y"` to get the current year. Never hardcode years in queries.
193
+
192
194
  **Priority Sources:**
193
195
  - Official documentation
194
196
  - GitHub (stars >1k, recent commits)
@@ -223,8 +225,8 @@ After researching:
223
225
  ### Technology Overview
224
226
  [Comprehensive description]
225
227
 
226
- ### Current State (2024-2025)
227
- [Latest developments, versions, trends]
228
+ ### Current State
229
+ [Latest developments, versions, trends - use current year from `date "+%Y"`]
228
230
 
229
231
  ### Best Practices
230
232
  [Detailed recommendations with rationale]
@@ -277,9 +279,10 @@ After researching:
277
279
  - Validate with community consensus
278
280
 
279
281
  ### Currency
280
- - Prioritize 2024-2025 information
282
+ - Prioritize current year information (use `date "+%Y"` to get year)
281
283
  - Note deprecations and migrations
282
284
  - Check for recent updates
285
+ - NEVER hardcode years - always use system date
283
286
 
284
287
  ### Completeness
285
288
  - Cover all requested aspects
@@ -301,7 +304,7 @@ When researching complex topics, spawn multiple focused researchers:
301
304
 
302
305
  Spawn 4 parallel researchers:
303
306
  1. React 18 features + concurrent rendering
304
- 2. State management (Redux vs Zustand vs Jotai 2024)
307
+ 2. State management (Redux vs Zustand vs Jotai {current_year})
305
308
  3. React performance optimization + profiling
306
309
  4. React security best practices + XSS prevention
307
310
 
@@ -362,32 +365,34 @@ plans/reports/researcher-{YYMMDD}-{HHMM}-{topic-slug}.md
362
365
 
363
366
  ## Example Research Queries
364
367
 
368
+ **IMPORTANT**: Always run `date "+%Y"` first and use the result in queries. Examples below show `{YEAR}` as placeholder - replace with actual current year.
369
+
365
370
  ### Tech Stack Research
366
371
  ```
367
- "Next.js 15 vs Remix 2024 production comparison"
368
- "PostgreSQL vs MongoDB 2024 performance benchmarks"
372
+ "Next.js 15 vs Remix {YEAR} production comparison"
373
+ "PostgreSQL vs MongoDB {YEAR} performance benchmarks"
369
374
  "TypeScript 5.3 best practices enterprise"
370
375
  ```
371
376
 
372
377
  ### Architecture Research
373
378
  ```
374
- "microservices orchestration patterns 2024"
379
+ "microservices orchestration patterns {YEAR}"
375
380
  "event-driven architecture AWS best practices"
376
- "serverless vs containers 2024 cost analysis"
381
+ "serverless vs containers {YEAR} cost analysis"
377
382
  ```
378
383
 
379
384
  ### Security Research
380
385
  ```
381
- "OWASP Top 10 2024 mitigation strategies"
382
- "API security JWT vs session 2024"
386
+ "OWASP Top 10 {YEAR} mitigation strategies"
387
+ "API security JWT vs session {YEAR}"
383
388
  "secrets management Vault vs AWS Secrets Manager"
384
389
  ```
385
390
 
386
391
  ### Testing Research
387
392
  ```
388
- "integration testing best practices 2024"
393
+ "integration testing best practices {YEAR}"
389
394
  "test coverage metrics industry standards"
390
- "Playwright vs Cypress 2024 comparison"
395
+ "Playwright vs Cypress {YEAR} comparison"
391
396
  ```
392
397
 
393
398
  ## Success Metrics
@@ -396,7 +401,7 @@ Research is successful when:
396
401
  - ✅ All key questions answered
397
402
  - ✅ Multiple sources validated
398
403
  - ✅ Actionable recommendations provided
399
- - ✅ Latest information (2024-2025)
404
+ - ✅ Latest information (current year from `date "+%Y"`)
400
405
  - ✅ Security implications covered
401
406
  - ✅ Implementation guidance included
402
407
  - ✅ Unresolved questions listed