Replies: 1 comment 1 reply
-
|
The alternative, proposed by @bfreiberg here #5 (comment), is to prefer content and references fully bundled locally. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Following on from PR discussion here, #5
Under discussion is:
1. skill vs power
Proposal:
and the SKILL.md format is also recognized by Claude Code. This is where the
rules, patterns, and bundled references live.
optional MCP config, and points to steering files. The steering files can
contain the same content as the skill's reference files.
Point is to author the content once as a skill structure (SKILL.md + references/), then create a thin POWER.md that maps to the same steering content for Kiro IDE distribution. The content is shared, the packaging differs.
2 Lean Local vs All Local
Recommended Tiered Approach for the Durable Functions Skill
Tier 1: Bundled in SKILL.md (~3KB)
Content the agent will hallucinate without and that rarely changes:
mutations lost, side effects repeat)
etc.), one column per language, just method signatures
Tier 2: Bundled in
references/(~2-3KB)Curated skeletons loaded on demand. Enough to anchor the API shape, not full tutorials:
Handler and test skeletons.
Deployment-gotchas.md — the non-obvious stuff (qualified ARN, IAM policy attachment, IaC snippets for the durable-specific config only)
Tier 3: Links to living docs (in SKILL.md footer)
Everything else — the agent fetches when it needs detail beyond the
skeletons:
(https://docs.aws.amazon.com/durable-execution/) — full SDK reference,
operations, error handling, patterns
What Gets Cut
The current 11 steering files (~106KB) collapse into 3 small reference files (~2-3KB). The content that was in those files either:
Beta Was this translation helpful? Give feedback.
All reactions