Agent SkillsAgent Skills

Session Management

Save/restore sessions, memory management, and methodology packs

trackrecallmethod

track#

Session state tracking β€” save and restore working context.

skills track [command]
# Alias: skills tk
SubcommandDescription
save [options] <name>Save current session state
restore <name>Restore a saved session
listList saved sessions
show <name>Show session details
delete <name>Delete a saved session

recall#

Session memory β€” store and recall context across sessions.

skills recall [command]
# Alias: skills rc
SubcommandDescription
save [options] <key> <value>Save a memory entry
get <key>Retrieve a memory entry
list [options]List all memory entries
search <query>Search memory entries
delete <key>Delete a memory entry
clearClear all memory entries

Example:

skills recall save api-key "sk-123..."
skills recall get api-key
skills recall list
skills recall search "api"

method#

Apply development methodology packs.

skills method [command]
# Alias: skills mt
SubcommandDescription
listList available methodology packs
show <name>Show methodology details
apply [options] <name>Apply a methodology as a skill

Built-in Packs:

PackDescription
tddTest-Driven Development
dddDomain-Driven Design
cleanClean Architecture
solidSOLID Principles
trunkTrunk-Based Development

Example:

skills method list
skills method show tdd
skills method apply tdd