Adds the /evaluate-library skill runbook at .claude/skills/evaluate-library/ with SKILL.md (8-filter + 3-prompt protocol, collect-cheap-skip-expensive ordering, trace-write step, skip sentinel), POLICY.md (ADR-022 summary ≤2 pages), TRACE-TEMPLATE.md (complete YAML frontmatter + 11 headings in order), and EXAMPLES/ with one approved (clsx) and one rejected (trpc-to-openapi, named-consumer: fail) worked trace. Updates session-start.sh to surface the skill in session pointers. The skill is auto-registered by the harness on SKILL.md creation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
|