— No reviews yet
0 installs
2 views
0.0% view→install
Install
$ agentstack add skill-jovd83-restassured-skill-plain-text ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Restassured Documentation Plaintext? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Document Test Cases In Plain Text
1. Store And Organize Files
- Store plain-text cases under
docs/tests//. - Create one
.mdor.txtfile per scenario even in this lightweight mode. - Name files with the scenario purpose and classification, for example
list-vets-mss.mdormissing-owner-err.txt. - For non-trivial requirements, keep separate files for
MSS,EXT, andERRinstead of mixing them into one narrative. - Use aggregate files under
docs/testing/only as indexes when the repo wants a summary.
2. Use This Lightweight Structure
- Start with
Title. - Add
Purpose. - Add
Covered requirement. - Add
Preconditions. - Add
Flow. - Add
Expected outcome. - Add
Test script. - Keep the wording concise, readable, and still traceable.
3. Content Rules
- State the test goal clearly in the first sentence.
- Mention any setup or auth state before the flow starts.
- Describe the request flow in a logical sequence.
- State the expected status, important headers, business fields, and side effects.
- Link to the exact Java test method in
Test script. - Keep the content API-specific. Do not use UI language.
4. Start From The Template
- Start from [plain-text-case-template.md](assets/plain-text-case-template.md) for new lightweight scenario docs.
- Keep the headings stable so traceability and documentation-sync work can recognize the file shape consistently.
5. Example
Title: [SPC-OWN-002] ERR: Missing owner lookup
Purpose: Capture the runtime behavior when a client requests an owner id that does not exist.
Covered requirement: GET /api/owners/{ownerId}, operationId=getOwner, SPC-OWN-002
Preconditions:
- The API is running.
- Owner id `999999` does not exist.
Flow:
- Send `GET /api/owners/999999`.
- Observe the returned status and payload behavior.
Expected outcome:
- The runtime returns status `404`.
- The mismatch report records that the documented problem-detail payload is not returned.
Test script: [OwnerReadApiTest.java](C:/repo/src/test/java/com/example/owner/OwnerReadApiTest.java)#missingOwnerReturnsBare404AtRuntime
6. Use Cases
- Use this format for quick reviews or lightweight stakeholder alignment.
- Use this format when the user rejects formal TDD or BDD structures.
- Use this format when the team wants readable notes without losing traceability.
7. Troubleshooting
- Problem: Important response details are missing.
Fix: Add expected status, critical headers, business fields, and side effects explicitly.
- Problem: The document becomes a vague paragraph with no traceability.
Fix: Reintroduce Covered requirement and Test script explicitly.
- Problem: One document covers too many behaviors.
Fix: Split it into one scenario file per behavior, even in plain-text mode.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jovd83
- Source: jovd83/restassured-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.