[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-flutter-dart-resolve-package-conflicts":3,"mdc-ajzv7m-key":32,"related-org-flutter-dart-resolve-package-conflicts":1227,"related-repo-flutter-dart-resolve-package-conflicts":1357},{"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":28,"sourceUrl":30,"mdContent":31},"dart-resolve-package-conflicts","resolve Dart package version conflicts","Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"flutter","Flutter (Google)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fflutter.png",[12,16,19],{"name":13,"slug":14,"type":15},"Engineering","engineering","tag",{"name":17,"slug":18,"type":15},"Dart","dart",{"name":20,"slug":21,"type":15},"Debugging","debugging",2664,"https:\u002F\u002Fgithub.com\u002Fflutter\u002Fagent-plugins","2026-07-15T05:22:30.059335",null,155,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fflutter\u002Fagent-plugins\u002Ftree\u002FHEAD\u002Fskills\u002Fdart-resolve-package-conflicts","---\nname: dart-resolve-package-conflicts\ndescription: Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.\nmetadata:\n  model: models\u002Fgemini-3.1-pro-preview\n  last_modified: Fri, 24 Apr 2026 15:11:14 GMT\n---\n# Managing Dart Dependencies\n\n## Contents\n- [Core Concepts](#core-concepts)\n- [Version Constraints](#version-constraints)\n- [Workflow: Auditing Dependencies](#workflow-auditing-dependencies)\n- [Workflow: Upgrading Dependencies](#workflow-upgrading-dependencies)\n- [Workflow: Resolving Version Conflicts](#workflow-resolving-version-conflicts)\n- [Examples](#examples)\n\n## Core Concepts\n\nDart enforces a strict single-version rule for dependencies: a project and all its transitive dependencies must resolve to a single, shared version of any given package. This prevents runtime type mismatches but introduces the risk of \"version lock.\"\n\nTo mitigate version lock, Dart relies on version constraints rather than pinned versions in the `pubspec.yaml`. The `pubspec.lock` file maintains the exact resolved versions for reproducible builds.\n\nUnderstand the output columns of `dart pub outdated`:\n*   **Current:** The version currently recorded in `pubspec.lock`.\n*   **Upgradable:** The latest version allowed by the constraints in `pubspec.yaml`. `dart pub upgrade` resolves to this.\n*   **Resolvable:** The absolute latest version that can be resolved when factoring in all other dependencies in the project.\n*   **Latest:** The latest published version of the package (excluding prereleases).\n\n## Version Constraints\n\n*   **Use Caret Syntax:** Always use caret syntax (e.g., `^1.2.3`) for dependencies in `pubspec.yaml`. This allows `pub` to select newer, non-breaking versions (up to, but not including, the next major version) during resolution.\n*   **Tighten Dev Dependencies:** Set the lower bound of `dev_dependencies` to the exact version currently used. This reduces resolution complexity and prevents older, incompatible dev tools from being selected.\n*   **Enforce Lockfiles in CI:** Use `dart pub get --enforce-lockfile` in CI\u002FCD pipelines to ensure the exact versions tested locally are used in production.\n\n## Workflow: Auditing Dependencies\n\nRun this workflow periodically to identify stale packages that may impact stability or performance.\n\n**Task Progress:**\n- [ ] Run `dart pub outdated`.\n- [ ] Review the **Upgradable** column to identify packages that can be updated without modifying `pubspec.yaml`.\n- [ ] Review the **Resolvable** column to identify packages that require constraint modifications in `pubspec.yaml` to update.\n- [ ] Identify any packages marked as retracted or discontinued.\n\n## Workflow: Upgrading Dependencies\n\nUse conditional logic based on the audit results to upgrade dependencies.\n\n**Task Progress:**\n- [ ] **If updating to \"Upgradable\" versions:**\n  - [ ] Run `dart pub upgrade`.\n  - [ ] Run `dart pub upgrade --tighten` to automatically update the lower bounds in `pubspec.yaml` to match the newly resolved versions.\n- [ ] **If updating to \"Resolvable\" versions (Major updates):**\n  - [ ] Manually edit `pubspec.yaml` to bump the version constraint to match the \"Resolvable\" column (e.g., change `^0.11.0` to `^0.12.1`).\n  - [ ] Run `dart pub upgrade` to resolve the new constraints and update `pubspec.lock`.\n- [ ] **Feedback Loop:**\n  - [ ] Run `dart analyze` -> review errors -> fix breaking API changes.\n  - [ ] Run `dart test` -> review failures -> fix regressions.\n\n## Workflow: Resolving Version Conflicts\n\nWhen `pub` cannot find a set of concrete versions that satisfy all constraints, or when dealing with a retracted package version, manipulate the lockfile surgically.\n\n**NEVER** delete the entire `pubspec.lock` file and run `dart pub get`. This causes uncontrolled upgrades across the entire dependency graph.\n\n**Task Progress:**\n- [ ] Open `pubspec.lock`.\n- [ ] Locate the specific YAML block for the conflicting or retracted package.\n- [ ] Delete ONLY that package's entry from the lockfile.\n- [ ] Run `dart pub get` to fetch the newest compatible, non-retracted version for that specific package.\n- [ ] **Feedback Loop:**\n  - [ ] Run `dart pub deps` -> verify the dependency graph resolves correctly.\n  - [ ] If resolution fails, identify the transitive dependency causing the lock, update its constraint in `pubspec.yaml`, and retry.\n\n## Examples\n\n### Tightening Constraints\nWhen `dart pub outdated` shows a package is resolvable to a higher minor\u002Fpatch version, use the `--tighten` flag to update the `pubspec.yaml` automatically.\n\n**Input (`pubspec.yaml`):**\n```yaml\ndependencies:\n  http: ^0.13.0\n```\n\n**Command:**\n```bash\ndart pub upgrade --tighten http\n```\n\n**Output (`pubspec.yaml`):**\n```yaml\ndependencies:\n  http: ^0.13.5\n```\n\n### Surgical Lockfile Removal\nIf `package_a` is retracted or locked in a conflict, remove only its block from `pubspec.lock`.\n\n**Before (`pubspec.lock`):**\n```yaml\npackages:\n  package_a:\n    dependency: \"direct main\"\n    description:\n      name: package_a\n      url: \"https:\u002F\u002Fpub.dev\"\n    source: hosted\n    version: \"1.0.0\" # Retracted version\n  package_b:\n    dependency: \"direct main\"\n    # ...\n```\n\n**Action:** Delete the `package_a` block entirely. Leave `package_b` untouched. Run `dart pub get`.\n",{"data":33,"body":37},{"name":4,"description":6,"metadata":34},{"model":35,"last_modified":36},"models\u002Fgemini-3.1-pro-preview","Fri, 24 Apr 2026 15:11:14 GMT",{"type":38,"children":39},"root",[40,49,56,116,121,127,149,162,228,233,305,310,315,323,400,405,410,417,595,600,612,637,644,744,749,756,782,797,845,853,890,904,938,944,963,977,1190,1221],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"managing-dart-dependencies",[46],{"type":47,"value":48},"text","Managing Dart Dependencies",{"type":41,"tag":50,"props":51,"children":53},"h2",{"id":52},"contents",[54],{"type":47,"value":55},"Contents",{"type":41,"tag":57,"props":58,"children":59},"ul",{},[60,71,80,89,98,107],{"type":41,"tag":61,"props":62,"children":63},"li",{},[64],{"type":41,"tag":65,"props":66,"children":68},"a",{"href":67},"#core-concepts",[69],{"type":47,"value":70},"Core Concepts",{"type":41,"tag":61,"props":72,"children":73},{},[74],{"type":41,"tag":65,"props":75,"children":77},{"href":76},"#version-constraints",[78],{"type":47,"value":79},"Version Constraints",{"type":41,"tag":61,"props":81,"children":82},{},[83],{"type":41,"tag":65,"props":84,"children":86},{"href":85},"#workflow-auditing-dependencies",[87],{"type":47,"value":88},"Workflow: Auditing Dependencies",{"type":41,"tag":61,"props":90,"children":91},{},[92],{"type":41,"tag":65,"props":93,"children":95},{"href":94},"#workflow-upgrading-dependencies",[96],{"type":47,"value":97},"Workflow: Upgrading Dependencies",{"type":41,"tag":61,"props":99,"children":100},{},[101],{"type":41,"tag":65,"props":102,"children":104},{"href":103},"#workflow-resolving-version-conflicts",[105],{"type":47,"value":106},"Workflow: Resolving Version Conflicts",{"type":41,"tag":61,"props":108,"children":109},{},[110],{"type":41,"tag":65,"props":111,"children":113},{"href":112},"#examples",[114],{"type":47,"value":115},"Examples",{"type":41,"tag":50,"props":117,"children":119},{"id":118},"core-concepts",[120],{"type":47,"value":70},{"type":41,"tag":122,"props":123,"children":124},"p",{},[125],{"type":47,"value":126},"Dart enforces a strict single-version rule for dependencies: a project and all its transitive dependencies must resolve to a single, shared version of any given package. This prevents runtime type mismatches but introduces the risk of \"version lock.\"",{"type":41,"tag":122,"props":128,"children":129},{},[130,132,139,141,147],{"type":47,"value":131},"To mitigate version lock, Dart relies on version constraints rather than pinned versions in the ",{"type":41,"tag":133,"props":134,"children":136},"code",{"className":135},[],[137],{"type":47,"value":138},"pubspec.yaml",{"type":47,"value":140},". The ",{"type":41,"tag":133,"props":142,"children":144},{"className":143},[],[145],{"type":47,"value":146},"pubspec.lock",{"type":47,"value":148}," file maintains the exact resolved versions for reproducible builds.",{"type":41,"tag":122,"props":150,"children":151},{},[152,154,160],{"type":47,"value":153},"Understand the output columns of ",{"type":41,"tag":133,"props":155,"children":157},{"className":156},[],[158],{"type":47,"value":159},"dart pub outdated",{"type":47,"value":161},":",{"type":41,"tag":57,"props":163,"children":164},{},[165,183,208,218],{"type":41,"tag":61,"props":166,"children":167},{},[168,174,176,181],{"type":41,"tag":169,"props":170,"children":171},"strong",{},[172],{"type":47,"value":173},"Current:",{"type":47,"value":175}," The version currently recorded in ",{"type":41,"tag":133,"props":177,"children":179},{"className":178},[],[180],{"type":47,"value":146},{"type":47,"value":182},".",{"type":41,"tag":61,"props":184,"children":185},{},[186,191,193,198,200,206],{"type":41,"tag":169,"props":187,"children":188},{},[189],{"type":47,"value":190},"Upgradable:",{"type":47,"value":192}," The latest version allowed by the constraints in ",{"type":41,"tag":133,"props":194,"children":196},{"className":195},[],[197],{"type":47,"value":138},{"type":47,"value":199},". ",{"type":41,"tag":133,"props":201,"children":203},{"className":202},[],[204],{"type":47,"value":205},"dart pub upgrade",{"type":47,"value":207}," resolves to this.",{"type":41,"tag":61,"props":209,"children":210},{},[211,216],{"type":41,"tag":169,"props":212,"children":213},{},[214],{"type":47,"value":215},"Resolvable:",{"type":47,"value":217}," The absolute latest version that can be resolved when factoring in all other dependencies in the project.",{"type":41,"tag":61,"props":219,"children":220},{},[221,226],{"type":41,"tag":169,"props":222,"children":223},{},[224],{"type":47,"value":225},"Latest:",{"type":47,"value":227}," The latest published version of the package (excluding prereleases).",{"type":41,"tag":50,"props":229,"children":231},{"id":230},"version-constraints",[232],{"type":47,"value":79},{"type":41,"tag":57,"props":234,"children":235},{},[236,269,287],{"type":41,"tag":61,"props":237,"children":238},{},[239,244,246,252,254,259,261,267],{"type":41,"tag":169,"props":240,"children":241},{},[242],{"type":47,"value":243},"Use Caret Syntax:",{"type":47,"value":245}," Always use caret syntax (e.g., ",{"type":41,"tag":133,"props":247,"children":249},{"className":248},[],[250],{"type":47,"value":251},"^1.2.3",{"type":47,"value":253},") for dependencies in ",{"type":41,"tag":133,"props":255,"children":257},{"className":256},[],[258],{"type":47,"value":138},{"type":47,"value":260},". This allows ",{"type":41,"tag":133,"props":262,"children":264},{"className":263},[],[265],{"type":47,"value":266},"pub",{"type":47,"value":268}," to select newer, non-breaking versions (up to, but not including, the next major version) during resolution.",{"type":41,"tag":61,"props":270,"children":271},{},[272,277,279,285],{"type":41,"tag":169,"props":273,"children":274},{},[275],{"type":47,"value":276},"Tighten Dev Dependencies:",{"type":47,"value":278}," Set the lower bound of ",{"type":41,"tag":133,"props":280,"children":282},{"className":281},[],[283],{"type":47,"value":284},"dev_dependencies",{"type":47,"value":286}," to the exact version currently used. This reduces resolution complexity and prevents older, incompatible dev tools from being selected.",{"type":41,"tag":61,"props":288,"children":289},{},[290,295,297,303],{"type":41,"tag":169,"props":291,"children":292},{},[293],{"type":47,"value":294},"Enforce Lockfiles in CI:",{"type":47,"value":296}," Use ",{"type":41,"tag":133,"props":298,"children":300},{"className":299},[],[301],{"type":47,"value":302},"dart pub get --enforce-lockfile",{"type":47,"value":304}," in CI\u002FCD pipelines to ensure the exact versions tested locally are used in production.",{"type":41,"tag":50,"props":306,"children":308},{"id":307},"workflow-auditing-dependencies",[309],{"type":47,"value":88},{"type":41,"tag":122,"props":311,"children":312},{},[313],{"type":47,"value":314},"Run this workflow periodically to identify stale packages that may impact stability or performance.",{"type":41,"tag":122,"props":316,"children":317},{},[318],{"type":41,"tag":169,"props":319,"children":320},{},[321],{"type":47,"value":322},"Task Progress:",{"type":41,"tag":57,"props":324,"children":327},{"className":325},[326],"contains-task-list",[328,347,369,391],{"type":41,"tag":61,"props":329,"children":332},{"className":330},[331],"task-list-item",[333,339,341,346],{"type":41,"tag":334,"props":335,"children":338},"input",{"disabled":336,"type":337},true,"checkbox",[],{"type":47,"value":340}," Run ",{"type":41,"tag":133,"props":342,"children":344},{"className":343},[],[345],{"type":47,"value":159},{"type":47,"value":182},{"type":41,"tag":61,"props":348,"children":350},{"className":349},[331],[351,354,356,361,363,368],{"type":41,"tag":334,"props":352,"children":353},{"disabled":336,"type":337},[],{"type":47,"value":355}," Review the ",{"type":41,"tag":169,"props":357,"children":358},{},[359],{"type":47,"value":360},"Upgradable",{"type":47,"value":362}," column to identify packages that can be updated without modifying ",{"type":41,"tag":133,"props":364,"children":366},{"className":365},[],[367],{"type":47,"value":138},{"type":47,"value":182},{"type":41,"tag":61,"props":370,"children":372},{"className":371},[331],[373,376,377,382,384,389],{"type":41,"tag":334,"props":374,"children":375},{"disabled":336,"type":337},[],{"type":47,"value":355},{"type":41,"tag":169,"props":378,"children":379},{},[380],{"type":47,"value":381},"Resolvable",{"type":47,"value":383}," column to identify packages that require constraint modifications in ",{"type":41,"tag":133,"props":385,"children":387},{"className":386},[],[388],{"type":47,"value":138},{"type":47,"value":390}," to update.",{"type":41,"tag":61,"props":392,"children":394},{"className":393},[331],[395,398],{"type":41,"tag":334,"props":396,"children":397},{"disabled":336,"type":337},[],{"type":47,"value":399}," Identify any packages marked as retracted or discontinued.",{"type":41,"tag":50,"props":401,"children":403},{"id":402},"workflow-upgrading-dependencies",[404],{"type":47,"value":97},{"type":41,"tag":122,"props":406,"children":407},{},[408],{"type":47,"value":409},"Use conditional logic based on the audit results to upgrade dependencies.",{"type":41,"tag":122,"props":411,"children":412},{},[413],{"type":41,"tag":169,"props":414,"children":415},{},[416],{"type":47,"value":322},{"type":41,"tag":57,"props":418,"children":420},{"className":419},[326],[421,476,546],{"type":41,"tag":61,"props":422,"children":424},{"className":423},[331],[425,428,430,435],{"type":41,"tag":334,"props":426,"children":427},{"disabled":336,"type":337},[],{"type":47,"value":429}," ",{"type":41,"tag":169,"props":431,"children":432},{},[433],{"type":47,"value":434},"If updating to \"Upgradable\" versions:",{"type":41,"tag":57,"props":436,"children":438},{"className":437},[326],[439,453],{"type":41,"tag":61,"props":440,"children":442},{"className":441},[331],[443,446,447,452],{"type":41,"tag":334,"props":444,"children":445},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":448,"children":450},{"className":449},[],[451],{"type":47,"value":205},{"type":47,"value":182},{"type":41,"tag":61,"props":454,"children":456},{"className":455},[331],[457,460,461,467,469,474],{"type":41,"tag":334,"props":458,"children":459},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":462,"children":464},{"className":463},[],[465],{"type":47,"value":466},"dart pub upgrade --tighten",{"type":47,"value":468}," to automatically update the lower bounds in ",{"type":41,"tag":133,"props":470,"children":472},{"className":471},[],[473],{"type":47,"value":138},{"type":47,"value":475}," to match the newly resolved versions.",{"type":41,"tag":61,"props":477,"children":479},{"className":478},[331],[480,483,484,489],{"type":41,"tag":334,"props":481,"children":482},{"disabled":336,"type":337},[],{"type":47,"value":429},{"type":41,"tag":169,"props":485,"children":486},{},[487],{"type":47,"value":488},"If updating to \"Resolvable\" versions (Major updates):",{"type":41,"tag":57,"props":490,"children":492},{"className":491},[326],[493,525],{"type":41,"tag":61,"props":494,"children":496},{"className":495},[331],[497,500,502,507,509,515,517,523],{"type":41,"tag":334,"props":498,"children":499},{"disabled":336,"type":337},[],{"type":47,"value":501}," Manually edit ",{"type":41,"tag":133,"props":503,"children":505},{"className":504},[],[506],{"type":47,"value":138},{"type":47,"value":508}," to bump the version constraint to match the \"Resolvable\" column (e.g., change ",{"type":41,"tag":133,"props":510,"children":512},{"className":511},[],[513],{"type":47,"value":514},"^0.11.0",{"type":47,"value":516}," to ",{"type":41,"tag":133,"props":518,"children":520},{"className":519},[],[521],{"type":47,"value":522},"^0.12.1",{"type":47,"value":524},").",{"type":41,"tag":61,"props":526,"children":528},{"className":527},[331],[529,532,533,538,540,545],{"type":41,"tag":334,"props":530,"children":531},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":534,"children":536},{"className":535},[],[537],{"type":47,"value":205},{"type":47,"value":539}," to resolve the new constraints and update ",{"type":41,"tag":133,"props":541,"children":543},{"className":542},[],[544],{"type":47,"value":146},{"type":47,"value":182},{"type":41,"tag":61,"props":547,"children":549},{"className":548},[331],[550,553,554,559],{"type":41,"tag":334,"props":551,"children":552},{"disabled":336,"type":337},[],{"type":47,"value":429},{"type":41,"tag":169,"props":555,"children":556},{},[557],{"type":47,"value":558},"Feedback Loop:",{"type":41,"tag":57,"props":560,"children":562},{"className":561},[326],[563,579],{"type":41,"tag":61,"props":564,"children":566},{"className":565},[331],[567,570,571,577],{"type":41,"tag":334,"props":568,"children":569},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":572,"children":574},{"className":573},[],[575],{"type":47,"value":576},"dart analyze",{"type":47,"value":578}," -> review errors -> fix breaking API changes.",{"type":41,"tag":61,"props":580,"children":582},{"className":581},[331],[583,586,587,593],{"type":41,"tag":334,"props":584,"children":585},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":588,"children":590},{"className":589},[],[591],{"type":47,"value":592},"dart test",{"type":47,"value":594}," -> review failures -> fix regressions.",{"type":41,"tag":50,"props":596,"children":598},{"id":597},"workflow-resolving-version-conflicts",[599],{"type":47,"value":106},{"type":41,"tag":122,"props":601,"children":602},{},[603,605,610],{"type":47,"value":604},"When ",{"type":41,"tag":133,"props":606,"children":608},{"className":607},[],[609],{"type":47,"value":266},{"type":47,"value":611}," cannot find a set of concrete versions that satisfy all constraints, or when dealing with a retracted package version, manipulate the lockfile surgically.",{"type":41,"tag":122,"props":613,"children":614},{},[615,620,622,627,629,635],{"type":41,"tag":169,"props":616,"children":617},{},[618],{"type":47,"value":619},"NEVER",{"type":47,"value":621}," delete the entire ",{"type":41,"tag":133,"props":623,"children":625},{"className":624},[],[626],{"type":47,"value":146},{"type":47,"value":628}," file and run ",{"type":41,"tag":133,"props":630,"children":632},{"className":631},[],[633],{"type":47,"value":634},"dart pub get",{"type":47,"value":636},". This causes uncontrolled upgrades across the entire dependency graph.",{"type":41,"tag":122,"props":638,"children":639},{},[640],{"type":41,"tag":169,"props":641,"children":642},{},[643],{"type":47,"value":322},{"type":41,"tag":57,"props":645,"children":647},{"className":646},[326],[648,663,672,681,696],{"type":41,"tag":61,"props":649,"children":651},{"className":650},[331],[652,655,657,662],{"type":41,"tag":334,"props":653,"children":654},{"disabled":336,"type":337},[],{"type":47,"value":656}," Open ",{"type":41,"tag":133,"props":658,"children":660},{"className":659},[],[661],{"type":47,"value":146},{"type":47,"value":182},{"type":41,"tag":61,"props":664,"children":666},{"className":665},[331],[667,670],{"type":41,"tag":334,"props":668,"children":669},{"disabled":336,"type":337},[],{"type":47,"value":671}," Locate the specific YAML block for the conflicting or retracted package.",{"type":41,"tag":61,"props":673,"children":675},{"className":674},[331],[676,679],{"type":41,"tag":334,"props":677,"children":678},{"disabled":336,"type":337},[],{"type":47,"value":680}," Delete ONLY that package's entry from the lockfile.",{"type":41,"tag":61,"props":682,"children":684},{"className":683},[331],[685,688,689,694],{"type":41,"tag":334,"props":686,"children":687},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":690,"children":692},{"className":691},[],[693],{"type":47,"value":634},{"type":47,"value":695}," to fetch the newest compatible, non-retracted version for that specific package.",{"type":41,"tag":61,"props":697,"children":699},{"className":698},[331],[700,703,704,708],{"type":41,"tag":334,"props":701,"children":702},{"disabled":336,"type":337},[],{"type":47,"value":429},{"type":41,"tag":169,"props":705,"children":706},{},[707],{"type":47,"value":558},{"type":41,"tag":57,"props":709,"children":711},{"className":710},[326],[712,728],{"type":41,"tag":61,"props":713,"children":715},{"className":714},[331],[716,719,720,726],{"type":41,"tag":334,"props":717,"children":718},{"disabled":336,"type":337},[],{"type":47,"value":340},{"type":41,"tag":133,"props":721,"children":723},{"className":722},[],[724],{"type":47,"value":725},"dart pub deps",{"type":47,"value":727}," -> verify the dependency graph resolves correctly.",{"type":41,"tag":61,"props":729,"children":731},{"className":730},[331],[732,735,737,742],{"type":41,"tag":334,"props":733,"children":734},{"disabled":336,"type":337},[],{"type":47,"value":736}," If resolution fails, identify the transitive dependency causing the lock, update its constraint in ",{"type":41,"tag":133,"props":738,"children":740},{"className":739},[],[741],{"type":47,"value":138},{"type":47,"value":743},", and retry.",{"type":41,"tag":50,"props":745,"children":747},{"id":746},"examples",[748],{"type":47,"value":115},{"type":41,"tag":750,"props":751,"children":753},"h3",{"id":752},"tightening-constraints",[754],{"type":47,"value":755},"Tightening Constraints",{"type":41,"tag":122,"props":757,"children":758},{},[759,760,765,767,773,775,780],{"type":47,"value":604},{"type":41,"tag":133,"props":761,"children":763},{"className":762},[],[764],{"type":47,"value":159},{"type":47,"value":766}," shows a package is resolvable to a higher minor\u002Fpatch version, use the ",{"type":41,"tag":133,"props":768,"children":770},{"className":769},[],[771],{"type":47,"value":772},"--tighten",{"type":47,"value":774}," flag to update the ",{"type":41,"tag":133,"props":776,"children":778},{"className":777},[],[779],{"type":47,"value":138},{"type":47,"value":781}," automatically.",{"type":41,"tag":122,"props":783,"children":784},{},[785],{"type":41,"tag":169,"props":786,"children":787},{},[788,790,795],{"type":47,"value":789},"Input (",{"type":41,"tag":133,"props":791,"children":793},{"className":792},[],[794],{"type":47,"value":138},{"type":47,"value":796},"):",{"type":41,"tag":798,"props":799,"children":804},"pre",{"className":800,"code":801,"language":802,"meta":803,"style":803},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dependencies:\n  http: ^0.13.0\n","yaml","",[805],{"type":41,"tag":133,"props":806,"children":807},{"__ignoreMap":803},[808,826],{"type":41,"tag":809,"props":810,"children":813},"span",{"class":811,"line":812},"line",1,[814,820],{"type":41,"tag":809,"props":815,"children":817},{"style":816},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[818],{"type":47,"value":819},"dependencies",{"type":41,"tag":809,"props":821,"children":823},{"style":822},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[824],{"type":47,"value":825},":\n",{"type":41,"tag":809,"props":827,"children":829},{"class":811,"line":828},2,[830,835,839],{"type":41,"tag":809,"props":831,"children":832},{"style":816},[833],{"type":47,"value":834},"  http",{"type":41,"tag":809,"props":836,"children":837},{"style":822},[838],{"type":47,"value":161},{"type":41,"tag":809,"props":840,"children":842},{"style":841},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[843],{"type":47,"value":844}," ^0.13.0\n",{"type":41,"tag":122,"props":846,"children":847},{},[848],{"type":41,"tag":169,"props":849,"children":850},{},[851],{"type":47,"value":852},"Command:",{"type":41,"tag":798,"props":854,"children":858},{"className":855,"code":856,"language":857,"meta":803,"style":803},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dart pub upgrade --tighten http\n","bash",[859],{"type":41,"tag":133,"props":860,"children":861},{"__ignoreMap":803},[862],{"type":41,"tag":809,"props":863,"children":864},{"class":811,"line":812},[865,870,875,880,885],{"type":41,"tag":809,"props":866,"children":868},{"style":867},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[869],{"type":47,"value":18},{"type":41,"tag":809,"props":871,"children":872},{"style":841},[873],{"type":47,"value":874}," pub",{"type":41,"tag":809,"props":876,"children":877},{"style":841},[878],{"type":47,"value":879}," upgrade",{"type":41,"tag":809,"props":881,"children":882},{"style":841},[883],{"type":47,"value":884}," --tighten",{"type":41,"tag":809,"props":886,"children":887},{"style":841},[888],{"type":47,"value":889}," http\n",{"type":41,"tag":122,"props":891,"children":892},{},[893],{"type":41,"tag":169,"props":894,"children":895},{},[896,898,903],{"type":47,"value":897},"Output (",{"type":41,"tag":133,"props":899,"children":901},{"className":900},[],[902],{"type":47,"value":138},{"type":47,"value":796},{"type":41,"tag":798,"props":905,"children":907},{"className":800,"code":906,"language":802,"meta":803,"style":803},"dependencies:\n  http: ^0.13.5\n",[908],{"type":41,"tag":133,"props":909,"children":910},{"__ignoreMap":803},[911,922],{"type":41,"tag":809,"props":912,"children":913},{"class":811,"line":812},[914,918],{"type":41,"tag":809,"props":915,"children":916},{"style":816},[917],{"type":47,"value":819},{"type":41,"tag":809,"props":919,"children":920},{"style":822},[921],{"type":47,"value":825},{"type":41,"tag":809,"props":923,"children":924},{"class":811,"line":828},[925,929,933],{"type":41,"tag":809,"props":926,"children":927},{"style":816},[928],{"type":47,"value":834},{"type":41,"tag":809,"props":930,"children":931},{"style":822},[932],{"type":47,"value":161},{"type":41,"tag":809,"props":934,"children":935},{"style":841},[936],{"type":47,"value":937}," ^0.13.5\n",{"type":41,"tag":750,"props":939,"children":941},{"id":940},"surgical-lockfile-removal",[942],{"type":47,"value":943},"Surgical Lockfile Removal",{"type":41,"tag":122,"props":945,"children":946},{},[947,949,955,957,962],{"type":47,"value":948},"If ",{"type":41,"tag":133,"props":950,"children":952},{"className":951},[],[953],{"type":47,"value":954},"package_a",{"type":47,"value":956}," is retracted or locked in a conflict, remove only its block from ",{"type":41,"tag":133,"props":958,"children":960},{"className":959},[],[961],{"type":47,"value":146},{"type":47,"value":182},{"type":41,"tag":122,"props":964,"children":965},{},[966],{"type":41,"tag":169,"props":967,"children":968},{},[969,971,976],{"type":47,"value":970},"Before (",{"type":41,"tag":133,"props":972,"children":974},{"className":973},[],[975],{"type":47,"value":146},{"type":47,"value":796},{"type":41,"tag":798,"props":978,"children":980},{"className":800,"code":979,"language":802,"meta":803,"style":803},"packages:\n  package_a:\n    dependency: \"direct main\"\n    description:\n      name: package_a\n      url: \"https:\u002F\u002Fpub.dev\"\n    source: hosted\n    version: \"1.0.0\" # Retracted version\n  package_b:\n    dependency: \"direct main\"\n    # ...\n",[981],{"type":41,"tag":133,"props":982,"children":983},{"__ignoreMap":803},[984,996,1008,1036,1049,1067,1093,1111,1144,1157,1181],{"type":41,"tag":809,"props":985,"children":986},{"class":811,"line":812},[987,992],{"type":41,"tag":809,"props":988,"children":989},{"style":816},[990],{"type":47,"value":991},"packages",{"type":41,"tag":809,"props":993,"children":994},{"style":822},[995],{"type":47,"value":825},{"type":41,"tag":809,"props":997,"children":998},{"class":811,"line":828},[999,1004],{"type":41,"tag":809,"props":1000,"children":1001},{"style":816},[1002],{"type":47,"value":1003},"  package_a",{"type":41,"tag":809,"props":1005,"children":1006},{"style":822},[1007],{"type":47,"value":825},{"type":41,"tag":809,"props":1009,"children":1011},{"class":811,"line":1010},3,[1012,1017,1021,1026,1031],{"type":41,"tag":809,"props":1013,"children":1014},{"style":816},[1015],{"type":47,"value":1016},"    dependency",{"type":41,"tag":809,"props":1018,"children":1019},{"style":822},[1020],{"type":47,"value":161},{"type":41,"tag":809,"props":1022,"children":1023},{"style":822},[1024],{"type":47,"value":1025}," \"",{"type":41,"tag":809,"props":1027,"children":1028},{"style":841},[1029],{"type":47,"value":1030},"direct main",{"type":41,"tag":809,"props":1032,"children":1033},{"style":822},[1034],{"type":47,"value":1035},"\"\n",{"type":41,"tag":809,"props":1037,"children":1039},{"class":811,"line":1038},4,[1040,1045],{"type":41,"tag":809,"props":1041,"children":1042},{"style":816},[1043],{"type":47,"value":1044},"    description",{"type":41,"tag":809,"props":1046,"children":1047},{"style":822},[1048],{"type":47,"value":825},{"type":41,"tag":809,"props":1050,"children":1052},{"class":811,"line":1051},5,[1053,1058,1062],{"type":41,"tag":809,"props":1054,"children":1055},{"style":816},[1056],{"type":47,"value":1057},"      name",{"type":41,"tag":809,"props":1059,"children":1060},{"style":822},[1061],{"type":47,"value":161},{"type":41,"tag":809,"props":1063,"children":1064},{"style":841},[1065],{"type":47,"value":1066}," package_a\n",{"type":41,"tag":809,"props":1068,"children":1070},{"class":811,"line":1069},6,[1071,1076,1080,1084,1089],{"type":41,"tag":809,"props":1072,"children":1073},{"style":816},[1074],{"type":47,"value":1075},"      url",{"type":41,"tag":809,"props":1077,"children":1078},{"style":822},[1079],{"type":47,"value":161},{"type":41,"tag":809,"props":1081,"children":1082},{"style":822},[1083],{"type":47,"value":1025},{"type":41,"tag":809,"props":1085,"children":1086},{"style":841},[1087],{"type":47,"value":1088},"https:\u002F\u002Fpub.dev",{"type":41,"tag":809,"props":1090,"children":1091},{"style":822},[1092],{"type":47,"value":1035},{"type":41,"tag":809,"props":1094,"children":1096},{"class":811,"line":1095},7,[1097,1102,1106],{"type":41,"tag":809,"props":1098,"children":1099},{"style":816},[1100],{"type":47,"value":1101},"    source",{"type":41,"tag":809,"props":1103,"children":1104},{"style":822},[1105],{"type":47,"value":161},{"type":41,"tag":809,"props":1107,"children":1108},{"style":841},[1109],{"type":47,"value":1110}," hosted\n",{"type":41,"tag":809,"props":1112,"children":1114},{"class":811,"line":1113},8,[1115,1120,1124,1128,1133,1138],{"type":41,"tag":809,"props":1116,"children":1117},{"style":816},[1118],{"type":47,"value":1119},"    version",{"type":41,"tag":809,"props":1121,"children":1122},{"style":822},[1123],{"type":47,"value":161},{"type":41,"tag":809,"props":1125,"children":1126},{"style":822},[1127],{"type":47,"value":1025},{"type":41,"tag":809,"props":1129,"children":1130},{"style":841},[1131],{"type":47,"value":1132},"1.0.0",{"type":41,"tag":809,"props":1134,"children":1135},{"style":822},[1136],{"type":47,"value":1137},"\"",{"type":41,"tag":809,"props":1139,"children":1141},{"style":1140},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1142],{"type":47,"value":1143}," # Retracted version\n",{"type":41,"tag":809,"props":1145,"children":1147},{"class":811,"line":1146},9,[1148,1153],{"type":41,"tag":809,"props":1149,"children":1150},{"style":816},[1151],{"type":47,"value":1152},"  package_b",{"type":41,"tag":809,"props":1154,"children":1155},{"style":822},[1156],{"type":47,"value":825},{"type":41,"tag":809,"props":1158,"children":1160},{"class":811,"line":1159},10,[1161,1165,1169,1173,1177],{"type":41,"tag":809,"props":1162,"children":1163},{"style":816},[1164],{"type":47,"value":1016},{"type":41,"tag":809,"props":1166,"children":1167},{"style":822},[1168],{"type":47,"value":161},{"type":41,"tag":809,"props":1170,"children":1171},{"style":822},[1172],{"type":47,"value":1025},{"type":41,"tag":809,"props":1174,"children":1175},{"style":841},[1176],{"type":47,"value":1030},{"type":41,"tag":809,"props":1178,"children":1179},{"style":822},[1180],{"type":47,"value":1035},{"type":41,"tag":809,"props":1182,"children":1184},{"class":811,"line":1183},11,[1185],{"type":41,"tag":809,"props":1186,"children":1187},{"style":1140},[1188],{"type":47,"value":1189},"    # ...\n",{"type":41,"tag":122,"props":1191,"children":1192},{},[1193,1198,1200,1205,1207,1213,1215,1220],{"type":41,"tag":169,"props":1194,"children":1195},{},[1196],{"type":47,"value":1197},"Action:",{"type":47,"value":1199}," Delete the ",{"type":41,"tag":133,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":47,"value":954},{"type":47,"value":1206}," block entirely. Leave ",{"type":41,"tag":133,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":47,"value":1212},"package_b",{"type":47,"value":1214}," untouched. Run ",{"type":41,"tag":133,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":47,"value":634},{"type":47,"value":182},{"type":41,"tag":1222,"props":1223,"children":1224},"style",{},[1225],{"type":47,"value":1226},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1228,"total":1356},[1229,1240,1251,1263,1272,1281,1293,1299,1311,1323,1337,1347],{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1233,"tags":1234,"stars":22,"repoUrl":23,"updatedAt":1239},"dart-add-unit-test","write unit tests for Dart code","Write and organize unit tests for functions, methods, and classes using `package:test`. Use when creating new logic or fixing bugs to ensure code remains correct and regression-free.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1235,1236],{"name":17,"slug":18,"type":15},{"name":1237,"slug":1238,"type":15},"Testing","testing","2026-07-15T05:22:40.104823",{"slug":1241,"name":1241,"fn":1242,"description":1243,"org":1244,"tags":1245,"stars":22,"repoUrl":23,"updatedAt":1250},"dart-build-cli-app","build Dart command line applications","Entrypoint structure, exit codes, cross-platform scripts. Use when building command line utilities, scripts, or applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1246,1249],{"name":1247,"slug":1248,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},"2026-07-15T05:22:18.863572",{"slug":1252,"name":1252,"fn":1253,"description":1254,"org":1255,"tags":1256,"stars":22,"repoUrl":23,"updatedAt":1262},"dart-collect-coverage","collect Dart test coverage reports","Collect coverage using the coverage packge and create an LCOV report",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1257,1258,1261],{"name":17,"slug":18,"type":15},{"name":1259,"slug":1260,"type":15},"Reporting","reporting",{"name":1237,"slug":1238,"type":15},"2026-07-15T05:22:21.38636",{"slug":1264,"name":1264,"fn":1265,"description":1266,"org":1267,"tags":1268,"stars":22,"repoUrl":23,"updatedAt":1271},"dart-fix-runtime-errors","debug and fix Dart runtime errors","Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify resolution via hot_reload.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1269,1270],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:22:22.622501",{"slug":1273,"name":1273,"fn":1274,"description":1275,"org":1276,"tags":1277,"stars":22,"repoUrl":23,"updatedAt":1280},"dart-generate-test-mocks","generate mock objects for Dart tests","Define and generate mock objects for external dependencies using `package:mockito` and `build_runner`. Use when unit testing classes that depend on complex external services like APIs or databases.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1278,1279],{"name":17,"slug":18,"type":15},{"name":1237,"slug":1238,"type":15},"2026-07-15T05:22:42.607449",{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":22,"repoUrl":23,"updatedAt":1292},"dart-migrate-to-checks-package","migrate test matchers to checks package","Replace the usage of `expect` and similar functions from `package:matcher`\nto `package:checks` equivalents.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1287,1288,1291],{"name":17,"slug":18,"type":15},{"name":1289,"slug":1290,"type":15},"Migration","migration",{"name":1237,"slug":1238,"type":15},"2026-07-15T05:22:31.276564",{"slug":4,"name":4,"fn":5,"description":6,"org":1294,"tags":1295,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1296,1297,1298],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"slug":1300,"name":1300,"fn":1301,"description":1302,"org":1303,"tags":1304,"stars":22,"repoUrl":23,"updatedAt":1310},"dart-run-static-analysis","run static analysis and apply fixes","Execute `dart analyze` to identify warnings and errors, and use `dart fix --apply` to automatically resolve mechanical lint issues. Use during development to ensure code quality and before committing changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1305,1308,1309],{"name":1306,"slug":1307,"type":15},"Code Analysis","code-analysis",{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:22:23.861119",{"slug":1312,"name":1312,"fn":1313,"description":1314,"org":1315,"tags":1316,"stars":22,"repoUrl":23,"updatedAt":1322},"dart-setup-ffi-assets","package C\u002FC++ assets for Dart","Guides agents in compiling and packaging C\u002FC++ source code into dynamic or static libraries (Code Assets) using Dart's Native Assets hook system (via hook\u002Fbuild.dart and hook\u002Flink.dart utilizing package:hooks and package:native_toolchain_c). Use when a user asks to: 'setup native assets', 'compile C\u002FC++ source code', 'bundle dynamic libraries', 'build native C code', 'link native assets', 'implement build.dart or link.dart hooks', or 'integrate C\u002FC++ interop in Dart\u002FFlutter'. Helps agents avoid manual toolchain orchestration and configures secure hash-validated binary downloads or advanced linker tree-shaking with package:record_use mapping.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1317,1318,1321],{"name":17,"slug":18,"type":15},{"name":1319,"slug":1320,"type":15},"Deployment","deployment",{"name":13,"slug":14,"type":15},"2026-07-15T05:22:20.138636",{"slug":1324,"name":1324,"fn":1325,"description":1326,"org":1327,"tags":1328,"stars":22,"repoUrl":23,"updatedAt":1336},"dart-skills-lint-setup","configure dart_skills_lint for Dart projects","Use this skill when you need to set up validation for AI agent skills in a Dart project for the first time.\nAdds the linter as a dev_dependency, creates a configuration file, and generates a baseline for legacy repos.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1329,1330,1333],{"name":17,"slug":18,"type":15},{"name":1331,"slug":1332,"type":15},"Plugin Development","plugin-development",{"name":1334,"slug":1335,"type":15},"QA","qa","2026-07-15T05:22:47.488998",{"slug":1338,"name":1338,"fn":1339,"description":1340,"org":1341,"tags":1342,"stars":22,"repoUrl":23,"updatedAt":1346},"dart-skills-lint-validation","validate agent skills with dart_skills_lint","Use this skill when you need to validate AI agent skills with dart_skills_lint — running the linter, interpreting failures, fixing violations, and authoring custom rules.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1343,1344,1345],{"name":17,"slug":18,"type":15},{"name":1331,"slug":1332,"type":15},{"name":1334,"slug":1335,"type":15},"2026-07-21T05:38:34.451024",{"slug":1348,"name":1348,"fn":1349,"description":1350,"org":1351,"tags":1352,"stars":22,"repoUrl":23,"updatedAt":1355},"dart-use-ffigen","generate FFI bindings with ffigen","Guide agents to use `package:ffigen` to automatically generate FFI bindings instead of writing them manually. Use this skill when a task involves writing new FFI bindings, extending C\u002FObjective-C\u002FSwift integrations, or replacing hand-crafted `dart:ffi` setups.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1353,1354],{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},"2026-07-15T05:22:17.592351",27,{"items":1358,"total":1397},[1359,1364,1369,1375,1380,1385,1391],{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1360,"tags":1361,"stars":22,"repoUrl":23,"updatedAt":1239},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1362,1363],{"name":17,"slug":18,"type":15},{"name":1237,"slug":1238,"type":15},{"slug":1241,"name":1241,"fn":1242,"description":1243,"org":1365,"tags":1366,"stars":22,"repoUrl":23,"updatedAt":1250},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1367,1368],{"name":1247,"slug":1248,"type":15},{"name":17,"slug":18,"type":15},{"slug":1252,"name":1252,"fn":1253,"description":1254,"org":1370,"tags":1371,"stars":22,"repoUrl":23,"updatedAt":1262},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1372,1373,1374],{"name":17,"slug":18,"type":15},{"name":1259,"slug":1260,"type":15},{"name":1237,"slug":1238,"type":15},{"slug":1264,"name":1264,"fn":1265,"description":1266,"org":1376,"tags":1377,"stars":22,"repoUrl":23,"updatedAt":1271},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1378,1379],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":1273,"name":1273,"fn":1274,"description":1275,"org":1381,"tags":1382,"stars":22,"repoUrl":23,"updatedAt":1280},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1383,1384],{"name":17,"slug":18,"type":15},{"name":1237,"slug":1238,"type":15},{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1386,"tags":1387,"stars":22,"repoUrl":23,"updatedAt":1292},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1388,1389,1390],{"name":17,"slug":18,"type":15},{"name":1289,"slug":1290,"type":15},{"name":1237,"slug":1238,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1392,"tags":1393,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1394,1395,1396],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},24]