Complete collection of AI agent skills including: - Frontend Development (Vue, React, Next.js, Three.js) - Backend Development (NestJS, FastAPI, Node.js) - Mobile Development (React Native, Expo) - Testing (E2E, frontend, webapp) - DevOps (GitHub Actions, CI/CD) - Marketing (SEO, copywriting, analytics) - Security (binary analysis, vulnerability scanning) - And many more... Synchronized from: https://skills.sh/ Co-Authored-By: Claude <noreply@anthropic.com>
121 lines
2.2 KiB
Bash
121 lines
2.2 KiB
Bash
#!/bin/bash
|
|
# Initialize planning files for a new session
|
|
# Usage: ./init-session.sh [project-name]
|
|
|
|
set -e
|
|
|
|
PROJECT_NAME="${1:-project}"
|
|
DATE=$(date +%Y-%m-%d)
|
|
|
|
echo "Initializing planning files for: $PROJECT_NAME"
|
|
|
|
# Create task_plan.md if it doesn't exist
|
|
if [ ! -f "task_plan.md" ]; then
|
|
cat > task_plan.md << 'EOF'
|
|
# Task Plan: [Brief Description]
|
|
|
|
## Goal
|
|
[One sentence describing the end state]
|
|
|
|
## Current Phase
|
|
Phase 1
|
|
|
|
## Phases
|
|
|
|
### Phase 1: Requirements & Discovery
|
|
- [ ] Understand user intent
|
|
- [ ] Identify constraints
|
|
- [ ] Document in findings.md
|
|
- **Status:** in_progress
|
|
|
|
### Phase 2: Planning & Structure
|
|
- [ ] Define approach
|
|
- [ ] Create project structure
|
|
- **Status:** pending
|
|
|
|
### Phase 3: Implementation
|
|
- [ ] Execute the plan
|
|
- [ ] Write to files before executing
|
|
- **Status:** pending
|
|
|
|
### Phase 4: Testing & Verification
|
|
- [ ] Verify requirements met
|
|
- [ ] Document test results
|
|
- **Status:** pending
|
|
|
|
### Phase 5: Delivery
|
|
- [ ] Review outputs
|
|
- [ ] Deliver to user
|
|
- **Status:** pending
|
|
|
|
## Decisions Made
|
|
| Decision | Rationale |
|
|
|----------|-----------|
|
|
|
|
## Errors Encountered
|
|
| Error | Resolution |
|
|
|-------|------------|
|
|
EOF
|
|
echo "Created task_plan.md"
|
|
else
|
|
echo "task_plan.md already exists, skipping"
|
|
fi
|
|
|
|
# Create findings.md if it doesn't exist
|
|
if [ ! -f "findings.md" ]; then
|
|
cat > findings.md << 'EOF'
|
|
# Findings & Decisions
|
|
|
|
## Requirements
|
|
-
|
|
|
|
## Research Findings
|
|
-
|
|
|
|
## Technical Decisions
|
|
| Decision | Rationale |
|
|
|----------|-----------|
|
|
|
|
## Issues Encountered
|
|
| Issue | Resolution |
|
|
|-------|------------|
|
|
|
|
## Resources
|
|
-
|
|
EOF
|
|
echo "Created findings.md"
|
|
else
|
|
echo "findings.md already exists, skipping"
|
|
fi
|
|
|
|
# Create progress.md if it doesn't exist
|
|
if [ ! -f "progress.md" ]; then
|
|
cat > progress.md << EOF
|
|
# Progress Log
|
|
|
|
## Session: $DATE
|
|
|
|
### Current Status
|
|
- **Phase:** 1 - Requirements & Discovery
|
|
- **Started:** $DATE
|
|
|
|
### Actions Taken
|
|
-
|
|
|
|
### Test Results
|
|
| Test | Expected | Actual | Status |
|
|
|------|----------|--------|--------|
|
|
|
|
### Errors
|
|
| Error | Resolution |
|
|
|-------|------------|
|
|
EOF
|
|
echo "Created progress.md"
|
|
else
|
|
echo "progress.md already exists, skipping"
|
|
fi
|
|
|
|
echo ""
|
|
echo "Planning files initialized!"
|
|
echo "Files: task_plan.md, findings.md, progress.md"
|