@letta-ai/letta-code 0.31.6 → 0.31.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mcp-client.js +2 -2
- package/dist/mcp-client.js.map +1 -1
- package/dist/types/backend/backend.d.ts +7 -0
- package/dist/types/backend/backend.d.ts.map +1 -1
- package/dist/types/utils/secrets-store.d.ts +4 -0
- package/dist/types/utils/secrets-store.d.ts.map +1 -1
- package/letta.js +18 -14
- package/package.json +1 -1
- package/scripts/agent-watch/verify-pr-identity.test.ts +97 -0
- package/scripts/agent-watch/verify-pr-identity.ts +119 -0
- package/scripts/builtin-skills-watch/aggregate-results.ts +13 -8
- package/scripts/builtin-skills-watch/evidence.test.ts +61 -17
- package/scripts/builtin-skills-watch/evidence.ts +66 -38
- package/scripts/builtin-skills-watch/finalize-result.test.ts +125 -0
- package/scripts/builtin-skills-watch/finalize-result.ts +44 -0
- package/scripts/builtin-skills-watch/reconcile-results.test.ts +58 -0
- package/scripts/builtin-skills-watch/reconcile-results.ts +311 -0
- package/scripts/builtin-skills-watch/result-artifacts.test.ts +83 -0
- package/scripts/builtin-skills-watch/result-artifacts.ts +160 -0
- package/scripts/builtin-skills-watch/update-tracker.test.ts +17 -1
- package/scripts/builtin-skills-watch/update-tracker.ts +89 -15
- package/scripts/claude-watch/update-tracker.test.ts +30 -0
- package/scripts/claude-watch/update-tracker.ts +19 -5
- package/scripts/codex-watch/update-tracker.test.ts +28 -0
- package/scripts/codex-watch/update-tracker.ts +59 -7
- package/skills/letta-guide/SKILL.md +6 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: letta-guide
|
|
3
|
-
description:
|
|
3
|
+
description: Read the official Letta documentation (docs.letta.com) through its cached, ETag-checked fetch route. Load before ANY docs.letta.com retrieval — answering how Letta works, what Letta (or you) can do, setting up providers, models, channels, skills, memory, schedules, permissions, self-hosting, pricing, or billing, AND looking up Letta API, Agent SDK, or Letta Code reference while writing code. Do not use fetch_webpage or web_search on docs.letta.com; this skill's helper is the docs route. Never answer Letta product questions from memory alone.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Letta Guide
|
|
@@ -8,7 +8,11 @@ description: Answer questions about Letta itself from the official documentation
|
|
|
8
8
|
You are running inside Letta, but your training data about Letta's commands,
|
|
9
9
|
flags, settings, UI, pricing, and providers is out of date. Users lose trust
|
|
10
10
|
fastest when an agent confidently invents product details. This skill defines
|
|
11
|
-
how to
|
|
11
|
+
how to read the Letta docs correctly — both when answering questions about
|
|
12
|
+
Letta and when looking up API, Agent SDK, or Letta Code reference during
|
|
13
|
+
development. Guessing a docs URL and fetching it with `fetch_webpage` misses
|
|
14
|
+
pages that exist under a different path and can serve stale content; the
|
|
15
|
+
helper below fetches the live index first, so you pick a URL that exists.
|
|
12
16
|
|
|
13
17
|
## Source route (in order)
|
|
14
18
|
|