Loading...
Loading...
Pick up the next Linear issue — validate context, create branch, plan approach
npx skill4agent add seangjr/product-skills start-taskgit status --porcelainlinear.linear-projectPROJECT=$(cat .linear-project)PROJECT_FLAGlinear issue view $ISSUE_IDlinear issue list -s unstarted --limit 10 $PROJECT_FLAGlinear issue list -s started --limit 10 $PROJECT_FLAGlinear issue view $ISSUE_ID{team-prefix}-{number}-{slug}eng-123-add-auth-flowgit checkout -b $BRANCH_NAME$BRANCH_NAMElinear issue update $ISSUE_ID -s "In Progress"Plan for ENG-123: Add user authentication flow
─────────────────────────────────────────────
1. Create auth middleware in src/middleware.ts
2. Add login page at app/(auth)/login/page.tsx
3. Implement session management with Convex Auth
4. Add protected route wrapper component
5. Write tests for auth flow