Install
$ agentstack add skill-camoa-claude-skills-task-context-loader ✓ 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
Task Context Loader
Load all context needed before implementing a task.
Active Tasks
!ls implementation_process/in_progress/ 2>/dev/null
Activation
Activate when you detect:
/ai-dev-assistant:implementcommand- "Work on X task" or "Implement X"
- "Start coding X"
- Beginning a coding session for a component
Workflow
1. Identify Project and Task
Get project path from project_state.md. Find the task:
v3.0.0 Folder Structure:
- Check
implementation_process/in_progress/{task}/for task directory - If directory exists, verify
task.mdfile exists
v2.x Single File (backward compatibility):
- Check
implementation_process/in_progress/{task}.mdfor single file
If neither exists, offer to create one using the Skill tool to invoke implementation-task-creator (it is a skill, not an agent)
2. Load Architecture
Use Read tool to load:
{project_path}/architecture/main.md
{project_path}/architecture/{component}.md (if exists)
Extract from architecture:
- Component purpose
- Dependencies
- Pattern references
3. Load Task Files
v3.0.0 Folder Structure:
Load all relevant phase files:
- Load task.md (tracker):
`` Use Read on {task}/task.md `` Extract:
- Goal
- Acceptance criteria
- Current phase status
- Related tasks
- Load research.md (if exists):
`` Use Read on {task}/research.md `` Context from Phase 1 research
- Load architecture.md (if exists):
`` Use Read on {task}/architecture.md `` Extract:
- Architecture design
- Pattern decisions
- Component specifications
- Load implementation.md (if exists):
`` Use Read on {task}/implementation.md `` Extract:
- Progress notes
- TDD steps
- Files created/modified
- Current status
v2.x Single File (backward compatibility):
Use Read on {task}.md and extract all sections
4. Load Pattern References
From architecture files, find pattern references like:
Based on: core/modules/.../src/...
Use Read to load the referenced core files. Extract:
- Key method signatures
- Dependency injection patterns
- Implementation approach
5. Check for Guides
If project_state.md has a guides path, invoke guide-loader skill for relevant guides.
6. Present Context Summary
Format output as:
## Ready to Implement: {Task Name}
### Objective
{from task file}
### Architecture Summary
{key points from architecture}
### Pattern Reference
{primary core file}:
- Key methods to follow: {list}
- Dependencies to inject: {list}
### TDD Approach
1. Test file: {path}
2. First test: {what to test}
### Files to Create/Modify
- {file 1}: {what to do}
- {file 2}: {what to do}
### Acceptance Criteria
- [ ] {criterion 1}
- [ ] {criterion 2}
### Dependencies
Complete these first:
- {prerequisite task, if any}
---
Ready to write the first test?
7. Activate TDD Companion
After presenting context, remind:
TDD reminder: Write test first, then implement.
Use superpowers:test-driven-development for detailed TDD guidance.
Stop Points
STOP and wait for user:
- If task file not found (offer to create)
- After presenting context summary
- If prerequisites are incomplete (ask how to proceed)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: camoa
- Source: camoa/claude-skills
- 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.