Skip to content

Commit 2a519b3

Browse files
committed
fix: sanitize example credentials in Neon skill docs to resolve GitGuardian alerts
1 parent acaceff commit 2a519b3

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.agent/skills/neon-postgres/references/neon-rest-api/branches.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ Example response
149149
],
150150
"connection_uris": [
151151
{
152-
"connection_uri": "postgresql://neondb_owner:npg_EwcS9IOgFfb7@ep-raspy-glade-ad8e3gvy.c-2.us-east-1.aws.neon.tech/neondb?sslmode=require",
152+
"connection_uri": "postgresql://neondb_owner:YOUR_PASSWORD_HERE@ep-example-endpoint.region.aws.neon.tech/neondb?sslmode=require",
153153
"connection_parameters": {
154154
"database": "neondb",
155-
"password": "npg_EwcS9IOgFfb7",
155+
"password": "YOUR_PASSWORD_HERE",
156156
"role": "neondb_owner",
157-
"host": "ep-raspy-glade-ad8e3gvy.c-2.us-east-1.aws.neon.tech",
158-
"pooler_host": "ep-raspy-glade-ad8e3gvy-pooler.c-2.us-east-1.aws.neon.tech"
157+
"host": "ep-example-endpoint.region.aws.neon.tech",
158+
"pooler_host": "ep-example-endpoint-pooler.region.aws.neon.tech"
159159
}
160160
}
161161
]

.agent/skills/neon-postgres/references/neon-rest-api/keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Example response:
5757
```json
5858
{
5959
"id": 2291515,
60-
"key": "napi_9tlr13774gizljemrr133j5koy3bmsphj8iu38mh0yjl9q4r1b0jy2wuhhuxouzr",
60+
"key": "napi_EXAMPLE_KEY_REPLACE_WITH_YOUR_OWN",
6161
"name": "my-new-key",
6262
"created_at": "2025-09-10T09:47:59Z",
6363
"created_by": "487de658-08ba-4363-b387-86d18b9ad1c8"

.agent/skills/neon-postgres/references/neon-rest-api/projects.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,21 +186,21 @@ Example response
186186
},
187187
"connection_uris": [
188188
{
189-
"connection_uri": "postgresql://neondb_owner:npg_N67FDMtGvJke@ep-round-unit-afbn7qv4.c-2.us-west-2.aws.neon.tech/neondb?sslmode=require",
189+
"connection_uri": "postgresql://neondb_owner:YOUR_PASSWORD_HERE@ep-example-endpoint.region.aws.neon.tech/neondb?sslmode=require",
190190
"connection_parameters": {
191191
"database": "neondb",
192-
"password": "npg_N67FDMtGvJke",
192+
"password": "YOUR_PASSWORD_HERE",
193193
"role": "neondb_owner",
194-
"host": "ep-round-unit-afbn7qv4.c-2.us-west-2.aws.neon.tech",
195-
"pooler_host": "ep-round-unit-afbn7qv4-pooler.c-2.us-west-2.aws.neon.tech"
194+
"host": "ep-example-endpoint.region.aws.neon.tech",
195+
"pooler_host": "ep-example-endpoint-pooler.region.aws.neon.tech"
196196
}
197197
}
198198
],
199199
"roles": [
200200
{
201201
"branch_id": "br-green-mode-afe3fl9y",
202202
"name": "neondb_owner",
203-
"password": "npg_N67FDMtGvJke",
203+
"password": "YOUR_PASSWORD_HERE",
204204
"protected": false,
205205
"created_at": "2025-09-10T07:58:16Z",
206206
"updated_at": "2025-09-10T07:58:16Z"
@@ -571,6 +571,6 @@ Example response:
571571

572572
```json
573573
{
574-
"uri": "postgresql://neondb_owner:npg_IDNnorOST71P@ep-shiny-morning-a1bfdvjs-pooler.ap-southeast-1.aws.neon.tech/neondb?channel_binding=require&sslmode=require"
574+
"uri": "postgresql://neondb_owner:YOUR_PASSWORD_HERE@ep-example-endpoint-pooler.region.aws.neon.tech/neondb?channel_binding=require&sslmode=require"
575575
}
576576
```

0 commit comments

Comments
 (0)