[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cline-firestore-data":3,"mdc-2lyxuo-key":33,"related-org-cline-firestore-data":882,"related-repo-cline-firestore-data":1079},{"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":31,"mdContent":32},"firestore-data","manage Firestore NoSQL document operations","Handles NoSQL document operations and collection hierarchy exploration. Use for CRUD tasks and data retrieval. Provides flexible document manipulation and structured querying.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cline","Cline","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcline.png",[12,16,19],{"name":13,"slug":14,"type":15},"NoSQL","nosql","tag",{"name":17,"slug":18,"type":15},"Database","database",{"name":20,"slug":21,"type":15},"Firebase","firebase",10,"https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills","2026-07-12T08:13:40.968064",null,4,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"A collection of skills used at Cline","https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Ffirestore-data","---\nname: firestore-data\ndescription: Handles NoSQL document operations and collection hierarchy exploration. Use for CRUD tasks and data retrieval. Provides flexible document manipulation and structured querying.\n---\n\n## Usage\n\nAll scripts can be executed using Node.js. Replace `\u003Cparam_name>` and `\u003Cparam_value>` with actual values.\n\n**Bash:**\n`node \u003Cskill_dir>\u002Fscripts\u002F\u003Cscript_name>.js '{\"\u003Cparam_name>\": \"\u003Cparam_value>\"}'`\n\n**PowerShell:**\n`node \u003Cskill_dir>\u002Fscripts\u002F\u003Cscript_name>.js '{\\\"\u003Cparam_name>\\\": \\\"\u003Cparam_value>\\\"}'`\n\nNote: The scripts automatically load the environment variables from various .env files. Do not ask the user to set vars unless skill executions fails due to env var absence.\n\n\n## Scripts\n\n\n### add_documents\n\nAdds a new document to a Firestore collection. Please follow the best practices :\n 1. Always use typed values in the documentData: Every field must be wrapped with its appropriate type indicator (e.g., {\"stringValue\": \"text\"})\n 2. Integer values can be strings in the documentData: The tool accepts integer values as strings (e.g., {\"integerValue\": \"1500\"})\n 3. Use returnData sparingly: Only set to true when you need to verify the exact data that was written\n 4. Validate data before sending: Ensure your data matches Firestore's native JSON format\n 5. Handle timestamps properly: Use RFC3339 format for timestamp strings\n 6. Base64 encode binary data: Binary data must be base64 encoded in the bytesValue field\n 7. Consider security rules: Ensure your Firestore security rules allow document creation in the target collection\n\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| collectionPath | string | The relative path of the collection where the document will be added to (e.g., 'users' or 'users\u002FuserId\u002Fposts'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | Yes |  |\n| documentData | object | The document data in Firestore's native JSON format. Each field must be wrapped with a type indicator:\n- Strings: {\"stringValue\": \"text\"}\n- Integers: {\"integerValue\": \"123\"} or {\"integerValue\": 123}\n- Doubles: {\"doubleValue\": 123.45}\n- Booleans: {\"booleanValue\": true}\n- Timestamps: {\"timestampValue\": \"2025-01-07T10:00:00Z\"}\n- GeoPoints: {\"geoPointValue\": {\"latitude\": 34.05, \"longitude\": -118.24}}\n- Arrays: {\"arrayValue\": {\"values\": [{\"stringValue\": \"item1\"}, {\"integerValue\": \"2\"}]}}\n- Maps: {\"mapValue\": {\"fields\": {\"key1\": {\"stringValue\": \"value1\"}, \"key2\": {\"booleanValue\": true}}}}\n- Null: {\"nullValue\": null}\n- Bytes: {\"bytesValue\": \"base64EncodedString\"}\n- References: {\"referenceValue\": \"collection\u002Fdocument\"} | Yes |  |\n| returnData | boolean | If set to true the output will have the data of the created document. This flag if set to false will help avoid overloading the context of the agent. | No | `false` |\n\n\n---\n\n### delete_documents\n\nDelete multiple documents from Firestore\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| documentPaths | array | Array of relative document paths to delete from Firestore (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: These are relative paths, NOT absolute paths like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | Yes |  |\n\n\n---\n\n### get_documents\n\nGets multiple documents from Firestore by their paths\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| documentPaths | array | Array of relative document paths to retrieve from Firestore (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: These are relative paths, NOT absolute paths like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | Yes |  |\n\n\n---\n\n### list_collections\n\nList Firestore collections for a given parent path\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| parentPath | string | Relative parent document path to list subcollections from (e.g., 'users\u002FuserId'). If not provided, lists root collections. Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | No |  |\n\n\n---\n\n### query_collection\n\nRetrieves one or more Firestore documents from a collection in a database in the current project by a collection with a full document path.\nUse this if you know the exact path of a collection and the filtering clause you would like for the document.\n\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| collectionPath | string | The relative path to the Firestore collection to query (e.g., 'users' or 'users\u002FuserId\u002Fposts'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | Yes |  |\n| filters | array | Array of filter objects to apply to the query. Each filter is a JSON string with:\n- field: The field name to filter on\n- op: The operator to use (\"\u003C\", \"\u003C=\", \">\", \">=\", \"==\", \"!=\", \"array-contains\", \"array-contains-any\", \"in\", \"not-in\")\n- value: The value to compare against (can be string, number, boolean, or array)\nExample: {\"field\": \"age\", \"op\": \">\", \"value\": 18} | Yes |  |\n| orderBy | string | JSON string specifying the field and direction to order by (e.g., {\"field\": \"name\", \"direction\": \"ASCENDING\"}). Leave empty if not specified | Yes |  |\n| limit | integer | The maximum number of documents to return | No | `100` |\n| analyzeQuery | boolean | If true, returns query explain metrics including execution statistics | No | `false` |\n\n\n---\n\n### update_document\n\nUpdates an existing document in Firestore. Supports both full document updates and selective field updates using an update mask. Please follow the best practices:\n 1. Use update masks for precision: When you only need to update specific fields, use the updateMask parameter to avoid unintended changes\n 2. Always use typed values in the documentData: Every field must be wrapped with its appropriate type indicator (e.g., {\"stringValue\": \"text\"})\n 3. Delete fields using update mask: To delete fields, include them in the updateMask but omit them from documentData\n 4. Integer values can be strings: The skill accepts integer values as strings (e.g., {\"integerValue\": \"1500\"})\n 5. Use returnData sparingly: Only set to true when you need to verify the exact data after the update\n 6. Handle timestamps properly: Use RFC3339 format for timestamp strings\n 7. Consider security rules: Ensure your Firestore security rules allow document updates\n\n\n#### Parameters\n\n| Name | Type | Description | Required | Default |\n| :--- | :--- | :--- | :--- | :--- |\n| documentPath | string | The relative path of the document which needs to be updated (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...' | Yes |  |\n| documentData | object | The document data in Firestore's native JSON format. Each field must be wrapped with a type indicator:\n- Strings: {\"stringValue\": \"text\"}\n- Integers: {\"integerValue\": \"123\"} or {\"integerValue\": 123}\n- Doubles: {\"doubleValue\": 123.45}\n- Booleans: {\"booleanValue\": true}\n- Timestamps: {\"timestampValue\": \"2025-01-07T10:00:00Z\"}\n- GeoPoints: {\"geoPointValue\": {\"latitude\": 34.05, \"longitude\": -118.24}}\n- Arrays: {\"arrayValue\": {\"values\": [{\"stringValue\": \"item1\"}, {\"integerValue\": \"2\"}]}}\n- Maps: {\"mapValue\": {\"fields\": {\"key1\": {\"stringValue\": \"value1\"}, \"key2\": {\"booleanValue\": true}}}}\n- Null: {\"nullValue\": null}\n- Bytes: {\"bytesValue\": \"base64EncodedString\"}\n- References: {\"referenceValue\": \"collection\u002Fdocument\"} | Yes |  |\n| updateMask | array | The selective fields to update. If not provided, all fields in documentData will be updated. When provided, only the specified fields will be updated. Fields referenced in the mask but not present in documentData will be deleted from the document | No |  |\n| returnData | boolean | If set to true the output will have the data of the updated document. This flag if set to false will help avoid overloading the context of the agent. | No | `false` |\n\n\n---\n\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,70,85,99,104,110,116,121,161,168,262,337,341,346,351,356,413,416,421,426,431,486,489,494,499,504,561,564,569,574,579,657,689,692,697,702,738,743,820,879],{"type":39,"tag":40,"props":41,"children":43},"element","h2",{"id":42},"usage",[44],{"type":45,"value":46},"text","Usage",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,60,62,68],{"type":45,"value":52},"All scripts can be executed using Node.js. Replace ",{"type":39,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"\u003Cparam_name>",{"type":45,"value":61}," and ",{"type":39,"tag":54,"props":63,"children":65},{"className":64},[],[66],{"type":45,"value":67},"\u003Cparam_value>",{"type":45,"value":69}," with actual values.",{"type":39,"tag":48,"props":71,"children":72},{},[73,79],{"type":39,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":45,"value":78},"Bash:",{"type":39,"tag":54,"props":80,"children":82},{"className":81},[],[83],{"type":45,"value":84},"node \u003Cskill_dir>\u002Fscripts\u002F\u003Cscript_name>.js '{\"\u003Cparam_name>\": \"\u003Cparam_value>\"}'",{"type":39,"tag":48,"props":86,"children":87},{},[88,93],{"type":39,"tag":74,"props":89,"children":90},{},[91],{"type":45,"value":92},"PowerShell:",{"type":39,"tag":54,"props":94,"children":96},{"className":95},[],[97],{"type":45,"value":98},"node \u003Cskill_dir>\u002Fscripts\u002F\u003Cscript_name>.js '{\\\"\u003Cparam_name>\\\": \\\"\u003Cparam_value>\\\"}'",{"type":39,"tag":48,"props":100,"children":101},{},[102],{"type":45,"value":103},"Note: The scripts automatically load the environment variables from various .env files. Do not ask the user to set vars unless skill executions fails due to env var absence.",{"type":39,"tag":40,"props":105,"children":107},{"id":106},"scripts",[108],{"type":45,"value":109},"Scripts",{"type":39,"tag":111,"props":112,"children":114},"h3",{"id":113},"add_documents",[115],{"type":45,"value":113},{"type":39,"tag":48,"props":117,"children":118},{},[119],{"type":45,"value":120},"Adds a new document to a Firestore collection. Please follow the best practices :",{"type":39,"tag":122,"props":123,"children":124},"ol",{},[125,131,136,141,146,151,156],{"type":39,"tag":126,"props":127,"children":128},"li",{},[129],{"type":45,"value":130},"Always use typed values in the documentData: Every field must be wrapped with its appropriate type indicator (e.g., {\"stringValue\": \"text\"})",{"type":39,"tag":126,"props":132,"children":133},{},[134],{"type":45,"value":135},"Integer values can be strings in the documentData: The tool accepts integer values as strings (e.g., {\"integerValue\": \"1500\"})",{"type":39,"tag":126,"props":137,"children":138},{},[139],{"type":45,"value":140},"Use returnData sparingly: Only set to true when you need to verify the exact data that was written",{"type":39,"tag":126,"props":142,"children":143},{},[144],{"type":45,"value":145},"Validate data before sending: Ensure your data matches Firestore's native JSON format",{"type":39,"tag":126,"props":147,"children":148},{},[149],{"type":45,"value":150},"Handle timestamps properly: Use RFC3339 format for timestamp strings",{"type":39,"tag":126,"props":152,"children":153},{},[154],{"type":45,"value":155},"Base64 encode binary data: Binary data must be base64 encoded in the bytesValue field",{"type":39,"tag":126,"props":157,"children":158},{},[159],{"type":45,"value":160},"Consider security rules: Ensure your Firestore security rules allow document creation in the target collection",{"type":39,"tag":162,"props":163,"children":165},"h4",{"id":164},"parameters",[166],{"type":45,"value":167},"Parameters",{"type":39,"tag":169,"props":170,"children":171},"table",{},[172,207],{"type":39,"tag":173,"props":174,"children":175},"thead",{},[176],{"type":39,"tag":177,"props":178,"children":179},"tr",{},[180,187,192,197,202],{"type":39,"tag":181,"props":182,"children":184},"th",{"align":183},"left",[185],{"type":45,"value":186},"Name",{"type":39,"tag":181,"props":188,"children":189},{"align":183},[190],{"type":45,"value":191},"Type",{"type":39,"tag":181,"props":193,"children":194},{"align":183},[195],{"type":45,"value":196},"Description",{"type":39,"tag":181,"props":198,"children":199},{"align":183},[200],{"type":45,"value":201},"Required",{"type":39,"tag":181,"props":203,"children":204},{"align":183},[205],{"type":45,"value":206},"Default",{"type":39,"tag":208,"props":209,"children":210},"tbody",{},[211,238],{"type":39,"tag":177,"props":212,"children":213},{},[214,220,225,230,235],{"type":39,"tag":215,"props":216,"children":217},"td",{"align":183},[218],{"type":45,"value":219},"collectionPath",{"type":39,"tag":215,"props":221,"children":222},{"align":183},[223],{"type":45,"value":224},"string",{"type":39,"tag":215,"props":226,"children":227},{"align":183},[228],{"type":45,"value":229},"The relative path of the collection where the document will be added to (e.g., 'users' or 'users\u002FuserId\u002Fposts'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":231,"children":232},{"align":183},[233],{"type":45,"value":234},"Yes",{"type":39,"tag":215,"props":236,"children":237},{"align":183},[],{"type":39,"tag":177,"props":239,"children":240},{},[241,246,251,256,259],{"type":39,"tag":215,"props":242,"children":243},{"align":183},[244],{"type":45,"value":245},"documentData",{"type":39,"tag":215,"props":247,"children":248},{"align":183},[249],{"type":45,"value":250},"object",{"type":39,"tag":215,"props":252,"children":253},{"align":183},[254],{"type":45,"value":255},"The document data in Firestore's native JSON format. Each field must be wrapped with a type indicator:",{"type":39,"tag":215,"props":257,"children":258},{"align":183},[],{"type":39,"tag":215,"props":260,"children":261},{"align":183},[],{"type":39,"tag":263,"props":264,"children":265},"ul",{},[266,271,276,281,286,291,296,309,314,319,324],{"type":39,"tag":126,"props":267,"children":268},{},[269],{"type":45,"value":270},"Strings: {\"stringValue\": \"text\"}",{"type":39,"tag":126,"props":272,"children":273},{},[274],{"type":45,"value":275},"Integers: {\"integerValue\": \"123\"} or {\"integerValue\": 123}",{"type":39,"tag":126,"props":277,"children":278},{},[279],{"type":45,"value":280},"Doubles: {\"doubleValue\": 123.45}",{"type":39,"tag":126,"props":282,"children":283},{},[284],{"type":45,"value":285},"Booleans: {\"booleanValue\": true}",{"type":39,"tag":126,"props":287,"children":288},{},[289],{"type":45,"value":290},"Timestamps: {\"timestampValue\": \"2025-01-07T10:00:00Z\"}",{"type":39,"tag":126,"props":292,"children":293},{},[294],{"type":45,"value":295},"GeoPoints: {\"geoPointValue\": {\"latitude\": 34.05, \"longitude\": -118.24}}",{"type":39,"tag":126,"props":297,"children":298},{},[299,301,307],{"type":45,"value":300},"Arrays: {\"arrayValue\": {\"values\": ",{"type":39,"tag":302,"props":303,"children":304},"span",{},[305],{"type":45,"value":306},"{\"stringValue\": \"item1\"}, {\"integerValue\": \"2\"}",{"type":45,"value":308},"}}",{"type":39,"tag":126,"props":310,"children":311},{},[312],{"type":45,"value":313},"Maps: {\"mapValue\": {\"fields\": {\"key1\": {\"stringValue\": \"value1\"}, \"key2\": {\"booleanValue\": true}}}}",{"type":39,"tag":126,"props":315,"children":316},{},[317],{"type":45,"value":318},"Null: {\"nullValue\": null}",{"type":39,"tag":126,"props":320,"children":321},{},[322],{"type":45,"value":323},"Bytes: {\"bytesValue\": \"base64EncodedString\"}",{"type":39,"tag":126,"props":325,"children":326},{},[327,329,335],{"type":45,"value":328},"References: {\"referenceValue\": \"collection\u002Fdocument\"} | Yes |  |\n| returnData | boolean | If set to true the output will have the data of the created document. This flag if set to false will help avoid overloading the context of the agent. | No | ",{"type":39,"tag":54,"props":330,"children":332},{"className":331},[],[333],{"type":45,"value":334},"false",{"type":45,"value":336}," |",{"type":39,"tag":338,"props":339,"children":340},"hr",{},[],{"type":39,"tag":111,"props":342,"children":344},{"id":343},"delete_documents",[345],{"type":45,"value":343},{"type":39,"tag":48,"props":347,"children":348},{},[349],{"type":45,"value":350},"Delete multiple documents from Firestore",{"type":39,"tag":162,"props":352,"children":354},{"id":353},"parameters-1",[355],{"type":45,"value":167},{"type":39,"tag":169,"props":357,"children":358},{},[359,385],{"type":39,"tag":173,"props":360,"children":361},{},[362],{"type":39,"tag":177,"props":363,"children":364},{},[365,369,373,377,381],{"type":39,"tag":181,"props":366,"children":367},{"align":183},[368],{"type":45,"value":186},{"type":39,"tag":181,"props":370,"children":371},{"align":183},[372],{"type":45,"value":191},{"type":39,"tag":181,"props":374,"children":375},{"align":183},[376],{"type":45,"value":196},{"type":39,"tag":181,"props":378,"children":379},{"align":183},[380],{"type":45,"value":201},{"type":39,"tag":181,"props":382,"children":383},{"align":183},[384],{"type":45,"value":206},{"type":39,"tag":208,"props":386,"children":387},{},[388],{"type":39,"tag":177,"props":389,"children":390},{},[391,396,401,406,410],{"type":39,"tag":215,"props":392,"children":393},{"align":183},[394],{"type":45,"value":395},"documentPaths",{"type":39,"tag":215,"props":397,"children":398},{"align":183},[399],{"type":45,"value":400},"array",{"type":39,"tag":215,"props":402,"children":403},{"align":183},[404],{"type":45,"value":405},"Array of relative document paths to delete from Firestore (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: These are relative paths, NOT absolute paths like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":407,"children":408},{"align":183},[409],{"type":45,"value":234},{"type":39,"tag":215,"props":411,"children":412},{"align":183},[],{"type":39,"tag":338,"props":414,"children":415},{},[],{"type":39,"tag":111,"props":417,"children":419},{"id":418},"get_documents",[420],{"type":45,"value":418},{"type":39,"tag":48,"props":422,"children":423},{},[424],{"type":45,"value":425},"Gets multiple documents from Firestore by their paths",{"type":39,"tag":162,"props":427,"children":429},{"id":428},"parameters-2",[430],{"type":45,"value":167},{"type":39,"tag":169,"props":432,"children":433},{},[434,460],{"type":39,"tag":173,"props":435,"children":436},{},[437],{"type":39,"tag":177,"props":438,"children":439},{},[440,444,448,452,456],{"type":39,"tag":181,"props":441,"children":442},{"align":183},[443],{"type":45,"value":186},{"type":39,"tag":181,"props":445,"children":446},{"align":183},[447],{"type":45,"value":191},{"type":39,"tag":181,"props":449,"children":450},{"align":183},[451],{"type":45,"value":196},{"type":39,"tag":181,"props":453,"children":454},{"align":183},[455],{"type":45,"value":201},{"type":39,"tag":181,"props":457,"children":458},{"align":183},[459],{"type":45,"value":206},{"type":39,"tag":208,"props":461,"children":462},{},[463],{"type":39,"tag":177,"props":464,"children":465},{},[466,470,474,479,483],{"type":39,"tag":215,"props":467,"children":468},{"align":183},[469],{"type":45,"value":395},{"type":39,"tag":215,"props":471,"children":472},{"align":183},[473],{"type":45,"value":400},{"type":39,"tag":215,"props":475,"children":476},{"align":183},[477],{"type":45,"value":478},"Array of relative document paths to retrieve from Firestore (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: These are relative paths, NOT absolute paths like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":480,"children":481},{"align":183},[482],{"type":45,"value":234},{"type":39,"tag":215,"props":484,"children":485},{"align":183},[],{"type":39,"tag":338,"props":487,"children":488},{},[],{"type":39,"tag":111,"props":490,"children":492},{"id":491},"list_collections",[493],{"type":45,"value":491},{"type":39,"tag":48,"props":495,"children":496},{},[497],{"type":45,"value":498},"List Firestore collections for a given parent path",{"type":39,"tag":162,"props":500,"children":502},{"id":501},"parameters-3",[503],{"type":45,"value":167},{"type":39,"tag":169,"props":505,"children":506},{},[507,533],{"type":39,"tag":173,"props":508,"children":509},{},[510],{"type":39,"tag":177,"props":511,"children":512},{},[513,517,521,525,529],{"type":39,"tag":181,"props":514,"children":515},{"align":183},[516],{"type":45,"value":186},{"type":39,"tag":181,"props":518,"children":519},{"align":183},[520],{"type":45,"value":191},{"type":39,"tag":181,"props":522,"children":523},{"align":183},[524],{"type":45,"value":196},{"type":39,"tag":181,"props":526,"children":527},{"align":183},[528],{"type":45,"value":201},{"type":39,"tag":181,"props":530,"children":531},{"align":183},[532],{"type":45,"value":206},{"type":39,"tag":208,"props":534,"children":535},{},[536],{"type":39,"tag":177,"props":537,"children":538},{},[539,544,548,553,558],{"type":39,"tag":215,"props":540,"children":541},{"align":183},[542],{"type":45,"value":543},"parentPath",{"type":39,"tag":215,"props":545,"children":546},{"align":183},[547],{"type":45,"value":224},{"type":39,"tag":215,"props":549,"children":550},{"align":183},[551],{"type":45,"value":552},"Relative parent document path to list subcollections from (e.g., 'users\u002FuserId'). If not provided, lists root collections. Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":554,"children":555},{"align":183},[556],{"type":45,"value":557},"No",{"type":39,"tag":215,"props":559,"children":560},{"align":183},[],{"type":39,"tag":338,"props":562,"children":563},{},[],{"type":39,"tag":111,"props":565,"children":567},{"id":566},"query_collection",[568],{"type":45,"value":566},{"type":39,"tag":48,"props":570,"children":571},{},[572],{"type":45,"value":573},"Retrieves one or more Firestore documents from a collection in a database in the current project by a collection with a full document path.\nUse this if you know the exact path of a collection and the filtering clause you would like for the document.",{"type":39,"tag":162,"props":575,"children":577},{"id":576},"parameters-4",[578],{"type":45,"value":167},{"type":39,"tag":169,"props":580,"children":581},{},[582,608],{"type":39,"tag":173,"props":583,"children":584},{},[585],{"type":39,"tag":177,"props":586,"children":587},{},[588,592,596,600,604],{"type":39,"tag":181,"props":589,"children":590},{"align":183},[591],{"type":45,"value":186},{"type":39,"tag":181,"props":593,"children":594},{"align":183},[595],{"type":45,"value":191},{"type":39,"tag":181,"props":597,"children":598},{"align":183},[599],{"type":45,"value":196},{"type":39,"tag":181,"props":601,"children":602},{"align":183},[603],{"type":45,"value":201},{"type":39,"tag":181,"props":605,"children":606},{"align":183},[607],{"type":45,"value":206},{"type":39,"tag":208,"props":609,"children":610},{},[611,634],{"type":39,"tag":177,"props":612,"children":613},{},[614,618,622,627,631],{"type":39,"tag":215,"props":615,"children":616},{"align":183},[617],{"type":45,"value":219},{"type":39,"tag":215,"props":619,"children":620},{"align":183},[621],{"type":45,"value":224},{"type":39,"tag":215,"props":623,"children":624},{"align":183},[625],{"type":45,"value":626},"The relative path to the Firestore collection to query (e.g., 'users' or 'users\u002FuserId\u002Fposts'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":628,"children":629},{"align":183},[630],{"type":45,"value":234},{"type":39,"tag":215,"props":632,"children":633},{"align":183},[],{"type":39,"tag":177,"props":635,"children":636},{},[637,642,646,651,654],{"type":39,"tag":215,"props":638,"children":639},{"align":183},[640],{"type":45,"value":641},"filters",{"type":39,"tag":215,"props":643,"children":644},{"align":183},[645],{"type":45,"value":400},{"type":39,"tag":215,"props":647,"children":648},{"align":183},[649],{"type":45,"value":650},"Array of filter objects to apply to the query. Each filter is a JSON string with:",{"type":39,"tag":215,"props":652,"children":653},{"align":183},[],{"type":39,"tag":215,"props":655,"children":656},{"align":183},[],{"type":39,"tag":263,"props":658,"children":659},{},[660,665,670],{"type":39,"tag":126,"props":661,"children":662},{},[663],{"type":45,"value":664},"field: The field name to filter on",{"type":39,"tag":126,"props":666,"children":667},{},[668],{"type":45,"value":669},"op: The operator to use (\"\u003C\", \"\u003C=\", \">\", \">=\", \"==\", \"!=\", \"array-contains\", \"array-contains-any\", \"in\", \"not-in\")",{"type":39,"tag":126,"props":671,"children":672},{},[673,675,681,683,688],{"type":45,"value":674},"value: The value to compare against (can be string, number, boolean, or array)\nExample: {\"field\": \"age\", \"op\": \">\", \"value\": 18} | Yes |  |\n| orderBy | string | JSON string specifying the field and direction to order by (e.g., {\"field\": \"name\", \"direction\": \"ASCENDING\"}). Leave empty if not specified | Yes |  |\n| limit | integer | The maximum number of documents to return | No | ",{"type":39,"tag":54,"props":676,"children":678},{"className":677},[],[679],{"type":45,"value":680},"100",{"type":45,"value":682}," |\n| analyzeQuery | boolean | If true, returns query explain metrics including execution statistics | No | ",{"type":39,"tag":54,"props":684,"children":686},{"className":685},[],[687],{"type":45,"value":334},{"type":45,"value":336},{"type":39,"tag":338,"props":690,"children":691},{},[],{"type":39,"tag":111,"props":693,"children":695},{"id":694},"update_document",[696],{"type":45,"value":694},{"type":39,"tag":48,"props":698,"children":699},{},[700],{"type":45,"value":701},"Updates an existing document in Firestore. Supports both full document updates and selective field updates using an update mask. Please follow the best practices:",{"type":39,"tag":122,"props":703,"children":704},{},[705,710,714,719,724,729,733],{"type":39,"tag":126,"props":706,"children":707},{},[708],{"type":45,"value":709},"Use update masks for precision: When you only need to update specific fields, use the updateMask parameter to avoid unintended changes",{"type":39,"tag":126,"props":711,"children":712},{},[713],{"type":45,"value":130},{"type":39,"tag":126,"props":715,"children":716},{},[717],{"type":45,"value":718},"Delete fields using update mask: To delete fields, include them in the updateMask but omit them from documentData",{"type":39,"tag":126,"props":720,"children":721},{},[722],{"type":45,"value":723},"Integer values can be strings: The skill accepts integer values as strings (e.g., {\"integerValue\": \"1500\"})",{"type":39,"tag":126,"props":725,"children":726},{},[727],{"type":45,"value":728},"Use returnData sparingly: Only set to true when you need to verify the exact data after the update",{"type":39,"tag":126,"props":730,"children":731},{},[732],{"type":45,"value":150},{"type":39,"tag":126,"props":734,"children":735},{},[736],{"type":45,"value":737},"Consider security rules: Ensure your Firestore security rules allow document updates",{"type":39,"tag":162,"props":739,"children":741},{"id":740},"parameters-5",[742],{"type":45,"value":167},{"type":39,"tag":169,"props":744,"children":745},{},[746,772],{"type":39,"tag":173,"props":747,"children":748},{},[749],{"type":39,"tag":177,"props":750,"children":751},{},[752,756,760,764,768],{"type":39,"tag":181,"props":753,"children":754},{"align":183},[755],{"type":45,"value":186},{"type":39,"tag":181,"props":757,"children":758},{"align":183},[759],{"type":45,"value":191},{"type":39,"tag":181,"props":761,"children":762},{"align":183},[763],{"type":45,"value":196},{"type":39,"tag":181,"props":765,"children":766},{"align":183},[767],{"type":45,"value":201},{"type":39,"tag":181,"props":769,"children":770},{"align":183},[771],{"type":45,"value":206},{"type":39,"tag":208,"props":773,"children":774},{},[775,799],{"type":39,"tag":177,"props":776,"children":777},{},[778,783,787,792,796],{"type":39,"tag":215,"props":779,"children":780},{"align":183},[781],{"type":45,"value":782},"documentPath",{"type":39,"tag":215,"props":784,"children":785},{"align":183},[786],{"type":45,"value":224},{"type":39,"tag":215,"props":788,"children":789},{"align":183},[790],{"type":45,"value":791},"The relative path of the document which needs to be updated (e.g., 'users\u002FuserId' or 'users\u002FuserId\u002Fposts\u002FpostId'). Note: This is a relative path, NOT an absolute path like 'projects\u002F{project_id}\u002Fdatabases\u002F{database_id}\u002Fdocuments\u002F...'",{"type":39,"tag":215,"props":793,"children":794},{"align":183},[795],{"type":45,"value":234},{"type":39,"tag":215,"props":797,"children":798},{"align":183},[],{"type":39,"tag":177,"props":800,"children":801},{},[802,806,810,814,817],{"type":39,"tag":215,"props":803,"children":804},{"align":183},[805],{"type":45,"value":245},{"type":39,"tag":215,"props":807,"children":808},{"align":183},[809],{"type":45,"value":250},{"type":39,"tag":215,"props":811,"children":812},{"align":183},[813],{"type":45,"value":255},{"type":39,"tag":215,"props":815,"children":816},{"align":183},[],{"type":39,"tag":215,"props":818,"children":819},{"align":183},[],{"type":39,"tag":263,"props":821,"children":822},{},[823,827,831,835,839,843,847,856,860,864,868],{"type":39,"tag":126,"props":824,"children":825},{},[826],{"type":45,"value":270},{"type":39,"tag":126,"props":828,"children":829},{},[830],{"type":45,"value":275},{"type":39,"tag":126,"props":832,"children":833},{},[834],{"type":45,"value":280},{"type":39,"tag":126,"props":836,"children":837},{},[838],{"type":45,"value":285},{"type":39,"tag":126,"props":840,"children":841},{},[842],{"type":45,"value":290},{"type":39,"tag":126,"props":844,"children":845},{},[846],{"type":45,"value":295},{"type":39,"tag":126,"props":848,"children":849},{},[850,851,855],{"type":45,"value":300},{"type":39,"tag":302,"props":852,"children":853},{},[854],{"type":45,"value":306},{"type":45,"value":308},{"type":39,"tag":126,"props":857,"children":858},{},[859],{"type":45,"value":313},{"type":39,"tag":126,"props":861,"children":862},{},[863],{"type":45,"value":318},{"type":39,"tag":126,"props":865,"children":866},{},[867],{"type":45,"value":323},{"type":39,"tag":126,"props":869,"children":870},{},[871,873,878],{"type":45,"value":872},"References: {\"referenceValue\": \"collection\u002Fdocument\"} | Yes |  |\n| updateMask | array | The selective fields to update. If not provided, all fields in documentData will be updated. When provided, only the specified fields will be updated. Fields referenced in the mask but not present in documentData will be deleted from the document | No |  |\n| returnData | boolean | If set to true the output will have the data of the updated document. This flag if set to false will help avoid overloading the context of the agent. | No | ",{"type":39,"tag":54,"props":874,"children":876},{"className":875},[],[877],{"type":45,"value":334},{"type":45,"value":336},{"type":39,"tag":338,"props":880,"children":881},{},[],{"items":883,"total":1078},[884,903,921,940,957,973,992,1004,1016,1034,1052,1065],{"slug":885,"name":885,"fn":886,"description":887,"org":888,"tags":889,"stars":22,"repoUrl":23,"updatedAt":902},"amazon-location-service","integrate Amazon Location Service APIs","Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[890,893,896,899],{"name":891,"slug":892,"type":15},"API Development","api-development",{"name":894,"slug":895,"type":15},"AWS","aws",{"name":897,"slug":898,"type":15},"Maps","maps",{"name":900,"slug":901,"type":15},"Navigation","navigation","2026-07-12T08:13:53.294026",{"slug":904,"name":904,"fn":905,"description":906,"org":907,"tags":908,"stars":22,"repoUrl":23,"updatedAt":920},"amplify-workflow","build full-stack apps with AWS Amplify","Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync\u002FDynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patterns that prevent common mistakes. TRIGGER when: user mentions Amplify Gen2; project has amplify\u002F directory or amplify_outputs; code imports @aws-amplify packages; user asks about defineBackend, defineAuth, defineData, defineStorage, or npx ampx. SKIP: Amplify Gen1 (amplify CLI v6), standalone SAM\u002FCDK without Amplify (use aws-serverless), direct Bedrock without Amplify AI Kit (use bedrock).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[909,912,913,914,917],{"name":910,"slug":911,"type":15},"Auth","auth",{"name":894,"slug":895,"type":15},{"name":17,"slug":18,"type":15},{"name":915,"slug":916,"type":15},"Frontend","frontend",{"name":918,"slug":919,"type":15},"TypeScript","typescript","2026-07-12T08:13:47.134012",{"slug":922,"name":922,"fn":923,"description":924,"org":925,"tags":926,"stars":22,"repoUrl":23,"updatedAt":939},"analyzer","analyze queried data for trends","Analyze queried data for trends, week-over-week comparisons, distributions, funnels, cohorts, top-N lists, anomalies, sanity checks, and report-ready findings. Use after or alongside ClickHouse queries when the user wants insight rather than raw rows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[927,930,933,936],{"name":928,"slug":929,"type":15},"Analytics","analytics",{"name":931,"slug":932,"type":15},"ClickHouse","clickhouse",{"name":934,"slug":935,"type":15},"Data Analysis","data-analysis",{"name":937,"slug":938,"type":15},"Statistics","statistics","2026-07-12T08:14:05.606036",{"slug":941,"name":941,"fn":942,"description":943,"org":944,"tags":945,"stars":22,"repoUrl":23,"updatedAt":956},"artifact-management","manage and organize analysis artifacts","Save, organize, and describe reusable analysis artifacts such as SQL, result snapshots, CSV exports, summaries, caveats, plots, and report-ready files. Use when users ask to save, export, share, cite, reproduce, or organize data-analysis outputs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[946,947,950,953],{"name":934,"slug":935,"type":15},{"name":948,"slug":949,"type":15},"Productivity","productivity",{"name":951,"slug":952,"type":15},"Reporting","reporting",{"name":954,"slug":955,"type":15},"SQL","sql","2026-07-12T08:14:09.265555",{"slug":958,"name":958,"fn":959,"description":960,"org":961,"tags":962,"stars":22,"repoUrl":23,"updatedAt":972},"attorney-assist","connect with attorneys for legal consultation","Connects the user with a LegalZoom attorney for legal consultation. Use when a user asks about attorneys, lawyers, or legal help, or when contract review reveals high risks or low-confidence findings.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[963,966,969],{"name":964,"slug":965,"type":15},"Contracts","contracts",{"name":967,"slug":968,"type":15},"Legal","legal",{"name":970,"slug":971,"type":15},"Risk Assessment","risk-assessment","2026-07-12T08:13:45.878361",{"slug":974,"name":974,"fn":975,"description":976,"org":977,"tags":978,"stars":22,"repoUrl":23,"updatedAt":991},"building-pydantic-ai-agents","build AI agents with Pydantic AI","Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydantic_ai, or asks to build an AI agent, add tools\u002Fcapabilities, defer capability loading, stream output, define agents from YAML, or test agent behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[979,982,985,988],{"name":980,"slug":981,"type":15},"Agents","agents",{"name":983,"slug":984,"type":15},"LLM","llm",{"name":986,"slug":987,"type":15},"Multi-Agent","multi-agent",{"name":989,"slug":990,"type":15},"Python","python","2026-07-12T08:14:01.893781",{"slug":932,"name":932,"fn":993,"description":994,"org":995,"tags":996,"stars":22,"repoUrl":23,"updatedAt":1003},"query ClickHouse databases via CLI","Connect to and query ClickHouse (a local server or a ClickHouse Cloud service) from the terminal using the official clickhousectl CLI, including the browser OAuth login flow. Use when the user wants to run SQL against ClickHouse, explore schemas and tables, inspect Cloud services, or authenticate clickhousectl. For building a local dev environment or deploying to Cloud, defer to the official ClickHouse skills (see Scope).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[997,998,1001,1002],{"name":928,"slug":929,"type":15},{"name":999,"slug":1000,"type":15},"CLI","cli",{"name":931,"slug":932,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:14:06.829692",{"slug":1005,"name":1005,"fn":1006,"description":1007,"org":1008,"tags":1009,"stars":22,"repoUrl":23,"updatedAt":1015},"cline-session-history","search and browse Cline session history","Search and browse Cline session history. Use when the user asks to find, list, inspect, or export Cline sessions by time period, prompt content, status, model, provider, source, mode, workspace, or other criteria. Also use when the user wants to read a session transcript or export sessions to a directory. Trigger phrases include \"find my session\", \"search my session history\", \"show me past sessions\", \"what was that session where\", \"find the session that started with\", and any mention of past Cline conversations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1010,1011,1014],{"name":980,"slug":981,"type":15},{"name":1012,"slug":1013,"type":15},"History","history",{"name":948,"slug":949,"type":15},"2026-07-19T06:03:13.945151",{"slug":1017,"name":1017,"fn":1018,"description":1019,"org":1020,"tags":1021,"stars":22,"repoUrl":23,"updatedAt":1033},"convex-design","build reactive backends with Convex","Design and build reactive, type-safe, production-grade backends on Convex. Covers schema, queries\u002Fmutations\u002Factions, indexes, auth, file storage, scheduling, real-time multiplayer, mobile backends, and LLM\u002Fagent workflows on Convex's one-platform stack.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1022,1023,1026,1027,1030],{"name":910,"slug":911,"type":15},{"name":1024,"slug":1025,"type":15},"Backend","backend",{"name":17,"slug":18,"type":15},{"name":1028,"slug":1029,"type":15},"Real-time","real-time",{"name":1031,"slug":1032,"type":15},"Storage","storage","2026-07-12T08:13:37.101253",{"slug":1035,"name":1035,"fn":1036,"description":1037,"org":1038,"tags":1039,"stars":22,"repoUrl":23,"updatedAt":1051},"cosmosdb-best-practices","optimize Azure Cosmos DB performance","Azure Cosmos DB performance optimization and best practices guidelines for NoSQL,\npartitioning, queries, SDK usage, and vector search. Use when writing, reviewing,\nor refactoring code that interacts with Azure Cosmos DB, designing data models,\noptimizing queries, or implementing high-performance database operations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1040,1043,1046,1047,1048],{"name":1041,"slug":1042,"type":15},"Azure","azure",{"name":1044,"slug":1045,"type":15},"Cosmos DB","cosmos-db",{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":1049,"slug":1050,"type":15},"Performance","performance","2026-07-12T08:13:54.531719",{"slug":1053,"name":1053,"fn":1054,"description":1055,"org":1056,"tags":1057,"stars":22,"repoUrl":23,"updatedAt":1064},"data-analyst","analyze ClickHouse analytics data","Act as an interactive data analyst for ClickHouse-backed analytics. Use when the user asks questions about internal data, metrics, dashboards, telemetry, active users, revenue, funnels, trends, distributions, or wants an analyst-style conversation, ad hoc SQL, charts, or a data export against ClickHouse (local or ClickHouse Cloud).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1058,1059,1060,1063],{"name":928,"slug":929,"type":15},{"name":931,"slug":932,"type":15},{"name":1061,"slug":1062,"type":15},"Dashboards","dashboards",{"name":934,"slug":935,"type":15},"2026-07-12T08:13:31.975246",{"slug":1066,"name":1066,"fn":1067,"description":1068,"org":1069,"tags":1070,"stars":22,"repoUrl":23,"updatedAt":1077},"dataproc-skills","manage Dataproc clusters and jobs","Skills to interact with your Dataproc clusters and jobs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1071,1074],{"name":1072,"slug":1073,"type":15},"Data Engineering","data-engineering",{"name":1075,"slug":1076,"type":15},"Operations","operations","2026-07-12T08:13:42.179275",45,{"items":1080,"total":1130},[1081,1088,1096,1103,1110,1116,1123],{"slug":885,"name":885,"fn":886,"description":887,"org":1082,"tags":1083,"stars":22,"repoUrl":23,"updatedAt":902},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1084,1085,1086,1087],{"name":891,"slug":892,"type":15},{"name":894,"slug":895,"type":15},{"name":897,"slug":898,"type":15},{"name":900,"slug":901,"type":15},{"slug":904,"name":904,"fn":905,"description":906,"org":1089,"tags":1090,"stars":22,"repoUrl":23,"updatedAt":920},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1091,1092,1093,1094,1095],{"name":910,"slug":911,"type":15},{"name":894,"slug":895,"type":15},{"name":17,"slug":18,"type":15},{"name":915,"slug":916,"type":15},{"name":918,"slug":919,"type":15},{"slug":922,"name":922,"fn":923,"description":924,"org":1097,"tags":1098,"stars":22,"repoUrl":23,"updatedAt":939},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1099,1100,1101,1102],{"name":928,"slug":929,"type":15},{"name":931,"slug":932,"type":15},{"name":934,"slug":935,"type":15},{"name":937,"slug":938,"type":15},{"slug":941,"name":941,"fn":942,"description":943,"org":1104,"tags":1105,"stars":22,"repoUrl":23,"updatedAt":956},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1106,1107,1108,1109],{"name":934,"slug":935,"type":15},{"name":948,"slug":949,"type":15},{"name":951,"slug":952,"type":15},{"name":954,"slug":955,"type":15},{"slug":958,"name":958,"fn":959,"description":960,"org":1111,"tags":1112,"stars":22,"repoUrl":23,"updatedAt":972},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1113,1114,1115],{"name":964,"slug":965,"type":15},{"name":967,"slug":968,"type":15},{"name":970,"slug":971,"type":15},{"slug":974,"name":974,"fn":975,"description":976,"org":1117,"tags":1118,"stars":22,"repoUrl":23,"updatedAt":991},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1119,1120,1121,1122],{"name":980,"slug":981,"type":15},{"name":983,"slug":984,"type":15},{"name":986,"slug":987,"type":15},{"name":989,"slug":990,"type":15},{"slug":932,"name":932,"fn":993,"description":994,"org":1124,"tags":1125,"stars":22,"repoUrl":23,"updatedAt":1003},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1126,1127,1128,1129],{"name":928,"slug":929,"type":15},{"name":999,"slug":1000,"type":15},{"name":931,"slug":932,"type":15},{"name":17,"slug":18,"type":15},43]