Diligent Innovation — Internal Tools
The skills Triumph is actually using.
A central index for Claude skills our team builds. Post what you've made, upvote what you're using, and watch the best ones graduate into the Triumph Standard set.
0
Skills posted
+5 this week
0
Contributors
0
Installs
+83 this week
0
Triumph Standard
Leaderboard
Top 5All skills
Browse 41 skills
Rock SQL optimizer
CodeCoworkExplains a query's plan in plain English, identifies the expensive bits (usually an implicit scan on `AttributeValue`), and rewrites it if it can do so without changing results. Pairs well with the new `PersonAliasHistorical` indexes.
5257 weeks ago
v1.0.0Rock block scaffolder
CodeScaffolds the full Rock block stack — C# block class, Obsidian view, SCSS, block settings, and a skeleton test — from a single description. Understands the Rock 17 block conventions and fills in the boring parts so you can focus on the interesting logic.
Works against any plugin with a standard `src/` layout and will match your existing naming style (PascalCase blocks, kebab-case folders, etc.) by reading two neighbors before generating anything new.
5215 weeks ago
v1.1.0Lava cheat sheet
CoworkInstead of 'here's every Lava filter', this one asks what you're trying to do and returns 2-3 idiomatic snippets from real Rock templates. Examples are pinned to the Rock version you're on so they don't drift.
5352 months ago
v1.0.0Rock 16 → 17 plugin upgrade
CodeWalks a Rock plugin, bumps the target framework + Rock package references, and rewrites the well-known breaking changes (attribute matrix API, new block settings shape, the Lava engine swap). Leaves a comment on anything that looks risky but needs a human eye.
3944 weeks ago
v1.1.0Lava template debugger
CodeCoworkWalks a Lava template step by step, showing what's in scope at each point and why a filter or tag didn't match. Handles the common 'capture inside a for-loop' footgun and the less common 'child workflow attribute shadows the parent'.
4602 months ago
v1.0.1Rock workflow builder
CodeCoworkConverts a ministry-side description ('when a new visitor registers, notify their campus pastor and follow up in 2 weeks') into a real Rock workflow — activities, actions, attribute plumbing, and post-back wiring. Skips the boilerplate and flags decisions it had to guess.
3425 weeks ago
v1.1.0Rock REST API helper
CodeCoworkBuilds and runs Rock REST API requests from a plain-English description. Handles API key auth, ODATA `$filter` / `$expand` composition, and the paging cursor so you don't have to read the Rock Swagger doc one more time.
3302 months ago
v1.0.0Rock PR description writer
CodeCoworkRuns against a git diff and writes a PR description in the Triumph house style: problem, fix, verification, and a short 'things I intentionally didn't do' section so reviewers know what's out of scope.
Includes Rock-specific callouts — if you touched migrations, it'll remind you to note upgrade order.
3022 months ago
v1.0.0Rock attribute audit
CodePulls every attribute on an entity and classifies them: actively read in Lava, written by workflows, referenced in C#, or orphaned. Orphans are the point — you want to find the 80-item attribute list that has 12 live keys.
2812 months ago
v1.0.0Rock report designer
CodeCoworkTranslates a leadership ask ('I want to see small-group participation by campus, broken out by new vs returning') into a concrete Rock report spec: DataView, fields, groupings, and the chart block that'll hang on the dashboard.
2402 months ago
v1.0.0Safe Rock SQL migration
CodeGenerates Rock plugin SQL migrations (both forward and rollback scripts) that follow the Rock migration conventions: GUID-safe inserts, idempotent `WHERE NOT EXISTS` patterns, and paired rollback statements.
Also flags patterns that have burned us before — dropping NOT NULL columns without a default, cascading deletes on `Attribute`, etc.
2413 weeks ago
v1.0.1Rock communication drafter
CoworkWrites the subject, body, and plaintext fallback for a Rock email communication. Picks the right segment + merge fields from your context so you don't ship a 'Hi , ...'.
1916 weeks ago
v1.0.0Rock theme Bootstrap 3 → 5
CodeDoes the tedious half of a Rock theme upgrade: renames grid classes, updates form markup, fixes the badge + pill changes, and leaves TODO comments where the designer actually has to make a call (dropdown behavior, tooltip APIs).
1323 weeks ago
v1.0.1Rock DataView builder
CoworkTranslates 'I need the people who X, Y, and haven't Z in 90 days' into a real Rock DataView tree — filters, groups, and the right entity type. Also surfaces the performance gotchas (date-range filters that miss indexes, e.g.).
1522 months ago
v1.0.0Rock block test generator
CodeReads a Rock block file, identifies its public surface (block settings, Obsidian props, internal state machines), and writes a focused xUnit suite that covers the happy path plus 2-3 realistic edge cases.
Doesn't try to cover everything. The philosophy is: make the tests worth reading, not just green.
1706 weeks ago
v1.0.0Rock workflow auditor
CodeCoworkReads a Rock workflow type export (XML or JSON) and reports structural issues — unreachable activities, action chains with no end state, infinite-loop risk between two activities, and activities missing fallback error handlers. Produces a numbered punch list with the workflow id + activity name + suggested fix.
025 weeks ago
v1.0.0