ワンクリックで
delete-tag
Remove a tag from data/works/tags.ts and all Work.tags arrays in works.ts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Remove a tag from data/works/tags.ts and all Work.tags arrays in works.ts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interactively add a new HistoryEntry to data/history/history.ts. Asks questions in HistoryEntry type property order (name → description → year → approximate → feature → links), validates link URLs, and keeps HISTORIES sorted by year ascending.
Remove an existing HistoryEntry from data/history/history.ts.
Display existing HistoryEntry entries from data/history/history.ts. Supports filtering by year.
Interactively edit an existing HistoryEntry in data/history/history.ts.
Add a new labelled external-link type with a react-icons icon to data/shared/linkIcons.ts. Updates LINK_LABELS, LINK_ICONS, and the import statements.
Interactively add a new Work entry to data/works/works.ts. Asks questions in Work type property order (name → description → tags → year → links), supports new tag creation with similarity check, validates link URLs, and keeps WORKS sorted by year descending.
| name | delete-tag |
| description | Remove a tag from data/works/tags.ts and all Work.tags arrays in works.ts. |
| user-triggered | true |
Remove a tag from data/works/tags.ts and every Work.tags array that references it.
Read data/works/tags.ts and data/works/works.ts.
Output a numbered list of all tags with usage counts (how many works use each). Output: "Which tag to delete? Enter a number." Wait for reply.
If any works use this tag, list them as a warning:
⚠ The following works reference this tag and will have it removed: …
Ask (AskUserQuestion):
"Delete tag \"<tag>\"?"["Yes, delete it", "Cancel"]If Cancel, stop.
data/works/tags.ts: remove the tag from the TAGS array.data/works/works.ts: remove the tag from every Work.tags array that contains it.Run bun run typecheck.