This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I want you to build me a "dev-knowledge vault": a git repo of markdown notes (I'll open it in Obsidian) that documents how you and I collaborate, and that YOU own and use to make our way of working progressively more autonomous. It covers the collaboration only, never product or codebase state. That stays in each repo's own docs. | |
| Create it at ~/Projects/dev-knowledge with this structure: | |
| 1. **Seed it with an archaeology pass, not from scratch.** Mine my Claude Code session transcripts (~/.claude/projects/*/*.jsonl) and the git history of my main repos. Write WORKFLOW.md: a baseline snapshot of how we actually work today. How I initiate work, which workflows we use, how I correct you (quote real corrections and classify them), and where time actually goes (rank the friction classes). Cite evidence: dates, quotes, PR counts. No vibes-only claims. | |
| 2. **patterns/**: one atomic learning per note, with frontmatter `status: observed | confirmed | applied`, `scope:` (which projects it applies to), and `applied-to: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HEARTBEAT.md -- CEO Heartbeat Checklist | |
| Run this checklist on every heartbeat. | |
| ## 1. Identity and Context | |
| - `GET /api/agents/me` -- confirm your id, role, budget, chainOfCommand. | |
| - Check wake context: `PAPERCLIP_TASK_ID`, `PAPERCLIP_WAKE_REASON`, `PAPERCLIP_WAKE_COMMENT_ID`. | |
| - Read `CLAUDE.md` if this is your first run of the day. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /home/dev/bunny-game-api | |
| [ $(git rev-parse HEAD) = $(git ls-remote $(git rev-parse --abbrev-ref @{u} | \ | |
| sed 's/\// /g') | cut -f1) ] && echo up to date || (git pull && docker compose up -d --build api database) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import styled from 'styled-components' | |
| import { Colors, Spacings } from '../theme.ts' | |
| const PrimaryButton = styled.button` | |
| background-color: ${Colors.primary}; | |
| border: 0; | |
| margin-bottom: ${Spacings.md}; | |
| ` | |
| const Component1 = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const Spacings = { | |
| xs: '4px', | |
| sm: '8px', | |
| md: '16px', | |
| lg: '32px', | |
| xl: '64px' | |
| } | |
| export const colors = { | |
| primary: '#00A6FB', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import styled from 'styled-components' | |
| const PrimaryButton = styled.button` | |
| background-color: ${({theme}) => theme.colors.primary}; | |
| border: 0; | |
| margin-bottom: ${({theme}) => theme.spacings.md}; | |
| ` | |
| const Component1 = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { ThemeProvider } from 'styled-components' | |
| import { theme } from './theme.ts' | |
| const App = () => { | |
| return <> | |
| <ThemeProvider theme={theme}> | |
| <Component1 /> | |
| <Component2 /> | |
| <Component3 /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const theme = { | |
| spacings: { | |
| xs: '4px', | |
| sm: '8px', | |
| md: '16px', | |
| lg: '32px', | |
| xl: '64px' | |
| }, | |
| colors: { | |
| primary: '#00A6FB', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import styled from 'styled-components' | |
| const FishBubble = styled.div.attrs(({ y, x }: { y: number; x: number }) => ({ | |
| style: { | |
| top: `${y}%`, | |
| left: `${x}px` | |
| } | |
| }))` | |
| position: absolute; | |
| height: 4px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import styled from 'styled-components' | |
| const FishBubble = styled.div<{ x: number; y: number }>` | |
| top: ${({ y }) => y}%; | |
| left: ${({ x }) => x}px; | |
| position: absolute; | |
| height: 4px; | |
| width: 4px; | |
| background-color: white; | |
| animation: up 1.5s linear forwards; |
NewerOlder