Install
$ agentstack add skill-eric861129-skills-all-in-one-kanban-skill ✓ 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.
About
Kanban Markdown
Manage kanban board features stored as markdown files with YAML frontmatter. Each feature is a .md file; the VS Code kanban-markdown extension renders them as a board.
File Format
Every feature file follows this exact format:
---
id: "my-feature-2026-02-20"
status: "backlog"
priority: "medium"
assignee: null
dueDate: null
created: "2026-02-20T10:00:00.000Z"
modified: "2026-02-20T10:00:00.000Z"
completedAt: null
labels: []
order: "a0"
---
# My Feature
Description and details here.
Serialization rules (must match exactly for the extension to parse correctly):
- String fields: always
"double-quoted" - Nullable fields (
assignee,dueDate,completedAt): barenullwhen unset - Labels: inline array
["bug", "ui"]or[] - Order:
"double-quoted"string — fractional index for lexicographic sorting (see below) - Field order:
id,status,priority,assignee,dueDate,created,modified,completedAt,labels,order
Valid values:
- status:
backlog|todo|in-progress|review|done - priority:
critical|high|medium|low
For full field specs, see [references/data-model.md](references/data-model.md).
Features Directory
Default: .devtool/features/ relative to workspace root. Configurable via VS Code setting kanban-markdown.featuresDirectory.
- Active features (backlog, todo, in-progress, review):
{featuresDir}/{id}.md - Completed features (done):
{featuresDir}/done/{id}.md
Fractional Index Ordering
The order field uses fractional indexing — lexicographically sortable strings that allow inserting between any two items without reindexing. The extension uses the fractional-indexing npm package internally.
When creating features, determine the order by reading existing features in the target column (sorted by order):
- If the column is empty: use
"a0" - To append after the last item: increment the trailing character —
"a0"→"a1","a1"→"a2", ...,"a9"→"aA", etc. - The full character sequence is
0-9,A-Z,a-z(base-62, ASCII order)
When moving features via drag-and-drop, the extension computes fractional keys between neighbors automatically. The skill only needs to handle appending new features to the end of a column.
Creating Features
- Generate ID: lowercase title, keep only
a-z 0-9 - space, replace spaces with-, collapse multiple-, trim-from ends, truncate to 50 chars, append-YYYY-MM-DD. If empty, usefeature-YYYY-MM-DD. - Set
createdandmodifiedto current ISO timestamp. Setorderby reading existing features in the target column and generating a key that sorts after the last one (see Fractional Index Ordering above). - If status is
done, setcompletedAtto now and place indone/subfolder. - Write frontmatter in exact field order above, then
# Titleand body.
Updating Features
- Always update
modifiedto current ISO timestamp - Never change
idorcreated - Preserve exact serialization format
Moving Features
Update status and modified. When crossing the done boundary:
- To done: set
completedAtto current ISO timestamp, move file todone/subfolder - From done: set
completedAttonull, move file back to root
Writing Content
Start with # Title (the extension extracts the display title from the first # heading). Use acceptance criteria checklists, notes, etc. as needed.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: eric861129
- Source: eric861129/SKILLS_All-in-one
- License: MIT
- Homepage: http://huangchiyu.com/SKILLS_All-in-one/
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.