lazyweb-remove-inspo-source
GitHub用于断开 Lazyweb 设计技能的外部灵感库连接。通过列出已连接的库,让用户选择并移除指定源,更新配置文件,最后确认断开操作,使设计技能不再搜索该来源。
Trigger Scenarios
Install
npx skills add NeverSight/learn-skills.dev --skill lazyweb-remove-inspo-source -g -y
SKILL.md
Frontmatter
{
"name": "lazyweb-remove-inspo-source",
"description": "Disconnect an inspiration source from Lazyweb design skills.\nLists connected sources and removes the selected one.\nTrigger on: \"remove inspo source\", \"remove inspiration source\",\n\"disconnect Mobbin\", \"remove design source\", \"unlink source\".\n",
"allowed-tools": [
"Bash",
"Read",
"Write",
"AskUserQuestion"
]
}
Remove Inspiration Library
Disconnect an external inspiration library so Lazyweb design skills no longer search it.
Workflow
1. List Connected Libraries
cat ~/.lazyweb/libraries.json 2>/dev/null || echo '{"libraries":[]}'
If no libraries are connected, tell the user: "No inspiration libraries are connected.
Use /lazyweb-add-inspo-source to connect one."
2. Ask Which to Remove
If the user didn't specify, show the list and ask which library to disconnect. If only one library is connected, confirm they want to remove it.
3. Remove from Config
Read ~/.lazyweb/libraries.json, remove the selected library from the libraries
array, write back. If the array is now empty, you can either leave the empty array
or delete the file.
4. Confirm
Tell the user: "{Name} has been disconnected. Lazyweb design skills will no longer search it."
Version History
- e0220ca Current 2026-07-05 22:20


