@linchpinagency/skills 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +1 -1
- package/skills/task-tracking/SKILL.md +28 -5
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ GitHub Copilot, and other compatible coding agents.
|
|
|
12
12
|

|
|
13
13
|
|
|
14
14
|
<!-- x-release-please-start-version -->
|
|
15
|
-
### Latest release: 0.1.
|
|
15
|
+
### Latest release: 0.1.7
|
|
16
16
|
<!-- x-release-please-end -->
|
|
17
17
|
|
|
18
18
|
| Release | Skill standard | Install |
|
|
@@ -81,6 +81,7 @@ The fastest way to understand the library is to run one loop end to end:
|
|
|
81
81
|
| Understand a repo you just cloned | "what am I working with here?" | `project-context` |
|
|
82
82
|
| Find out why something's broken | "the hero image 404s on mobile" | `investigate` |
|
|
83
83
|
| Test a site like a user, and fix what's found | "QA the checkout flow" | `web-qa` |
|
|
84
|
+
| File work for later | "create an issue for the broken footer link" | `task-tracking` |
|
|
84
85
|
| Check it's ready to commit | "is this ready to commit?" | `quality-gates` |
|
|
85
86
|
| Commit and open the PR properly | "commit this and open a PR" | `commit-and-release` + `task-tracking` |
|
|
86
87
|
| Handle a client support ticket | "the client says their contact form isn't sending" | `support-triage` |
|
|
@@ -232,7 +233,7 @@ A project that wants skills in more than one agent's directory should run
|
|
|
232
233
|
| `support-triage` | Project mgmt | Run a client support request end to end — clarify the real need, reproduce, judge urgency and scope, fix in the right layer, verify, and close the loop with the requester. |
|
|
233
234
|
| `dependency-updates` | Workflow | Handle the dependency work Renovate can't automerge — majors, breaking changes, failing or conflicted bot PRs, security advisories, `@wordpress/*` package sets. |
|
|
234
235
|
| `commit-and-release` | Workflow | Write commits, branches, and PR titles that satisfy the repo's own commitlint rules, and stay out of release-please's way (it owns versions and `CHANGELOG.md`). |
|
|
235
|
-
| `task-tracking` | Workflow | Tie every unit of work to a ClickUp task (or explicit `NO-TASK`) with minimal friction via the ClickUp MCP — resolve/search a task,
|
|
236
|
+
| `task-tracking` | Workflow | Tie every unit of work to a ClickUp task (or explicit `NO-TASK`) with minimal friction via the ClickUp MCP — resolve/search a task, create one on request ("create an issue" means ClickUp, not GitHub), update it when the work lands, and carry the task key in the conventional-commit scope. |
|
|
236
237
|
| `write-a-linchpin-skill` | Meta | The house standard for authoring skills in this library — placement test, tier model, required frontmatter, the section skeleton, and the four house rules. Enforced by `scripts/validate-skills.mjs`. |
|
|
237
238
|
|
|
238
239
|
_(More WordPress, React, Cloudflare Workers, marketing, and design skills to come.)_
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: task-tracking
|
|
3
|
-
description: Associate every unit of work with a task in Linchpin's task platform (currently ClickUp, via the ClickUp MCP) with the least
|
|
4
|
-
version: 1.
|
|
3
|
+
description: Associate every unit of work with a task in Linchpin's task platform (currently ClickUp, via the ClickUp MCP) with the least friction, update it when the work lands, and leave a handoff when stopping mid-flight. Use whenever starting work, creating a TODO, preparing to commit, finishing a change, or pausing work someone else may pick up — and whenever anyone says "create an issue", "create a task", "file a ticket", or "log a bug", all of which mean a ClickUp task unless they name GitHub. Resolve a task from an ID/custom-ID/URL or by searching; if none exists, confirm NO-TASK and keep working. The conventional-commit scope carries the task key (e.g. LINCHPIN-5113) or NO-TASK.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Task tracking (ClickUp)
|
|
@@ -18,6 +18,8 @@ platform change.
|
|
|
18
18
|
## When to use
|
|
19
19
|
|
|
20
20
|
- Starting any unit of work, before cutting a branch.
|
|
21
|
+
- **Anyone asking for an issue, task, ticket, bug, or backlog item to be created** — in any
|
|
22
|
+
wording. See *"Create an issue" means ClickUp* below.
|
|
21
23
|
- Opening a local TODO that should exist in the task system too.
|
|
22
24
|
- Preparing to commit and needing the scope key.
|
|
23
25
|
- Finishing work — the task needs its status and a pointer to the PR.
|
|
@@ -32,6 +34,21 @@ Canonical for: resolving, creating, and updating the task; the **scope key** tha
|
|
|
32
34
|
commits; branch naming; and the PR ↔ task link. Everything about the commit message *other
|
|
33
35
|
than the scope* belongs to [`commit-and-release`](../commit-and-release/SKILL.md).
|
|
34
36
|
|
|
37
|
+
## "Create an issue" means ClickUp
|
|
38
|
+
|
|
39
|
+
**"Issue", "task", "ticket", "bug", "backlog item" — all of them mean a ClickUp task here.**
|
|
40
|
+
Asked to create one, run the creation flow in step 3. Being in a GitHub repo, reviewing a
|
|
41
|
+
PR, or reading `gh` output does not make "create an issue" mean a GitHub issue. Which space,
|
|
42
|
+
folder, and (for multi-site clients) which site it lands in is
|
|
43
|
+
[`engagement-types`](../engagement-types/SKILL.md)'s call.
|
|
44
|
+
|
|
45
|
+
**A GitHub issue only when GitHub is named** — "open a *GitHub* issue", "file it in the
|
|
46
|
+
repo's issues", "`gh issue create`". Open it with `gh issue create`; if it's work Linchpin
|
|
47
|
+
will do, create the ClickUp task too and cross-link them (issue body →
|
|
48
|
+
`app.clickup.com/t/<KEY>`; `clickup_create_comment` → issue URL). ClickUp stays the system
|
|
49
|
+
of record. For the genuinely ambiguous — a public repo where issues *are* the tracker — ask
|
|
50
|
+
once with `AskUserQuestion`, recommending ClickUp.
|
|
51
|
+
|
|
35
52
|
## Vocabulary
|
|
36
53
|
|
|
37
54
|
- **Task key / issue key** — ClickUp's *custom ID*, e.g. `LINCHPIN-5113`. Space-scoped, so
|
|
@@ -78,6 +95,10 @@ Don't ask repeatedly and don't nag — one prompt at commit time.
|
|
|
78
95
|
|
|
79
96
|
### 3. Creation flow (least friction)
|
|
80
97
|
|
|
98
|
+
Reached two ways: from step 2 (a NO-TASK change about to be committed), or directly, when
|
|
99
|
+
someone just says *"create an issue/task for X"* — that's a standalone request and doesn't
|
|
100
|
+
need a commit or a branch behind it.
|
|
101
|
+
|
|
81
102
|
`clickup_create_task` requires a `list_id` and `name`. Resolve the list with the cheapest
|
|
82
103
|
path that works:
|
|
83
104
|
|
|
@@ -192,6 +213,7 @@ Work happens on a dedicated branch opened as a PR against the base branch (usual
|
|
|
192
213
|
|
|
193
214
|
## Gotchas
|
|
194
215
|
|
|
216
|
+
- **"Issue" is not a GitHub word here.** Route it to ClickUp unless GitHub was named.
|
|
195
217
|
- **Search before creating** — avoid duplicate tasks; an open task often already exists.
|
|
196
218
|
- **Don't dump the hierarchy.** 36 spaces is overwhelming; always scope `space_ids` and go
|
|
197
219
|
only as deep as you need (`max_depth`).
|
|
@@ -216,11 +238,10 @@ Work happens on a dedicated branch opened as a PR against the base branch (usual
|
|
|
216
238
|
| Move the status | `clickup_update_task` (valid statuses come from the List) |
|
|
217
239
|
| Hand off mid-flight | `clickup_create_comment` with the five-line handoff block |
|
|
218
240
|
|
|
219
|
-
Where a *new* task belongs — which space, folder, and (on multi-site clients) which site —
|
|
220
|
-
is decided by [`engagement-types`](../engagement-types/SKILL.md).
|
|
221
|
-
|
|
222
241
|
## Guardrails
|
|
223
242
|
|
|
243
|
+
- **Never open a GitHub issue in place of a ClickUp task.** "Create an issue" means ClickUp;
|
|
244
|
+
`gh issue create` needs the user to have said *GitHub*.
|
|
224
245
|
- **Never invent a task key.** If you can't resolve one, `NO-TASK` is the correct answer.
|
|
225
246
|
- **Never block the user** waiting for a task decision — NO-TASK is always available.
|
|
226
247
|
- **Never mark a task complete** on your own judgment. An open PR is at most "in review";
|
|
@@ -233,6 +254,8 @@ is decided by [`engagement-types`](../engagement-types/SKILL.md).
|
|
|
233
254
|
|
|
234
255
|
## Done
|
|
235
256
|
|
|
257
|
+
- [ ] Any "create an issue/task/ticket" request produced a **ClickUp** task — or a GitHub
|
|
258
|
+
issue only because the user named GitHub, in which case the two are cross-linked.
|
|
236
259
|
- [ ] The unit of work has a resolved task key or an explicit, user-accepted `NO-TASK`.
|
|
237
260
|
- [ ] The branch name matches the key (`issue/<KEY>` or `no-task/<slug>`).
|
|
238
261
|
- [ ] Every commit on the branch carries the same scope.
|