Install
$ agentstack add skill-demondamon-agenticx-feature-loop ✓ 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
Feature Loop
Use when session_mode == feature_loop and the project is past the Initializer phase (system prompt will say "Coding 阶段").
Iron rules
- One feature per session. Multiple
in_progressfeatures are forbidden by the store; do not bypass. - Always verify before commit.
feature_completerejects features that have not been promoted toverifiedviaverify_run. - Keep the branch mergeable. Each commit must compile, pass
verify.yaml, and not depend on uncommitted local state.
Loop
- Sync from disk. Call
project_statusfirst thing every session — it readsfeature_list.json/status.json/progress.mdand reseeds your understanding from the single source of truth. - Pick a feature.
- If
status.active_feature_idis already set, resume that one (the prompt block will tell you). - Otherwise call
feature_selectwith no arguments to auto-pick the highest-priority pending feature with satisfied dependencies, or passfeature_idwhen the user names one.
- Implement using code_dev phases (Explore → Read → Author):
- Explore with
code_outline,grep, optionalcode_search. - Read with
file_readslices (start/end line). Track files you have read in scratchpad. - Author with
file_writeskeletons first, then section-by-section appends.
- Run the gate. Call
verify_run feature_id=. If any step fails:
- Do not call
feature_complete. - Log a
progress_appendwith the failing step name and root cause. - Decide: fix and rerun
verify_run, or escalate to the user with the specific failure.
- Commit via shell.
`` git add -A git commit -m "feat(): " ` Capture the resulting sha (git rev-parse HEAD`).
- Promote to committed. Call
feature_complete feature_id= commit_sha=. The store writes an immutable archive snapshot under.agx/project/archive/feature_.json. - Decide next step. Either call
feature_selectfor the next feature in the same session, or stop and tell the user the loop closed cleanly.
Failure modes
- verify_run timeouts: do not retry blindly. Inspect the log under
.agx/project/archive/, fix the root cause, then rerun. - Dependency missed:
feature_selectwill reject features whosedepends_onisn'tcommitted. Either pick a different feature or finish the prerequisite first. - Lost context after window compaction: re-call
project_status. Disk is the source of truth. - Cold start (new machine, fresh session):
project_status+feature_selectis enough to resume. No memory of previous turns is required.
Forbidden
- Editing files inside
.agx/project/archive/(immutable). - Calling
project_initoutside the Initializer phase. - Skipping
verify_runbecause "tests are too slow".
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: DemonDamon
- Source: DemonDamon/AgenticX
- License: Apache-2.0
- Homepage: https://www.agxbuilder.com/
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.