18 lines
950 B
Bash
Executable File
18 lines
950 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tier 2 — surfaces a fresh session's "where to look first" pointers.
|
|
# Output on stdout is injected as additional context.
|
|
|
|
cat <<'EOF'
|
|
=== template-vertical session pointers ===
|
|
Canonical vocabulary: docs/glossary.md (resolve "what does X mean here?" first)
|
|
Architecture: AGENTS.md, docs/architecture/overview.md, docs/architecture/agent-first-workflow-and-conformance.md
|
|
Workflow: pnpm work status | pnpm work next | pnpm work dispatch (ADR-019)
|
|
Generator-first: pnpm turbo gen <kind> beats hand-rolled scaffolding (non-negotiable)
|
|
Conformance: pnpm conformance + pnpm fallow (5-gate drift detection)
|
|
Conventional Commits (non-negotiable): <type>(<scope>): <subject> — see CLAUDE.md Key Conventions
|
|
Releases: release-please reads commits + opens rolling release PR on merge to main (ADR-021)
|
|
Skills: to-prd, grill-with-docs, grill-me, handoff, improve-codebase-architecture, evaluate-library (.claude/skills/)
|
|
EOF
|
|
|
|
exit 0
|