opencode-skills-collection 4.0.67 → 4.0.68
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/bundled-skills/.antigravity-install-manifest.json +16 -1
- package/bundled-skills/anti-slop-design/SKILL.md +393 -0
- package/bundled-skills/antigravity-maintainer-batch-release/SKILL.md +1 -0
- package/bundled-skills/artifact-yylo/SKILL.md +122 -0
- package/bundled-skills/google-no-code/SKILL.md +136 -0
- package/bundled-skills/idea-evaluator/SKILL.md +75 -0
- package/bundled-skills/idea-evaluator/idea-evaluator-con/SKILL.md +64 -0
- package/bundled-skills/idea-evaluator/idea-evaluator-pro/SKILL.md +64 -0
- package/bundled-skills/ledger-tasks-yylo/SKILL.md +219 -0
- package/bundled-skills/loki-mode/examples/todo-app-generated/backend/package-lock.json +4 -4
- package/bundled-skills/loki-mode/examples/todo-app-generated/backend/package.json +1 -1
- package/bundled-skills/plan-ledger-tasks-yylo/SKILL.md +52 -0
- package/bundled-skills/ralph-loop-yylo/SKILL.md +55 -0
- package/bundled-skills/ralph-loop-yylo/references/first_check.md +18 -0
- package/bundled-skills/ralph-loop-yylo/references/implement.md +60 -0
- package/bundled-skills/resumable-implementation-contracts/SKILL.md +254 -0
- package/bundled-skills/understand-project-yylo/SKILL.md +62 -0
- package/bundled-skills/weather-model-data-fetching/SKILL.md +277 -0
- package/bundled-skills/weather-observation-fetching/SKILL.md +246 -0
- package/bundled-skills/wiki-yylo/SKILL.md +114 -0
- package/bundled-skills/workflow-yylo/SKILL.md +107 -0
- package/package.json +1 -1
- package/skills_index.json +304 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: workflow-yylo
|
|
3
|
+
description: Create and maintain validated YYLO Ledger workflow Records while keeping
|
|
4
|
+
storage, execution, and run evidence as separate explicit boundaries.
|
|
5
|
+
category: project-management
|
|
6
|
+
risk: safe
|
|
7
|
+
source: https://github.com/yylo-dev/yylo-skills
|
|
8
|
+
source_repo: yylo-dev/yylo-skills
|
|
9
|
+
source_type: community
|
|
10
|
+
date_added: '2026-09-19'
|
|
11
|
+
license: MIT
|
|
12
|
+
license_source: https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE
|
|
13
|
+
compatibility: Requires the `yy` CLI with the `workflow` record group installed. Ledger
|
|
14
|
+
stores and validates workflow data; execution needs a separately selected runner
|
|
15
|
+
plus explicit authority.
|
|
16
|
+
argument-hint: '[workflow to find/create/update or execution question]'
|
|
17
|
+
enable-shell-directives: true
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
# Use YYLO workflow Records
|
|
21
|
+
|
|
22
|
+
Treat Ledger as the source of truth for workflow identity, validated definition,
|
|
23
|
+
and revision history. Use `yy ledger` in a YYLO controller or `yylo-ledger`
|
|
24
|
+
standalone. Inspect `COMMAND workflow --help`; if the namespace is absent, do not
|
|
25
|
+
invent it or edit Ledger storage directly.
|
|
26
|
+
|
|
27
|
+
## Keep three boundaries distinct
|
|
28
|
+
|
|
29
|
+
1. **Ledger stores and validates workflow data.** It does not execute workflows.
|
|
30
|
+
2. **A separately selected YYLO runner executes reviewed workflow data.** Storage
|
|
31
|
+
does not grant execution, network, mutation, release, or deployment authority.
|
|
32
|
+
3. **Artifact Records retain run evidence.** Do not overwrite the workflow
|
|
33
|
+
definition with stdout, logs, model output, reports, or receipts.
|
|
34
|
+
|
|
35
|
+
The read-only Ledger host also has no workflow execution endpoint.
|
|
36
|
+
|
|
37
|
+
## Discover and inspect
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
yy ledger workflow search --text "release verification" --projection summary --limit 20 -f json
|
|
41
|
+
yy ledger workflow get RECORD_ID -f json
|
|
42
|
+
yy ledger workflow get RECORD_ID --raw
|
|
43
|
+
yy ledger workflow get RECORD_ID --validated
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Prefer immutable IDs after discovery. Use bounded projections and explicit archive
|
|
47
|
+
scope. `--validated` emits normalized YAML only after schema validation.
|
|
48
|
+
|
|
49
|
+
## Author safe workflow data
|
|
50
|
+
|
|
51
|
+
A workflow v1 document requires a mapping with `schema_version: v1`, a non-empty
|
|
52
|
+
`workflow_id`, and a `steps` list whose step IDs are non-empty and unique.
|
|
53
|
+
|
|
54
|
+
```yaml
|
|
55
|
+
schema_version: v1
|
|
56
|
+
workflow_id: focused-validation
|
|
57
|
+
steps:
|
|
58
|
+
- id: test
|
|
59
|
+
command: ["npm", "test"]
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Create through file/stdin transport:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
yy ledger workflow create --title "Focused validation" --file workflow.yaml
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Ledger rejects unsafe or non-portable YAML, including duplicate keys, aliases,
|
|
69
|
+
anchors, explicit tags, recursive structures, non-string mapping keys, implicit
|
|
70
|
+
date/time values, non-finite numbers, CRLF input, and unsupported values. Never
|
|
71
|
+
weaken validation by storing executable shell as an unvalidated substitute.
|
|
72
|
+
|
|
73
|
+
## Revise safely
|
|
74
|
+
|
|
75
|
+
Read the current revision and history, then follow the installed
|
|
76
|
+
`workflow update --help` compare-and-replace contract. Bind updates to the
|
|
77
|
+
expected revision and preimage/digests, validate the result, and read it back.
|
|
78
|
+
On drift, stop and reconcile instead of forcing. Archive is non-destructive.
|
|
79
|
+
|
|
80
|
+
Before execution, freeze the exact workflow Record ID, revision, payload digest,
|
|
81
|
+
runner identity, inputs, and granted authorities. After execution, store bounded
|
|
82
|
+
outputs under `artifact-yylo` with workflow/run provenance. An execution request
|
|
83
|
+
never implies merge, release, publication, deployment, or production authority.
|
|
84
|
+
|
|
85
|
+
## Complete request
|
|
86
|
+
|
|
87
|
+
$ARGUMENTS
|
|
88
|
+
|
|
89
|
+
## When to Use
|
|
90
|
+
|
|
91
|
+
- You need to find, create, or revision-safe update validated YYLO Ledger workflow Records.
|
|
92
|
+
- You must keep storage, execution, and run-evidence boundaries explicit.
|
|
93
|
+
|
|
94
|
+
## Limitations
|
|
95
|
+
|
|
96
|
+
- Ledger stores and validates workflow data; it never executes workflows and grants no execution, network, mutation, release, or deployment authority.
|
|
97
|
+
- Run evidence belongs in `artifact-yylo` records with workflow/run provenance - never overwrite the workflow definition with outputs.
|
|
98
|
+
- An execution request never implies merge, release, publication, deployment, or production authority. On revision drift, stop and reconcile instead of forcing.
|
|
99
|
+
|
|
100
|
+
### Example
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
yy ledger workflow search --text "release verification" --projection summary --limit 20 -f json
|
|
104
|
+
yy ledger workflow get RECORD_ID --validated
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
> Adapted from [yylo-dev/yylo-skills](https://github.com/yylo-dev/yylo-skills) (MIT) - v2.0.1; frontmatter, When to Use/Limitations, and safety boundaries added for upstream compliance.
|
package/package.json
CHANGED
package/skills_index.json
CHANGED
|
@@ -2576,6 +2576,39 @@
|
|
|
2576
2576
|
"operations"
|
|
2577
2577
|
]
|
|
2578
2578
|
},
|
|
2579
|
+
{
|
|
2580
|
+
"id": "anti-slop-design",
|
|
2581
|
+
"path": "skills/anti-slop-design",
|
|
2582
|
+
"category": "frontend",
|
|
2583
|
+
"name": "anti-slop-design",
|
|
2584
|
+
"description": "Autonomous Principal Design Technologist. Cures vibe-coded software from AI frontend slop using curated token archetypes and 7-axis quality gating.",
|
|
2585
|
+
"risk": "safe",
|
|
2586
|
+
"source": "community",
|
|
2587
|
+
"date_added": "2026-04-20",
|
|
2588
|
+
"plugin": {
|
|
2589
|
+
"targets": {
|
|
2590
|
+
"codex": "supported",
|
|
2591
|
+
"claude": "supported"
|
|
2592
|
+
},
|
|
2593
|
+
"setup": {
|
|
2594
|
+
"type": "none",
|
|
2595
|
+
"summary": "",
|
|
2596
|
+
"docs": null
|
|
2597
|
+
},
|
|
2598
|
+
"reasons": []
|
|
2599
|
+
},
|
|
2600
|
+
"source_type": "community",
|
|
2601
|
+
"source_repo": "wwewtech/anti-slop-design",
|
|
2602
|
+
"license": "MIT",
|
|
2603
|
+
"license_source": "https://github.com/wwewtech/anti-slop-design/blob/main/LICENSE",
|
|
2604
|
+
"tags": [
|
|
2605
|
+
"ui-ux",
|
|
2606
|
+
"design-systems",
|
|
2607
|
+
"anti-slop",
|
|
2608
|
+
"frontend",
|
|
2609
|
+
"tailwind"
|
|
2610
|
+
]
|
|
2611
|
+
},
|
|
2579
2612
|
{
|
|
2580
2613
|
"id": "anti-sycophancy",
|
|
2581
2614
|
"path": "skills/anti-sycophancy",
|
|
@@ -3988,6 +4021,32 @@
|
|
|
3988
4021
|
"whiteboard-sketch"
|
|
3989
4022
|
]
|
|
3990
4023
|
},
|
|
4024
|
+
{
|
|
4025
|
+
"id": "artifact-yylo",
|
|
4026
|
+
"path": "skills/artifact-yylo",
|
|
4027
|
+
"category": "project-management",
|
|
4028
|
+
"name": "artifact-yylo",
|
|
4029
|
+
"description": "Capture and retrieve durable YYLO Ledger artifact Records with intentional profiles, payload modes, provenance, retention, and secret-safe immutable evidence.",
|
|
4030
|
+
"risk": "safe",
|
|
4031
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
4032
|
+
"date_added": "2026-09-19",
|
|
4033
|
+
"plugin": {
|
|
4034
|
+
"targets": {
|
|
4035
|
+
"codex": "supported",
|
|
4036
|
+
"claude": "supported"
|
|
4037
|
+
},
|
|
4038
|
+
"setup": {
|
|
4039
|
+
"type": "none",
|
|
4040
|
+
"summary": "",
|
|
4041
|
+
"docs": null
|
|
4042
|
+
},
|
|
4043
|
+
"reasons": []
|
|
4044
|
+
},
|
|
4045
|
+
"source_type": "community",
|
|
4046
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
4047
|
+
"license": "MIT",
|
|
4048
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
4049
|
+
},
|
|
3991
4050
|
{
|
|
3992
4051
|
"id": "asana-automation",
|
|
3993
4052
|
"path": "skills/asana-automation",
|
|
@@ -23130,6 +23189,34 @@
|
|
|
23130
23189
|
},
|
|
23131
23190
|
"license": "Apache-2.0"
|
|
23132
23191
|
},
|
|
23192
|
+
{
|
|
23193
|
+
"id": "google-no-code",
|
|
23194
|
+
"path": "skills/google-no-code",
|
|
23195
|
+
"category": "automation",
|
|
23196
|
+
"name": "google-no-code",
|
|
23197
|
+
"description": "Design Google Forms and wire Apps Script triggers (onFormSubmit) for email alerts, spreadsheet logging, and dynamic questions — no code editor required.",
|
|
23198
|
+
"risk": "safe",
|
|
23199
|
+
"source": "self",
|
|
23200
|
+
"date_added": "2026-09-19",
|
|
23201
|
+
"plugin": {
|
|
23202
|
+
"targets": {
|
|
23203
|
+
"codex": "supported",
|
|
23204
|
+
"claude": "supported"
|
|
23205
|
+
},
|
|
23206
|
+
"setup": {
|
|
23207
|
+
"type": "none",
|
|
23208
|
+
"summary": "",
|
|
23209
|
+
"docs": null
|
|
23210
|
+
},
|
|
23211
|
+
"reasons": []
|
|
23212
|
+
},
|
|
23213
|
+
"source_type": "self",
|
|
23214
|
+
"tags": [
|
|
23215
|
+
"google",
|
|
23216
|
+
"forms",
|
|
23217
|
+
"apps-script"
|
|
23218
|
+
]
|
|
23219
|
+
},
|
|
23133
23220
|
{
|
|
23134
23221
|
"id": "google-sheets-automation",
|
|
23135
23222
|
"path": "skills/google-sheets-automation",
|
|
@@ -27573,6 +27660,32 @@
|
|
|
27573
27660
|
"workflow"
|
|
27574
27661
|
]
|
|
27575
27662
|
},
|
|
27663
|
+
{
|
|
27664
|
+
"id": "ledger-tasks-yylo",
|
|
27665
|
+
"path": "skills/ledger-tasks-yylo",
|
|
27666
|
+
"category": "project-management",
|
|
27667
|
+
"name": "ledger-tasks-yylo",
|
|
27668
|
+
"description": "Use YYLO Ledger task management: create, list, search, get, mark, update, archive, deps, ready, order and merge with dependencies.",
|
|
27669
|
+
"risk": "safe",
|
|
27670
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
27671
|
+
"date_added": "2026-09-19",
|
|
27672
|
+
"plugin": {
|
|
27673
|
+
"targets": {
|
|
27674
|
+
"codex": "supported",
|
|
27675
|
+
"claude": "supported"
|
|
27676
|
+
},
|
|
27677
|
+
"setup": {
|
|
27678
|
+
"type": "none",
|
|
27679
|
+
"summary": "",
|
|
27680
|
+
"docs": null
|
|
27681
|
+
},
|
|
27682
|
+
"reasons": []
|
|
27683
|
+
},
|
|
27684
|
+
"source_type": "community",
|
|
27685
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
27686
|
+
"license": "MIT",
|
|
27687
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
27688
|
+
},
|
|
27576
27689
|
{
|
|
27577
27690
|
"id": "legacy-modernizer",
|
|
27578
27691
|
"path": "skills/legacy-modernizer",
|
|
@@ -35927,6 +36040,32 @@
|
|
|
35927
36040
|
"reasons": []
|
|
35928
36041
|
}
|
|
35929
36042
|
},
|
|
36043
|
+
{
|
|
36044
|
+
"id": "plan-ledger-tasks-yylo",
|
|
36045
|
+
"path": "skills/plan-ledger-tasks-yylo",
|
|
36046
|
+
"category": "project-management",
|
|
36047
|
+
"name": "plan-ledger-tasks-yylo",
|
|
36048
|
+
"description": "Create a concise Product Development Requirement and one or more implementation-sized YYLO Ledger tasks when the user explicitly asks to plan or register work.",
|
|
36049
|
+
"risk": "safe",
|
|
36050
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
36051
|
+
"date_added": "2026-09-19",
|
|
36052
|
+
"plugin": {
|
|
36053
|
+
"targets": {
|
|
36054
|
+
"codex": "supported",
|
|
36055
|
+
"claude": "supported"
|
|
36056
|
+
},
|
|
36057
|
+
"setup": {
|
|
36058
|
+
"type": "none",
|
|
36059
|
+
"summary": "",
|
|
36060
|
+
"docs": null
|
|
36061
|
+
},
|
|
36062
|
+
"reasons": []
|
|
36063
|
+
},
|
|
36064
|
+
"source_type": "community",
|
|
36065
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
36066
|
+
"license": "MIT",
|
|
36067
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
36068
|
+
},
|
|
35930
36069
|
{
|
|
35931
36070
|
"id": "plan-writing",
|
|
35932
36071
|
"path": "skills/plan-writing",
|
|
@@ -38427,6 +38566,32 @@
|
|
|
38427
38566
|
"reasons": []
|
|
38428
38567
|
}
|
|
38429
38568
|
},
|
|
38569
|
+
{
|
|
38570
|
+
"id": "ralph-loop-yylo",
|
|
38571
|
+
"path": "skills/ralph-loop-yylo",
|
|
38572
|
+
"category": "agent-orchestration",
|
|
38573
|
+
"name": "ralph-loop-yylo",
|
|
38574
|
+
"description": "Execute exactly one explicitly assigned YYLO Ledger task through the Ralph loop to a validated queued commit. Use only when the user explicitly requests ralph-loop-yylo.",
|
|
38575
|
+
"risk": "critical",
|
|
38576
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
38577
|
+
"date_added": "2026-09-19",
|
|
38578
|
+
"plugin": {
|
|
38579
|
+
"targets": {
|
|
38580
|
+
"codex": "supported",
|
|
38581
|
+
"claude": "supported"
|
|
38582
|
+
},
|
|
38583
|
+
"setup": {
|
|
38584
|
+
"type": "none",
|
|
38585
|
+
"summary": "",
|
|
38586
|
+
"docs": null
|
|
38587
|
+
},
|
|
38588
|
+
"reasons": []
|
|
38589
|
+
},
|
|
38590
|
+
"source_type": "community",
|
|
38591
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
38592
|
+
"license": "MIT",
|
|
38593
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
38594
|
+
},
|
|
38430
38595
|
{
|
|
38431
38596
|
"id": "rayden-code",
|
|
38432
38597
|
"path": "skills/rayden-code",
|
|
@@ -39347,6 +39512,36 @@
|
|
|
39347
39512
|
"license": "MIT",
|
|
39348
39513
|
"license_source": "https://github.com/mattpocock/skills/blob/main/LICENSE"
|
|
39349
39514
|
},
|
|
39515
|
+
{
|
|
39516
|
+
"id": "resumable-implementation-contracts",
|
|
39517
|
+
"path": "skills/resumable-implementation-contracts",
|
|
39518
|
+
"category": "project-management",
|
|
39519
|
+
"name": "resumable-implementation-contracts",
|
|
39520
|
+
"description": "Create repository-based execution contracts for multi-session implementation work, with stable task IDs, evidence, checkpoints, and exact resume state.",
|
|
39521
|
+
"risk": "safe",
|
|
39522
|
+
"source": "self",
|
|
39523
|
+
"date_added": "2026-09-19",
|
|
39524
|
+
"plugin": {
|
|
39525
|
+
"targets": {
|
|
39526
|
+
"codex": "supported",
|
|
39527
|
+
"claude": "supported"
|
|
39528
|
+
},
|
|
39529
|
+
"setup": {
|
|
39530
|
+
"type": "none",
|
|
39531
|
+
"summary": "",
|
|
39532
|
+
"docs": null
|
|
39533
|
+
},
|
|
39534
|
+
"reasons": []
|
|
39535
|
+
},
|
|
39536
|
+
"source_type": "self",
|
|
39537
|
+
"tags": [
|
|
39538
|
+
"project-management",
|
|
39539
|
+
"execution-contracts",
|
|
39540
|
+
"checkpoints",
|
|
39541
|
+
"verification",
|
|
39542
|
+
"agent-workflows"
|
|
39543
|
+
]
|
|
39544
|
+
},
|
|
39350
39545
|
{
|
|
39351
39546
|
"id": "retro-design",
|
|
39352
39547
|
"path": "skills/design-it/retro-design",
|
|
@@ -48267,6 +48462,32 @@
|
|
|
48267
48462
|
"uncle-bob"
|
|
48268
48463
|
]
|
|
48269
48464
|
},
|
|
48465
|
+
{
|
|
48466
|
+
"id": "understand-project-yylo",
|
|
48467
|
+
"path": "skills/understand-project-yylo",
|
|
48468
|
+
"category": "project-management",
|
|
48469
|
+
"name": "understand-project-yylo",
|
|
48470
|
+
"description": "Inspect the current product architecture, dependencies, and validation loops before planning or implementing a requested change.",
|
|
48471
|
+
"risk": "safe",
|
|
48472
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
48473
|
+
"date_added": "2026-09-19",
|
|
48474
|
+
"plugin": {
|
|
48475
|
+
"targets": {
|
|
48476
|
+
"codex": "supported",
|
|
48477
|
+
"claude": "supported"
|
|
48478
|
+
},
|
|
48479
|
+
"setup": {
|
|
48480
|
+
"type": "none",
|
|
48481
|
+
"summary": "",
|
|
48482
|
+
"docs": null
|
|
48483
|
+
},
|
|
48484
|
+
"reasons": []
|
|
48485
|
+
},
|
|
48486
|
+
"source_type": "community",
|
|
48487
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
48488
|
+
"license": "MIT",
|
|
48489
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
48490
|
+
},
|
|
48270
48491
|
{
|
|
48271
48492
|
"id": "unified-ai-gateway",
|
|
48272
48493
|
"path": "skills/unified-ai-gateway",
|
|
@@ -50303,6 +50524,37 @@
|
|
|
50303
50524
|
"nwp"
|
|
50304
50525
|
]
|
|
50305
50526
|
},
|
|
50527
|
+
{
|
|
50528
|
+
"id": "weather-observation-fetching",
|
|
50529
|
+
"path": "skills/weather-observation-fetching",
|
|
50530
|
+
"category": "data",
|
|
50531
|
+
"name": "weather-observation-fetching",
|
|
50532
|
+
"description": "Retrieve surface and upper-air weather observations from authoritative APIs and archives with station identity, time, units, and quality flags preserved.",
|
|
50533
|
+
"risk": "safe",
|
|
50534
|
+
"source": "self",
|
|
50535
|
+
"date_added": "2026-09-19",
|
|
50536
|
+
"plugin": {
|
|
50537
|
+
"targets": {
|
|
50538
|
+
"codex": "supported",
|
|
50539
|
+
"claude": "supported"
|
|
50540
|
+
},
|
|
50541
|
+
"setup": {
|
|
50542
|
+
"type": "none",
|
|
50543
|
+
"summary": "",
|
|
50544
|
+
"docs": null
|
|
50545
|
+
},
|
|
50546
|
+
"reasons": []
|
|
50547
|
+
},
|
|
50548
|
+
"source_type": "self",
|
|
50549
|
+
"tags": [
|
|
50550
|
+
"weather",
|
|
50551
|
+
"observations",
|
|
50552
|
+
"metar",
|
|
50553
|
+
"radiosonde",
|
|
50554
|
+
"noaa",
|
|
50555
|
+
"quality-control"
|
|
50556
|
+
]
|
|
50557
|
+
},
|
|
50306
50558
|
{
|
|
50307
50559
|
"id": "weaviate",
|
|
50308
50560
|
"path": "skills/weaviate",
|
|
@@ -51058,6 +51310,32 @@
|
|
|
51058
51310
|
"reasons": []
|
|
51059
51311
|
}
|
|
51060
51312
|
},
|
|
51313
|
+
{
|
|
51314
|
+
"id": "wiki-yylo",
|
|
51315
|
+
"path": "skills/wiki-yylo",
|
|
51316
|
+
"category": "project-management",
|
|
51317
|
+
"name": "wiki-yylo",
|
|
51318
|
+
"description": "Use YYLO Ledger wiki Records as durable project knowledge. Search before creating, classify information correctly, and make revision-safe Markdown updates without editing Ledger storage directly.",
|
|
51319
|
+
"risk": "safe",
|
|
51320
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
51321
|
+
"date_added": "2026-09-19",
|
|
51322
|
+
"plugin": {
|
|
51323
|
+
"targets": {
|
|
51324
|
+
"codex": "supported",
|
|
51325
|
+
"claude": "supported"
|
|
51326
|
+
},
|
|
51327
|
+
"setup": {
|
|
51328
|
+
"type": "none",
|
|
51329
|
+
"summary": "",
|
|
51330
|
+
"docs": null
|
|
51331
|
+
},
|
|
51332
|
+
"reasons": []
|
|
51333
|
+
},
|
|
51334
|
+
"source_type": "community",
|
|
51335
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
51336
|
+
"license": "MIT",
|
|
51337
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
51338
|
+
},
|
|
51061
51339
|
{
|
|
51062
51340
|
"id": "windows-ad",
|
|
51063
51341
|
"path": "skills/windows-ad",
|
|
@@ -51432,6 +51710,32 @@
|
|
|
51432
51710
|
"reasons": []
|
|
51433
51711
|
}
|
|
51434
51712
|
},
|
|
51713
|
+
{
|
|
51714
|
+
"id": "workflow-yylo",
|
|
51715
|
+
"path": "skills/workflow-yylo",
|
|
51716
|
+
"category": "project-management",
|
|
51717
|
+
"name": "workflow-yylo",
|
|
51718
|
+
"description": "Create and maintain validated YYLO Ledger workflow Records while keeping storage, execution, and run evidence as separate explicit boundaries.",
|
|
51719
|
+
"risk": "safe",
|
|
51720
|
+
"source": "https://github.com/yylo-dev/yylo-skills",
|
|
51721
|
+
"date_added": "2026-09-19",
|
|
51722
|
+
"plugin": {
|
|
51723
|
+
"targets": {
|
|
51724
|
+
"codex": "supported",
|
|
51725
|
+
"claude": "supported"
|
|
51726
|
+
},
|
|
51727
|
+
"setup": {
|
|
51728
|
+
"type": "none",
|
|
51729
|
+
"summary": "",
|
|
51730
|
+
"docs": null
|
|
51731
|
+
},
|
|
51732
|
+
"reasons": []
|
|
51733
|
+
},
|
|
51734
|
+
"source_type": "community",
|
|
51735
|
+
"source_repo": "yylo-dev/yylo-skills",
|
|
51736
|
+
"license": "MIT",
|
|
51737
|
+
"license_source": "https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE"
|
|
51738
|
+
},
|
|
51435
51739
|
{
|
|
51436
51740
|
"id": "workorai",
|
|
51437
51741
|
"path": "skills/workorai",
|