Install
$ agentstack add skill-tomzx-agents-create-assumption ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Create Assumption
Records an assumption made during implementation: what is being assumed, why, how confident the team is, what breaks if the assumption is wrong, and how to validate it.
Assumptions differ from decisions: a decision is a deliberate choice between known options; an assumption is something believed to be true that has not been fully verified.
Prerequisites
- Apply the shared SDLC conventions in
skills/sdlc/references/shared.md. - An assumption that was made (implicitly or explicitly) during design or implementation
- Enough context to assess its basis and risk
Steps
- State the assumption clearly and specifically.
- Describe the basis: what evidence or reasoning supports it.
- Assess confidence level and risk if the assumption is wrong.
- Describe the impact on the implementation if the assumption turns out to be false.
- Define a validation plan: how and when to confirm or refute the assumption.
- Save the document to
.sdlc/knowledge/assumptions/using the filename patternN-.mdwhereNis the next available number (counting existing files in that directory).
Output Format
Use the template at skills/sdlc/templates/knowledge/assumption.md (copied to .sdlc/templates/knowledge/assumption.md by /initialize-sdlc-directory; use the project's customized copy if present). Write the result to the artifact path named in the steps above.
Example Usage
Scenario 1: Load assumption Assuming the service will handle at most 1,000 concurrent users based on the current contract. Basis: product manager's statement in the kick-off meeting. Confidence: Medium (verbal, not written). Risk if wrong: connection pool and caching strategy are sized for this load; exceeding it causes timeouts. Validation: confirm in writing with PM before go-live.
Scenario 2: Third-party API behavior Assuming a vendor API returns results within 500ms at p99. Basis: vendor's marketing docs; no SLA contract yet. Confidence: Low. Risk if wrong: timeout budgets in the gateway are set to 600ms; slow responses cascade. Validation: run a latency spike against the staging endpoint in Phase 1.
Scenario 3: User behaviour Assuming users will complete onboarding in a single session. Basis: UX research from a similar product two years ago. Confidence: Medium. Risk if wrong: multi-session onboarding requires persisting partial state, which is not currently designed. Validation: monitor drop-off in the first two weeks after launch.
Completion Checklist
Before handing off to review, confirm:
- [ ] Basis stated explicitly, or flagged as a guess with no basis
- [ ] Validation plan has a concrete method and a target date
Self-check the record against the [review-assumption checklist](../review-assumption/SKILL.md) and fix what you can, so review finds less to flag.
Useful Commands Reference
No CLI commands required. This skill operates on information provided in context and writes a Markdown file.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tomzx
- Source: tomzx/agents
- 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.