docs(skills): add quickapps-write-integration-test skill#350
Draft
andrii-novikov wants to merge 1 commit into
Draft
docs(skills): add quickapps-write-integration-test skill#350andrii-novikov wants to merge 1 commit into
andrii-novikov wants to merge 1 commit into
Conversation
Adds a project skill guiding creation of integration tests from a design doc. Captures the non-obvious harness traps (cache covers only tool-deployment calls so the orchestrator runs live; weak cacheable models cannot drive multi-step tool flows; _check_unexpected_tools constraints; tool-result attachments do not reach the final message; stale test server serves old routes) plus the self-proving marker pattern and the 4-edit recipe for adding REST test tooling.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Applicable issues
Description of changes
Adds a project skill —
.claude/skills/quickapps-write-integration-test/SKILL.md— that guides creating an integration test for a QuickApps 2.0 feature (typically from a design doc underdocs/designs/).It deliberately does not duplicate
.claude/rules/integration-testing.md(which documents the harness API/mechanics and auto-loads in the test dir). Instead it captures the workflow (design doc → passing test) and the non-obvious traps learned while writing the large-tool-response offload integration test:AGENT_MODELSentry) always runs live, so a REST/internal/MCP-only flow produces no.responsefiles to generate or commit._check_unexpected_tools— every called tool must be expected and every expected tool called ≥1; steer with a tight prompt and the smallestconfig_file_set.AttachmentCheck.curl-verify new endpoints.Plus the self-proving marker test-design pattern and the 4-edit recipe for adding REST test tooling.
Validated TDD-style: a fresh subagent given the skill + a different design doc (
dial_files_tools.md) produced a correct, pitfall-free test plan citing the skill's specific warnings.Single new file; no code changes.
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.