[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-apache-cayenne-modeling":3,"mdc-rm16j2-key":39,"related-repo-apache-cayenne-modeling":1079,"related-org-apache-cayenne-modeling":1151},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":34,"sourceUrl":37,"mdContent":38},"cayenne-modeling","edit and extend Cayenne ORM models","Use this skill whenever the user wants to edit, inspect, or extend the Cayenne ORM model in a project — adding or modifying entities, attributes, relationships, embeddables, named queries, stored procedures, or DataNodes. Trigger on phrases like 'add an ObjEntity', 'add a DbEntity', 'add a relationship', 'expose this column as an attribute', 'create a new DataMap', 'add a named query', 'create an embeddable', 'add a stored procedure', 'change the attribute type', 'mark this column as nullable', 'rename this entity', or any mention of a Cayenne `*.map.xml` or `cayenne-*.xml` file. Also trigger when the user references modeling concepts (ObjEntity, DbEntity, ObjAttribute, DbAttribute, ObjRelationship, DbRelationship, Embeddable, dbEntityName, deleteRule, db-attribute-path, db-relationship-path, defaultPackage) in the context of a Cayenne-using app. This is the *primary* skill for a-la-carte ORM model manipulation — direct XML edits, not the Modeler GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"apache","Apache Software Foundation","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fapache.png",[12,16,19],{"name":13,"slug":14,"type":15},"Java","java","tag",{"name":17,"slug":18,"type":15},"Database","database",{"name":20,"slug":21,"type":15},"ORM","orm",343,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fcayenne","2026-07-19T05:40:32.6889",null,137,[28,18,14,29,30,31,32,33],"cayenne","library","network-client","network-server","web-framework","xml",{"repoUrl":23,"stars":22,"forks":26,"topics":35,"description":36},[28,18,14,29,30,31,32,33],"Mirror of Apache Cayenne","https:\u002F\u002Fgithub.com\u002Fapache\u002Fcayenne\u002Ftree\u002FHEAD\u002Fai-plugin\u002Fskills\u002Fcayenne-modeling","---\nname: cayenne-modeling\ndescription: \"Use this skill whenever the user wants to edit, inspect, or extend the Cayenne ORM model in a project — adding or modifying entities, attributes, relationships, embeddables, named queries, stored procedures, or DataNodes. Trigger on phrases like 'add an ObjEntity', 'add a DbEntity', 'add a relationship', 'expose this column as an attribute', 'create a new DataMap', 'add a named query', 'create an embeddable', 'add a stored procedure', 'change the attribute type', 'mark this column as nullable', 'rename this entity', or any mention of a Cayenne `*.map.xml` or `cayenne-*.xml` file. Also trigger when the user references modeling concepts (ObjEntity, DbEntity, ObjAttribute, DbAttribute, ObjRelationship, DbRelationship, Embeddable, dbEntityName, deleteRule, db-attribute-path, db-relationship-path, defaultPackage) in the context of a Cayenne-using app. This is the *primary* skill for a-la-carte ORM model manipulation — direct XML edits, not the Modeler GUI.\"\n---\n\n\u003C!--\n\tLicensed to the Apache Software Foundation (ASF) under one\n\tor more contributor license agreements.  See the NOTICE file\n\tdistributed with this work for additional information\n\tregarding copyright ownership.  The ASF licenses this file\n\tto you under the Apache License, Version 2.0 (the\n\t\"License\"); you may not use this file except in compliance\n\twith the License.  You may obtain a copy of the License at\n\t\n\thttps:\u002F\u002Fwww.apache.org\u002Flicenses\u002FLICENSE-2.0\n\t\n\tUnless required by applicable law or agreed to in writing,\n\tsoftware distributed under the License is distributed on an\n\t\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n\tKIND, either express or implied.  See the License for the\n\tspecific language governing permissions and limitations\n\tunder the License.   \n-->\n# cayenne-modeling\n\nEdit Cayenne DataMap (`*.map.xml`) and project descriptor (`cayenne-*.xml`) files directly. This is the **default path** for granular model changes — adding one entity, one relationship, one query. Use the Modeler GUI (`cayenne-modeler` skill) only for inherently visual work like reverse engineering.\n\n## Required reading\n\nRead these before making any edit — they describe the XML formats this skill operates on:\n\n- `${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fproject-layout.md` — locate the project descriptor and DataMaps in the user's repo.\n- `${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fdatamap-schema.md` — every element shape for `*.map.xml`.\n- `${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fproject-descriptor-schema.md` — `cayenne-*.xml` shape.\n\n## Step 1 — Locate the right file\n\nFollow `project-layout.md`. If the user has multiple Cayenne projects and the request is ambiguous, ask which one. Cache the answer for the rest of the session.\n\nDecide whether the change belongs in a DataMap or the project descriptor (table at the end of `project-layout.md`):\n\n- Entity\u002Frelationship\u002Fquery\u002Fembeddable\u002Fprocedure → DataMap (`*.map.xml`).\n- DataMap list, DataNode (DB connection) → project descriptor (`cayenne-*.xml`).\n\n## Step 2 — Make the edit\n\nApply the change following the schema in `datamap-schema.md` or `project-descriptor-schema.md`.\n\n### Critical rules\n\n1. **Element order matters.** The DataMap schema requires this order inside `\u003Cdata-map>`: `\u003Cproperty>`, `\u003Cprocedure>`, `\u003Cembeddable>`, `\u003Cdb-entity>`, `\u003Cobj-entity>`, `\u003Cdb-relationship>`, `\u003Cobj-relationship>`, `\u003Cquery>`, `\u003Ccgen>`, `\u003CdbImport>`. Insert at the right place — don't append blindly.\n\n2. **Cross-link consistently.**\n   - An `\u003Cobj-entity>` references a `\u003Cdb-entity>` by `dbEntityName=\"...\"`. Make sure that DbEntity exists.\n   - An `\u003Cobj-attribute>` references a DbAttribute by `db-attribute-path=\"COLUMN_NAME\"`. Make sure that column exists on the DbEntity (or on a related one if using a dotted path through a relationship).\n   - An `\u003Cobj-relationship>` requires a backing `\u003Cdb-relationship>` (or chain of them) via `db-relationship-path`. Never add an ObjRelationship without the DB-layer counterpart.\n   - Most FKs need **two** `\u003Cdb-relationship>` entries, one per direction. They are not auto-derived.\n\n3. **Use the right `type` on attributes.**\n   - `db-attribute type` — JDBC type names: `VARCHAR`, `INTEGER`, `BIGINT`, `DATE`, `TIMESTAMP`, `BOOLEAN`, `NUMERIC`, `BLOB`, `CLOB`, `VARBINARY`, etc. VARCHAR\u002FCHAR\u002FVARBINARY also need `length`. NUMERIC\u002FDECIMAL also need `scale`.\n   - `obj-attribute type` — Java FQN: `java.lang.String`, `java.lang.Integer`, `java.util.Date`, `java.math.BigDecimal`, `byte[]`, etc. Use wrapper types (`Integer`, not `int`) for nullable columns.\n\n4. **PK handling.** PK columns get `isPrimaryKey=\"true\" isMandatory=\"true\"` on the DbAttribute. They are normally **not** mirrored as ObjAttributes — Cayenne handles them implicitly. Map a PK as an ObjAttribute only if the user wants a \"meaningful PK\" (visible on the Java side).\n\n5. **Preserve formatting.** Match the indentation and quote style of the file (the standard Cayenne style uses tabs and double quotes, but follow what's actually in the file you're editing).\n\n6. **Changing `defaultPackage` on a DataMap.** If the user asks to change the DataMap-level `defaultPackage` property, ask whether entity-level packages should be updated too. Otherwise, every existing `obj-entity` will keep its old package. Ask: \"Do you also want me to update the `className` values on individual `\u003Cobj-entity>` elements that currently use the old package?\" Update them only if the user confirms.\n\n## Step 3 — Validate the edit conceptually\n\nAfter writing the XML, mentally walk through:\n\n- Does every `obj-entity.dbEntityName` resolve to an existing `\u003Cdb-entity>`?\n- Does every `obj-attribute.db-attribute-path` resolve to a column on the right DbEntity?\n- Does every `obj-relationship.db-relationship-path` resolve to a chain of existing `\u003Cdb-relationship>` entries?\n- Are PK and FK columns marked `isMandatory=\"true\"` where the DB enforces NOT NULL?\n\nIf anything fails, fix it before reporting done.\n\n## Step 4 — Offer the right next step\n\n- **If you modified entities and the DataMap has a `\u003Ccgen>` block:** suggest invoking the `cayenne-cgen` skill to regenerate Java classes. Mention which entities are affected.\n- **If the user added a new entity and there's no Java class yet:** same — recommend `cayenne-cgen`.\n- **If the user is asking about a full DB sync** (importing many tables, syncing with a changed schema): hand off to `cayenne-db-import`. Do not try to script this via XML edits.\n- **If the request is about making names descriptive\u002Fconsistent** (cleaning up reverse-engineered names, fixing `Gametype`\u002F`team1`-style names, normalizing entity\u002Fattribute\u002Frelationship names across the model): hand off to `cayenne-model-naming` — it knows the naming conventions and the rename cross-reference checklist.\n- **If the change is structurally messy** (bulk renaming relationships, visual graph rework): suggest the `cayenne-modeler` skill. Otherwise do not.\n\n## Modeler coexistence\n\nCayenneModeler **watches the project XML files** and automatically detects on-disk changes. When you edit a `*.map.xml` file directly, the Modeler will prompt the user to reload the project the next time they interact with it. There is no risk of the Modeler silently overwriting your edits. Do **not** warn the user that the Modeler may overwrite changes or tell them to close the Modeler before editing — that is incorrect and unnecessary.\n\n## Anti-patterns\n\n- **Don't hand-edit `_\u003CEntity>.java` superclass files.** They are regenerated by cgen and your changes will be overwritten. Edit the user `\u003CEntity>.java` subclass instead.\n- **Don't add an `obj-relationship` without a `db-relationship`.** Cayenne will validate-fail at runtime.\n- **Don't use primitive Java types (`int`, `long`, `boolean`) as `obj-attribute type` for nullable columns.** Primitives can't represent NULL. Use wrappers.\n- **Don't reorder existing elements.** The schema requires the order documented above; reordering existing elements may also create noisy diffs.\n- **Don't run cgen yourself.** That's `cayenne-cgen`'s job — invoke that skill instead of calling the MCP tool directly here.\n- **Don't suggest `mvn cayenne:cdbimport` or any Maven\u002FGradle plugin goal.** Those are explicitly out of scope for this plugin.\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,51,90,97,102,154,160,173,185,211,217,237,244,703,709,714,781,786,792,905,911,936,942],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":4},"text",{"type":45,"tag":52,"props":53,"children":54},"p",{},[55,57,64,66,72,74,80,82,88],{"type":50,"value":56},"Edit Cayenne DataMap (",{"type":45,"tag":58,"props":59,"children":61},"code",{"className":60},[],[62],{"type":50,"value":63},"*.map.xml",{"type":50,"value":65},") and project descriptor (",{"type":45,"tag":58,"props":67,"children":69},{"className":68},[],[70],{"type":50,"value":71},"cayenne-*.xml",{"type":50,"value":73},") files directly. This is the ",{"type":45,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":50,"value":79},"default path",{"type":50,"value":81}," for granular model changes — adding one entity, one relationship, one query. Use the Modeler GUI (",{"type":45,"tag":58,"props":83,"children":85},{"className":84},[],[86],{"type":50,"value":87},"cayenne-modeler",{"type":50,"value":89}," skill) only for inherently visual work like reverse engineering.",{"type":45,"tag":91,"props":92,"children":94},"h2",{"id":93},"required-reading",[95],{"type":50,"value":96},"Required reading",{"type":45,"tag":52,"props":98,"children":99},{},[100],{"type":50,"value":101},"Read these before making any edit — they describe the XML formats this skill operates on:",{"type":45,"tag":103,"props":104,"children":105},"ul",{},[106,118,136],{"type":45,"tag":107,"props":108,"children":109},"li",{},[110,116],{"type":45,"tag":58,"props":111,"children":113},{"className":112},[],[114],{"type":50,"value":115},"${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fproject-layout.md",{"type":50,"value":117}," — locate the project descriptor and DataMaps in the user's repo.",{"type":45,"tag":107,"props":119,"children":120},{},[121,127,129,134],{"type":45,"tag":58,"props":122,"children":124},{"className":123},[],[125],{"type":50,"value":126},"${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fdatamap-schema.md",{"type":50,"value":128}," — every element shape for ",{"type":45,"tag":58,"props":130,"children":132},{"className":131},[],[133],{"type":50,"value":63},{"type":50,"value":135},".",{"type":45,"tag":107,"props":137,"children":138},{},[139,145,147,152],{"type":45,"tag":58,"props":140,"children":142},{"className":141},[],[143],{"type":50,"value":144},"${CLAUDE_PLUGIN_ROOT}\u002Freferences\u002Fproject-descriptor-schema.md",{"type":50,"value":146}," — ",{"type":45,"tag":58,"props":148,"children":150},{"className":149},[],[151],{"type":50,"value":71},{"type":50,"value":153}," shape.",{"type":45,"tag":91,"props":155,"children":157},{"id":156},"step-1-locate-the-right-file",[158],{"type":50,"value":159},"Step 1 — Locate the right file",{"type":45,"tag":52,"props":161,"children":162},{},[163,165,171],{"type":50,"value":164},"Follow ",{"type":45,"tag":58,"props":166,"children":168},{"className":167},[],[169],{"type":50,"value":170},"project-layout.md",{"type":50,"value":172},". If the user has multiple Cayenne projects and the request is ambiguous, ask which one. Cache the answer for the rest of the session.",{"type":45,"tag":52,"props":174,"children":175},{},[176,178,183],{"type":50,"value":177},"Decide whether the change belongs in a DataMap or the project descriptor (table at the end of ",{"type":45,"tag":58,"props":179,"children":181},{"className":180},[],[182],{"type":50,"value":170},{"type":50,"value":184},"):",{"type":45,"tag":103,"props":186,"children":187},{},[188,200],{"type":45,"tag":107,"props":189,"children":190},{},[191,193,198],{"type":50,"value":192},"Entity\u002Frelationship\u002Fquery\u002Fembeddable\u002Fprocedure → DataMap (",{"type":45,"tag":58,"props":194,"children":196},{"className":195},[],[197],{"type":50,"value":63},{"type":50,"value":199},").",{"type":45,"tag":107,"props":201,"children":202},{},[203,205,210],{"type":50,"value":204},"DataMap list, DataNode (DB connection) → project descriptor (",{"type":45,"tag":58,"props":206,"children":208},{"className":207},[],[209],{"type":50,"value":71},{"type":50,"value":199},{"type":45,"tag":91,"props":212,"children":214},{"id":213},"step-2-make-the-edit",[215],{"type":50,"value":216},"Step 2 — Make the edit",{"type":45,"tag":52,"props":218,"children":219},{},[220,222,228,230,236],{"type":50,"value":221},"Apply the change following the schema in ",{"type":45,"tag":58,"props":223,"children":225},{"className":224},[],[226],{"type":50,"value":227},"datamap-schema.md",{"type":50,"value":229}," or ",{"type":45,"tag":58,"props":231,"children":233},{"className":232},[],[234],{"type":50,"value":235},"project-descriptor-schema.md",{"type":50,"value":135},{"type":45,"tag":238,"props":239,"children":241},"h3",{"id":240},"critical-rules",[242],{"type":50,"value":243},"Critical rules",{"type":45,"tag":245,"props":246,"children":247},"ol",{},[248,338,441,620,645,655],{"type":45,"tag":107,"props":249,"children":250},{},[251,256,258,264,266,272,274,280,281,287,288,294,295,301,302,308,309,315,316,322,323,329,330,336],{"type":45,"tag":75,"props":252,"children":253},{},[254],{"type":50,"value":255},"Element order matters.",{"type":50,"value":257}," The DataMap schema requires this order inside ",{"type":45,"tag":58,"props":259,"children":261},{"className":260},[],[262],{"type":50,"value":263},"\u003Cdata-map>",{"type":50,"value":265},": ",{"type":45,"tag":58,"props":267,"children":269},{"className":268},[],[270],{"type":50,"value":271},"\u003Cproperty>",{"type":50,"value":273},", ",{"type":45,"tag":58,"props":275,"children":277},{"className":276},[],[278],{"type":50,"value":279},"\u003Cprocedure>",{"type":50,"value":273},{"type":45,"tag":58,"props":282,"children":284},{"className":283},[],[285],{"type":50,"value":286},"\u003Cembeddable>",{"type":50,"value":273},{"type":45,"tag":58,"props":289,"children":291},{"className":290},[],[292],{"type":50,"value":293},"\u003Cdb-entity>",{"type":50,"value":273},{"type":45,"tag":58,"props":296,"children":298},{"className":297},[],[299],{"type":50,"value":300},"\u003Cobj-entity>",{"type":50,"value":273},{"type":45,"tag":58,"props":303,"children":305},{"className":304},[],[306],{"type":50,"value":307},"\u003Cdb-relationship>",{"type":50,"value":273},{"type":45,"tag":58,"props":310,"children":312},{"className":311},[],[313],{"type":50,"value":314},"\u003Cobj-relationship>",{"type":50,"value":273},{"type":45,"tag":58,"props":317,"children":319},{"className":318},[],[320],{"type":50,"value":321},"\u003Cquery>",{"type":50,"value":273},{"type":45,"tag":58,"props":324,"children":326},{"className":325},[],[327],{"type":50,"value":328},"\u003Ccgen>",{"type":50,"value":273},{"type":45,"tag":58,"props":331,"children":333},{"className":332},[],[334],{"type":50,"value":335},"\u003CdbImport>",{"type":50,"value":337},". Insert at the right place — don't append blindly.",{"type":45,"tag":107,"props":339,"children":340},{},[341,346],{"type":45,"tag":75,"props":342,"children":343},{},[344],{"type":50,"value":345},"Cross-link consistently.",{"type":45,"tag":103,"props":347,"children":348},{},[349,376,396,422],{"type":45,"tag":107,"props":350,"children":351},{},[352,354,359,361,366,368,374],{"type":50,"value":353},"An ",{"type":45,"tag":58,"props":355,"children":357},{"className":356},[],[358],{"type":50,"value":300},{"type":50,"value":360}," references a ",{"type":45,"tag":58,"props":362,"children":364},{"className":363},[],[365],{"type":50,"value":293},{"type":50,"value":367}," by ",{"type":45,"tag":58,"props":369,"children":371},{"className":370},[],[372],{"type":50,"value":373},"dbEntityName=\"...\"",{"type":50,"value":375},". Make sure that DbEntity exists.",{"type":45,"tag":107,"props":377,"children":378},{},[379,380,386,388,394],{"type":50,"value":353},{"type":45,"tag":58,"props":381,"children":383},{"className":382},[],[384],{"type":50,"value":385},"\u003Cobj-attribute>",{"type":50,"value":387}," references a DbAttribute by ",{"type":45,"tag":58,"props":389,"children":391},{"className":390},[],[392],{"type":50,"value":393},"db-attribute-path=\"COLUMN_NAME\"",{"type":50,"value":395},". Make sure that column exists on the DbEntity (or on a related one if using a dotted path through a relationship).",{"type":45,"tag":107,"props":397,"children":398},{},[399,400,405,407,412,414,420],{"type":50,"value":353},{"type":45,"tag":58,"props":401,"children":403},{"className":402},[],[404],{"type":50,"value":314},{"type":50,"value":406}," requires a backing ",{"type":45,"tag":58,"props":408,"children":410},{"className":409},[],[411],{"type":50,"value":307},{"type":50,"value":413}," (or chain of them) via ",{"type":45,"tag":58,"props":415,"children":417},{"className":416},[],[418],{"type":50,"value":419},"db-relationship-path",{"type":50,"value":421},". Never add an ObjRelationship without the DB-layer counterpart.",{"type":45,"tag":107,"props":423,"children":424},{},[425,427,432,434,439],{"type":50,"value":426},"Most FKs need ",{"type":45,"tag":75,"props":428,"children":429},{},[430],{"type":50,"value":431},"two",{"type":50,"value":433}," ",{"type":45,"tag":58,"props":435,"children":437},{"className":436},[],[438],{"type":50,"value":307},{"type":50,"value":440}," entries, one per direction. They are not auto-derived.",{"type":45,"tag":107,"props":442,"children":443},{},[444,457],{"type":45,"tag":75,"props":445,"children":446},{},[447,449,455],{"type":50,"value":448},"Use the right ",{"type":45,"tag":58,"props":450,"children":452},{"className":451},[],[453],{"type":50,"value":454},"type",{"type":50,"value":456}," on attributes.",{"type":45,"tag":103,"props":458,"children":459},{},[460,557],{"type":45,"tag":107,"props":461,"children":462},{},[463,469,471,477,478,484,485,491,492,498,499,505,506,512,513,519,520,526,527,533,534,540,542,548,550,556],{"type":45,"tag":58,"props":464,"children":466},{"className":465},[],[467],{"type":50,"value":468},"db-attribute type",{"type":50,"value":470}," — JDBC type names: ",{"type":45,"tag":58,"props":472,"children":474},{"className":473},[],[475],{"type":50,"value":476},"VARCHAR",{"type":50,"value":273},{"type":45,"tag":58,"props":479,"children":481},{"className":480},[],[482],{"type":50,"value":483},"INTEGER",{"type":50,"value":273},{"type":45,"tag":58,"props":486,"children":488},{"className":487},[],[489],{"type":50,"value":490},"BIGINT",{"type":50,"value":273},{"type":45,"tag":58,"props":493,"children":495},{"className":494},[],[496],{"type":50,"value":497},"DATE",{"type":50,"value":273},{"type":45,"tag":58,"props":500,"children":502},{"className":501},[],[503],{"type":50,"value":504},"TIMESTAMP",{"type":50,"value":273},{"type":45,"tag":58,"props":507,"children":509},{"className":508},[],[510],{"type":50,"value":511},"BOOLEAN",{"type":50,"value":273},{"type":45,"tag":58,"props":514,"children":516},{"className":515},[],[517],{"type":50,"value":518},"NUMERIC",{"type":50,"value":273},{"type":45,"tag":58,"props":521,"children":523},{"className":522},[],[524],{"type":50,"value":525},"BLOB",{"type":50,"value":273},{"type":45,"tag":58,"props":528,"children":530},{"className":529},[],[531],{"type":50,"value":532},"CLOB",{"type":50,"value":273},{"type":45,"tag":58,"props":535,"children":537},{"className":536},[],[538],{"type":50,"value":539},"VARBINARY",{"type":50,"value":541},", etc. VARCHAR\u002FCHAR\u002FVARBINARY also need ",{"type":45,"tag":58,"props":543,"children":545},{"className":544},[],[546],{"type":50,"value":547},"length",{"type":50,"value":549},". NUMERIC\u002FDECIMAL also need ",{"type":45,"tag":58,"props":551,"children":553},{"className":552},[],[554],{"type":50,"value":555},"scale",{"type":50,"value":135},{"type":45,"tag":107,"props":558,"children":559},{},[560,566,568,574,575,581,582,588,589,595,596,602,604,610,612,618],{"type":45,"tag":58,"props":561,"children":563},{"className":562},[],[564],{"type":50,"value":565},"obj-attribute type",{"type":50,"value":567}," — Java FQN: ",{"type":45,"tag":58,"props":569,"children":571},{"className":570},[],[572],{"type":50,"value":573},"java.lang.String",{"type":50,"value":273},{"type":45,"tag":58,"props":576,"children":578},{"className":577},[],[579],{"type":50,"value":580},"java.lang.Integer",{"type":50,"value":273},{"type":45,"tag":58,"props":583,"children":585},{"className":584},[],[586],{"type":50,"value":587},"java.util.Date",{"type":50,"value":273},{"type":45,"tag":58,"props":590,"children":592},{"className":591},[],[593],{"type":50,"value":594},"java.math.BigDecimal",{"type":50,"value":273},{"type":45,"tag":58,"props":597,"children":599},{"className":598},[],[600],{"type":50,"value":601},"byte[]",{"type":50,"value":603},", etc. Use wrapper types (",{"type":45,"tag":58,"props":605,"children":607},{"className":606},[],[608],{"type":50,"value":609},"Integer",{"type":50,"value":611},", not ",{"type":45,"tag":58,"props":613,"children":615},{"className":614},[],[616],{"type":50,"value":617},"int",{"type":50,"value":619},") for nullable columns.",{"type":45,"tag":107,"props":621,"children":622},{},[623,628,630,636,638,643],{"type":45,"tag":75,"props":624,"children":625},{},[626],{"type":50,"value":627},"PK handling.",{"type":50,"value":629}," PK columns get ",{"type":45,"tag":58,"props":631,"children":633},{"className":632},[],[634],{"type":50,"value":635},"isPrimaryKey=\"true\" isMandatory=\"true\"",{"type":50,"value":637}," on the DbAttribute. They are normally ",{"type":45,"tag":75,"props":639,"children":640},{},[641],{"type":50,"value":642},"not",{"type":50,"value":644}," mirrored as ObjAttributes — Cayenne handles them implicitly. Map a PK as an ObjAttribute only if the user wants a \"meaningful PK\" (visible on the Java side).",{"type":45,"tag":107,"props":646,"children":647},{},[648,653],{"type":45,"tag":75,"props":649,"children":650},{},[651],{"type":50,"value":652},"Preserve formatting.",{"type":50,"value":654}," Match the indentation and quote style of the file (the standard Cayenne style uses tabs and double quotes, but follow what's actually in the file you're editing).",{"type":45,"tag":107,"props":656,"children":657},{},[658,671,673,678,680,686,688,694,696,701],{"type":45,"tag":75,"props":659,"children":660},{},[661,663,669],{"type":50,"value":662},"Changing ",{"type":45,"tag":58,"props":664,"children":666},{"className":665},[],[667],{"type":50,"value":668},"defaultPackage",{"type":50,"value":670}," on a DataMap.",{"type":50,"value":672}," If the user asks to change the DataMap-level ",{"type":45,"tag":58,"props":674,"children":676},{"className":675},[],[677],{"type":50,"value":668},{"type":50,"value":679}," property, ask whether entity-level packages should be updated too. Otherwise, every existing ",{"type":45,"tag":58,"props":681,"children":683},{"className":682},[],[684],{"type":50,"value":685},"obj-entity",{"type":50,"value":687}," will keep its old package. Ask: \"Do you also want me to update the ",{"type":45,"tag":58,"props":689,"children":691},{"className":690},[],[692],{"type":50,"value":693},"className",{"type":50,"value":695}," values on individual ",{"type":45,"tag":58,"props":697,"children":699},{"className":698},[],[700],{"type":50,"value":300},{"type":50,"value":702}," elements that currently use the old package?\" Update them only if the user confirms.",{"type":45,"tag":91,"props":704,"children":706},{"id":705},"step-3-validate-the-edit-conceptually",[707],{"type":50,"value":708},"Step 3 — Validate the edit conceptually",{"type":45,"tag":52,"props":710,"children":711},{},[712],{"type":50,"value":713},"After writing the XML, mentally walk through:",{"type":45,"tag":103,"props":715,"children":716},{},[717,737,749,768],{"type":45,"tag":107,"props":718,"children":719},{},[720,722,728,730,735],{"type":50,"value":721},"Does every ",{"type":45,"tag":58,"props":723,"children":725},{"className":724},[],[726],{"type":50,"value":727},"obj-entity.dbEntityName",{"type":50,"value":729}," resolve to an existing ",{"type":45,"tag":58,"props":731,"children":733},{"className":732},[],[734],{"type":50,"value":293},{"type":50,"value":736},"?",{"type":45,"tag":107,"props":738,"children":739},{},[740,741,747],{"type":50,"value":721},{"type":45,"tag":58,"props":742,"children":744},{"className":743},[],[745],{"type":50,"value":746},"obj-attribute.db-attribute-path",{"type":50,"value":748}," resolve to a column on the right DbEntity?",{"type":45,"tag":107,"props":750,"children":751},{},[752,753,759,761,766],{"type":50,"value":721},{"type":45,"tag":58,"props":754,"children":756},{"className":755},[],[757],{"type":50,"value":758},"obj-relationship.db-relationship-path",{"type":50,"value":760}," resolve to a chain of existing ",{"type":45,"tag":58,"props":762,"children":764},{"className":763},[],[765],{"type":50,"value":307},{"type":50,"value":767}," entries?",{"type":45,"tag":107,"props":769,"children":770},{},[771,773,779],{"type":50,"value":772},"Are PK and FK columns marked ",{"type":45,"tag":58,"props":774,"children":776},{"className":775},[],[777],{"type":50,"value":778},"isMandatory=\"true\"",{"type":50,"value":780}," where the DB enforces NOT NULL?",{"type":45,"tag":52,"props":782,"children":783},{},[784],{"type":50,"value":785},"If anything fails, fix it before reporting done.",{"type":45,"tag":91,"props":787,"children":789},{"id":788},"step-4-offer-the-right-next-step",[790],{"type":50,"value":791},"Step 4 — Offer the right next step",{"type":45,"tag":103,"props":793,"children":794},{},[795,820,836,854,888],{"type":45,"tag":107,"props":796,"children":797},{},[798,810,812,818],{"type":45,"tag":75,"props":799,"children":800},{},[801,803,808],{"type":50,"value":802},"If you modified entities and the DataMap has a ",{"type":45,"tag":58,"props":804,"children":806},{"className":805},[],[807],{"type":50,"value":328},{"type":50,"value":809}," block:",{"type":50,"value":811}," suggest invoking the ",{"type":45,"tag":58,"props":813,"children":815},{"className":814},[],[816],{"type":50,"value":817},"cayenne-cgen",{"type":50,"value":819}," skill to regenerate Java classes. Mention which entities are affected.",{"type":45,"tag":107,"props":821,"children":822},{},[823,828,830,835],{"type":45,"tag":75,"props":824,"children":825},{},[826],{"type":50,"value":827},"If the user added a new entity and there's no Java class yet:",{"type":50,"value":829}," same — recommend ",{"type":45,"tag":58,"props":831,"children":833},{"className":832},[],[834],{"type":50,"value":817},{"type":50,"value":135},{"type":45,"tag":107,"props":837,"children":838},{},[839,844,846,852],{"type":45,"tag":75,"props":840,"children":841},{},[842],{"type":50,"value":843},"If the user is asking about a full DB sync",{"type":50,"value":845}," (importing many tables, syncing with a changed schema): hand off to ",{"type":45,"tag":58,"props":847,"children":849},{"className":848},[],[850],{"type":50,"value":851},"cayenne-db-import",{"type":50,"value":853},". Do not try to script this via XML edits.",{"type":45,"tag":107,"props":855,"children":856},{},[857,862,864,870,872,878,880,886],{"type":45,"tag":75,"props":858,"children":859},{},[860],{"type":50,"value":861},"If the request is about making names descriptive\u002Fconsistent",{"type":50,"value":863}," (cleaning up reverse-engineered names, fixing ",{"type":45,"tag":58,"props":865,"children":867},{"className":866},[],[868],{"type":50,"value":869},"Gametype",{"type":50,"value":871},"\u002F",{"type":45,"tag":58,"props":873,"children":875},{"className":874},[],[876],{"type":50,"value":877},"team1",{"type":50,"value":879},"-style names, normalizing entity\u002Fattribute\u002Frelationship names across the model): hand off to ",{"type":45,"tag":58,"props":881,"children":883},{"className":882},[],[884],{"type":50,"value":885},"cayenne-model-naming",{"type":50,"value":887}," — it knows the naming conventions and the rename cross-reference checklist.",{"type":45,"tag":107,"props":889,"children":890},{},[891,896,898,903],{"type":45,"tag":75,"props":892,"children":893},{},[894],{"type":50,"value":895},"If the change is structurally messy",{"type":50,"value":897}," (bulk renaming relationships, visual graph rework): suggest the ",{"type":45,"tag":58,"props":899,"children":901},{"className":900},[],[902],{"type":50,"value":87},{"type":50,"value":904}," skill. Otherwise do not.",{"type":45,"tag":91,"props":906,"children":908},{"id":907},"modeler-coexistence",[909],{"type":50,"value":910},"Modeler coexistence",{"type":45,"tag":52,"props":912,"children":913},{},[914,916,921,923,928,930,934],{"type":50,"value":915},"CayenneModeler ",{"type":45,"tag":75,"props":917,"children":918},{},[919],{"type":50,"value":920},"watches the project XML files",{"type":50,"value":922}," and automatically detects on-disk changes. When you edit a ",{"type":45,"tag":58,"props":924,"children":926},{"className":925},[],[927],{"type":50,"value":63},{"type":50,"value":929}," file directly, the Modeler will prompt the user to reload the project the next time they interact with it. There is no risk of the Modeler silently overwriting your edits. Do ",{"type":45,"tag":75,"props":931,"children":932},{},[933],{"type":50,"value":642},{"type":50,"value":935}," warn the user that the Modeler may overwrite changes or tell them to close the Modeler before editing — that is incorrect and unnecessary.",{"type":45,"tag":91,"props":937,"children":939},{"id":938},"anti-patterns",[940],{"type":50,"value":941},"Anti-patterns",{"type":45,"tag":103,"props":943,"children":944},{},[945,971,996,1034,1044,1061],{"type":45,"tag":107,"props":946,"children":947},{},[948,961,963,969],{"type":45,"tag":75,"props":949,"children":950},{},[951,953,959],{"type":50,"value":952},"Don't hand-edit ",{"type":45,"tag":58,"props":954,"children":956},{"className":955},[],[957],{"type":50,"value":958},"_\u003CEntity>.java",{"type":50,"value":960}," superclass files.",{"type":50,"value":962}," They are regenerated by cgen and your changes will be overwritten. Edit the user ",{"type":45,"tag":58,"props":964,"children":966},{"className":965},[],[967],{"type":50,"value":968},"\u003CEntity>.java",{"type":50,"value":970}," subclass instead.",{"type":45,"tag":107,"props":972,"children":973},{},[974,994],{"type":45,"tag":75,"props":975,"children":976},{},[977,979,985,987,993],{"type":50,"value":978},"Don't add an ",{"type":45,"tag":58,"props":980,"children":982},{"className":981},[],[983],{"type":50,"value":984},"obj-relationship",{"type":50,"value":986}," without a ",{"type":45,"tag":58,"props":988,"children":990},{"className":989},[],[991],{"type":50,"value":992},"db-relationship",{"type":50,"value":135},{"type":50,"value":995}," Cayenne will validate-fail at runtime.",{"type":45,"tag":107,"props":997,"children":998},{},[999,1032],{"type":45,"tag":75,"props":1000,"children":1001},{},[1002,1004,1009,1010,1016,1017,1023,1025,1030],{"type":50,"value":1003},"Don't use primitive Java types (",{"type":45,"tag":58,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":50,"value":617},{"type":50,"value":273},{"type":45,"tag":58,"props":1011,"children":1013},{"className":1012},[],[1014],{"type":50,"value":1015},"long",{"type":50,"value":273},{"type":45,"tag":58,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":50,"value":1022},"boolean",{"type":50,"value":1024},") as ",{"type":45,"tag":58,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":50,"value":565},{"type":50,"value":1031}," for nullable columns.",{"type":50,"value":1033}," Primitives can't represent NULL. Use wrappers.",{"type":45,"tag":107,"props":1035,"children":1036},{},[1037,1042],{"type":45,"tag":75,"props":1038,"children":1039},{},[1040],{"type":50,"value":1041},"Don't reorder existing elements.",{"type":50,"value":1043}," The schema requires the order documented above; reordering existing elements may also create noisy diffs.",{"type":45,"tag":107,"props":1045,"children":1046},{},[1047,1052,1054,1059],{"type":45,"tag":75,"props":1048,"children":1049},{},[1050],{"type":50,"value":1051},"Don't run cgen yourself.",{"type":50,"value":1053}," That's ",{"type":45,"tag":58,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":50,"value":817},{"type":50,"value":1060},"'s job — invoke that skill instead of calling the MCP tool directly here.",{"type":45,"tag":107,"props":1062,"children":1063},{},[1064,1077],{"type":45,"tag":75,"props":1065,"children":1066},{},[1067,1069,1075],{"type":50,"value":1068},"Don't suggest ",{"type":45,"tag":58,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":50,"value":1074},"mvn cayenne:cdbimport",{"type":50,"value":1076}," or any Maven\u002FGradle plugin goal.",{"type":50,"value":1078}," Those are explicitly out of scope for this plugin.",{"items":1080,"total":1150},[1081,1092,1104,1114,1124,1133,1139],{"slug":817,"name":817,"fn":1082,"description":1083,"org":1084,"tags":1085,"stars":22,"repoUrl":23,"updatedAt":1091},"generate Cayenne entity Java classes","Use this skill whenever the user wants to (re)generate Cayenne entity Java classes from a DataMap. Trigger on phrases like 'generate Java classes', 'regenerate entities', 'run cgen', 'create the entity classes', 'why is the Artist class missing fields', 'where did the `_Abstract*` classes come from', 'sync the entity classes with the model', or any request to materialize Java from the DataMap. Also trigger as a follow-up after modeling changes (someone added an entity, attribute, or relationship and now the Java side is stale). This skill exclusively uses the `mcp__cayenne__cgen_run` MCP tool — it does NOT use `mvn cayenne:cgen` or the Gradle cgen task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1086,1089,1090],{"name":1087,"slug":1088,"type":15},"Data Modeling","data-modeling",{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:32:33.575211",{"slug":851,"name":851,"fn":1093,"description":1094,"org":1095,"tags":1096,"stars":22,"repoUrl":23,"updatedAt":1103},"import database schema into Cayenne DataMaps","Use this skill when the user wants to import database schema metadata into a Cayenne DataMap — the *model\u002Fmapping only*, not names or Java classes. Trigger on phrases like 'reverse engineer the database', 'import the schema', 'generate a DataMap from my DB', 'add the new tables from the DB into the model', 'import the customer table', 'create entities from these tables', or any request to read database metadata to populate or update a DataMap's XML. This is for *full schema* or *bulk table* import; one-off a-la-carte entity additions belong in the cayenne-modeling skill. IMPORTANT — scope: this imports the mapping ONLY; it does not clean up the Object-layer names or (re)generate Java classes. When the user wants their whole project brought in line with the DB ('sync my project with the database', 'my schema changed, update everything', 'update my entities\u002Fclasses from the DB'), that is the end-to-end `cayenne-full-db-sync` skill, which runs this import and then name cleanup and class generation. To regenerate classes alone use `cayenne-cgen`. The skill runs reverse engineering directly via the `mcp__cayenne__dbimport_run` MCP tool when a DBConnector is already configured; otherwise it opens the CayenneModeler GUI via `mcp__cayenne__open_project` to configure the connection first.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1097,1098,1099,1100],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1101,"slug":1102,"type":15},"SQL","sql","2026-07-19T05:40:33.655062",{"slug":1105,"name":1105,"fn":1106,"description":1107,"org":1108,"tags":1109,"stars":22,"repoUrl":23,"updatedAt":1113},"cayenne-full-db-sync","synchronize Cayenne projects with database","Use this skill when the user wants to bring their WHOLE Cayenne project in line with the database in one shot — the mapping, the Object-layer names, and the generated Java classes together. This is the end-to-end 'sync with the DB' workflow, and it orchestrates three skills in order: `cayenne-db-import` (import schema metadata into the DataMap) → `cayenne-model-naming` (polish the just-imported names) → `cayenne-cgen` (regenerate Java classes). Trigger on holistic phrases like 'sync my project with the database', 'sync with the DB', 'my schema changed, update everything', 'update my entities\u002Fclasses from the database', 'reverse engineer and regenerate the classes', 'import the new tables and rebuild the entities', 'full DB sync', 'bring the model and classes up to date with the DB'. The distinguishing signal is scope: the user wants the whole project (mapping + names + Java code), not just one stage. For the *model\u002Fmapping only* (no name cleanup, no class generation) use `cayenne-db-import`; to (re)generate classes alone use `cayenne-cgen`; to clean names alone use `cayenne-model-naming`. Uses the `mcp__cayenne__dbimport_run` and `mcp__cayenne__cgen_run` MCP tools via the sub-skills; does NOT use Maven or Gradle goals.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1110,1111,1112],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-19T06:03:49.112969",{"slug":885,"name":885,"fn":1115,"description":1116,"org":1117,"tags":1118,"stars":22,"repoUrl":23,"updatedAt":1123},"clean up Cayenne object-layer names","Use this skill to clean up Object-layer names in a Cayenne DataMap — ObjEntity, ObjAttribute, and ObjRelationship names, plus DbRelationship names (the first-class unit of relationship cleanup — every FK has one whether or not an ObjRelationship was generated; the ObjRelationship name is synced to it when one exists) — so they read as descriptive, consistent Java. Trigger on phrases like 'clean up the model names', 'fix the entity names', 'these names look ugly', 'make the names descriptive', 'normalize the ObjEntity\u002Fattribute\u002Frelationship names', 'why is this relationship called team1', 'rename entities to be consistent', 'the import produced Gametype instead of GameType'. Invoke it on an explicit user request, or as a manual follow-up after a `cayenne-db-import` to polish the just-imported additions — it is never triggered automatically. IMPORTANT: this is a LIGHT polish pass — CayenneModeler's reverse-engineering already produces good names for the common case; only improve the specific things its deterministic algorithm cannot (run-together names with no separators like `gametype`, meaningless numbered names like `team1` from multiple relationships between two tables, and a common entity prefix that leaks into relationship names like `aaOrders`). Do NOT rewrite names that are already correct. This is Obj-layer naming polish; for structural model edits use `cayenne-modeling`, and for regenerating classes afterward use `cayenne-cgen`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1119,1120,1121,1122],{"name":1087,"slug":1088,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-22T05:35:32.342548",{"slug":87,"name":87,"fn":1125,"description":1126,"org":1127,"tags":1128,"stars":22,"repoUrl":23,"updatedAt":1132},"manage Cayenne projects with CayenneModeler","Use this skill when the user explicitly wants to open CayenneModeler (the GUI) on a Cayenne project, or when the modeling task is inherently visual — reverse engineering (delegated to cayenne-db-import), bulk relationship layout, multi-entity visual refactoring. Trigger on phrases like 'open the Modeler', 'open in CayenneModeler', 'launch the GUI', 'edit visually', 'show me the project in the Modeler'. Do NOT trigger as a fallback for ordinary a-la-carte XML edits — those belong in the cayenne-modeling skill, which is faster and doesn't require the user to context-switch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1129,1130,1131],{"name":1087,"slug":1088,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:32:37.199428",{"slug":4,"name":4,"fn":5,"description":6,"org":1134,"tags":1135,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1136,1137,1138],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":1140,"name":1140,"fn":1141,"description":1142,"org":1143,"tags":1144,"stars":22,"repoUrl":23,"updatedAt":1149},"cayenne-query","write and modify Cayenne database queries","Use this skill whenever the user wants to write or modify a Cayenne query — fetching entities by criteria, joining, prefetching to avoid N+1, ordering, paginating, aggregating, or running raw SQL through Cayenne. Trigger on phrases like 'query for X', 'fetch all artists where ...', 'write an ObjectSelect', 'use SQLSelect', 'use SelectById', 'add a prefetch', 'get distinct values', 'count rows', 'find by ID', 'load by primary key', 'build a Cayenne expression', 'why am I getting N+1', 'how do I paginate', 'select a single column', 'select columns into a DTO', 'named query in the DataMap'. Do NOT trigger for modeling changes (use cayenne-modeling) or runtime bootstrap (use cayenne-runtime).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1145,1146,1147,1148],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1101,"slug":1102,"type":15},"2026-07-12T08:32:35.072322",8,{"items":1152,"total":1267},[1153,1169,1183,1196,1209,1222,1228,1235,1241,1248,1254,1260],{"slug":1154,"name":1154,"fn":1155,"description":1156,"org":1157,"tags":1158,"stars":1166,"repoUrl":1167,"updatedAt":1168},"datafusion-python","write Apache DataFusion Python code","Use when the user is writing datafusion-python (Apache DataFusion Python bindings) DataFrame or SQL code. Covers imports, data loading, DataFrame operations, expression building, SQL-to-DataFrame mappings, idiomatic patterns, and common pitfalls.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1159,1162,1165],{"name":1160,"slug":1161,"type":15},"Data Analysis","data-analysis",{"name":1163,"slug":1164,"type":15},"Python","python",{"name":1101,"slug":1102,"type":15},593,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fdatafusion-python","2026-07-12T08:36:04.957626",{"slug":1170,"name":1170,"fn":1171,"description":1172,"org":1173,"tags":1174,"stars":1180,"repoUrl":1181,"updatedAt":1182},"bydbql","generate and execute BanyanDB BydbQL queries","Generate, validate, and optionally execute read-only BanyanDB BydbQL for STREAM, MEASURE, TRACE, and PROPERTY resources. Use when the user asks to query BanyanDB, translate natural language to BydbQL, inspect BanyanDB schema or data, validate BydbQL, or fetch raw BanyanDB records.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1175,1178,1179],{"name":1176,"slug":1177,"type":15},"Analytics","analytics",{"name":17,"slug":18,"type":15},{"name":1101,"slug":1102,"type":15},344,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fskywalking-banyandb","2026-07-12T08:31:01.294423",{"slug":1184,"name":1184,"fn":1185,"description":1186,"org":1187,"tags":1188,"stars":1180,"repoUrl":1181,"updatedAt":1195},"compiling","compile and build BanyanDB projects","Compile and build the SkyWalking BanyanDB project. Use when the user asks to compile, build, or generate code for this project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1189,1192],{"name":1190,"slug":1191,"type":15},"Build","build",{"name":1193,"slug":1194,"type":15},"Engineering","engineering","2026-07-12T08:31:06.373309",{"slug":1197,"name":1197,"fn":1198,"description":1199,"org":1200,"tags":1201,"stars":1180,"repoUrl":1181,"updatedAt":1208},"gh-pull-request","create GitHub pull requests for BanyanDB","Create a GitHub pull request for SkyWalking BanyanDB. Use when the user asks to create a PR, submit changes, or open a pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1202,1205],{"name":1203,"slug":1204,"type":15},"GitHub","github",{"name":1206,"slug":1207,"type":15},"Pull Requests","pull-requests","2026-07-12T08:31:03.792415",{"slug":1210,"name":1210,"fn":1211,"description":1212,"org":1213,"tags":1214,"stars":1180,"repoUrl":1181,"updatedAt":1221},"vendor-update","update Go and Node.js vendor dependencies","Upgrade Go\u002FNode.js vendor dependencies and sync tool versions. Use whenever the user says \"upgrade dependencies\", \"update vendors\", \"vendor update\", \"run vendor-upgrade\", \"bump dependencies\", \"update packages\", or asks to run the `vendor-update` Make target. This skill also checks `scripts\u002Fbuild\u002Fversion.mk` after upgrading to see if any tracked tool versions need updating too, and removes stale binaries from `bin\u002F` when versions change.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1215,1218],{"name":1216,"slug":1217,"type":15},"Go","go",{"name":1219,"slug":1220,"type":15},"Node.js","node-js","2026-07-12T08:31:02.555555",{"slug":817,"name":817,"fn":1082,"description":1083,"org":1223,"tags":1224,"stars":22,"repoUrl":23,"updatedAt":1091},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1225,1226,1227],{"name":1087,"slug":1088,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":851,"name":851,"fn":1093,"description":1094,"org":1229,"tags":1230,"stars":22,"repoUrl":23,"updatedAt":1103},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1231,1232,1233,1234],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1101,"slug":1102,"type":15},{"slug":1105,"name":1105,"fn":1106,"description":1107,"org":1236,"tags":1237,"stars":22,"repoUrl":23,"updatedAt":1113},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1238,1239,1240],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":885,"name":885,"fn":1115,"description":1116,"org":1242,"tags":1243,"stars":22,"repoUrl":23,"updatedAt":1123},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1244,1245,1246,1247],{"name":1087,"slug":1088,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":87,"name":87,"fn":1125,"description":1126,"org":1249,"tags":1250,"stars":22,"repoUrl":23,"updatedAt":1132},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1251,1252,1253],{"name":1087,"slug":1088,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1255,"tags":1256,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1257,1258,1259],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"slug":1140,"name":1140,"fn":1141,"description":1142,"org":1261,"tags":1262,"stars":22,"repoUrl":23,"updatedAt":1149},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1263,1264,1265,1266],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1101,"slug":1102,"type":15},108]