1.4 KiB
1.4 KiB
name, description
| name | description |
|---|---|
| arkie-frontend-onboarding | Onboard an AI agent to the Arkie Library frontend repo. Use when starting work in this repository, checking branch/deploy rules, or refreshing project context before coding. |
Arkie Frontend Onboarding
Use this skill before making non-trivial changes in the Arkie Library frontend repo.
1. Read project context
Read these files in order:
README.mdAGENTS.mddocs/workflow.mddocs/deploy.mdif the task touches deploy, CI, environment variables, ormainbranch pushes.
2. Check current git state
Run:
git status --short --branch
git branch --show-current
Rules:
mainis the production deploy branch.terry-stagingis the staging/work branch.- Do not commit or push unless Terry explicitly asks.
3. Recall memory
Search project memory for relevant context before decisions, especially for:
- branch/deploy workflow
- frontend conventions
- admin UI behavior
- TypeScript/format failures
- prior fixes touching the same files
4. Validate before finishing
For code changes, run:
npx tsc --noEmit
npm run format:check
Run npm run build when changes affect routes, config, build, deploy, env vars, or dependencies.
5. Report clearly
Summarize:
- files changed
- commands run and results
- current branch/status
- whether anything needs pull/push/deploy