You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove dead accepted/rejected fields, add training tips, expand limitations
Gaps found by simulation team:
1. Remove `accepted`/`rejected` counters from TrainingBlockMeta — they were
never incremented anywhere in the codebase (dead code since inception)
2. Add 5 training discoverability tips to TUI tips (was 0 mentions in 152 tips)
3. Expand limitations section in docs with honest, complete list:
context budget, 20/kind limit, no approval workflow, SQL-focused,
git discipline required
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/docs/data-engineering/training/index.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,10 +146,13 @@ Training doesn't replace CLAUDE.md. They complement each other:
146
146
147
147
## Limitations
148
148
149
-
-**Not a linter.** Training is advisory — the agent follows it, but it's not enforced at build time. For critical rules, also add dbt tests.
150
-
-**Not an audit trail.** No approval workflows or change tracking beyond git history.
151
-
-**Not automatic.** The agent proposes, you confirm. This is intentional.
152
-
-**SQL-focused scanning.** The `/teach` skill works best with SQL/dbt files. Python patterns must be taught manually.
149
+
-**Advisory, not enforced.** Training guides the agent, but it's not a hard gate. For critical rules, also add dbt tests or sqlfluff rules that block CI.
150
+
-**No approval workflow.** Anyone with repo access can save training to project scope. Use code review on `.altimate-code/memory/` changes for governance.
151
+
-**No audit trail** beyond git history. Training doesn't track who saved what — use `git blame` on the training files.
152
+
-**Context budget.** Training competes for context space. Under pressure, least-relevant entries are excluded. Run `/training-status` to see what's included.
153
+
-**20 entries per kind.** Hard limit. Consolidate related rules into one entry rather than saving many small ones.
154
+
-**SQL-focused file analysis.** The `/teach` skill works best with SQL/dbt files. Python, PySpark, and other patterns must be taught manually via conversation.
155
+
-**Team sync requires git discipline.** Training saves to disk but doesn't auto-commit. Commit `.altimate-code/memory/` changes to share with your team.
0 commit comments