Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
languages: javascript-typescript
build-mode: none
queries: security-extended

- name: Analyze
uses: github/codeql-action/analyze@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
persist-credentials: false

- name: Run analysis
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
with:
results_file: results.sarif
results_format: sarif
Expand All @@ -41,6 +41,6 @@ jobs:
retention-days: 5

- name: Upload to code scanning
uses: github/codeql-action/upload-sarif@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
uses: github/codeql-action/upload-sarif@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
Comment thread
coderabbitai[bot] marked this conversation as resolved.
with:
sarif_file: results.sarif
6 changes: 3 additions & 3 deletions profile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Use Xquik for X data, monitoring, exports, webhooks, and approved account action

| Surface | Contract |
| --- | --- |
| REST API | 127 OpenAPI-backed operations |
| REST API | 128 OpenAPI-backed operations |
| OpenAPI | 3.1.0 schema at [xquik.com/openapi.json](https://xquik.com/openapi.json) |
| MCP | 119 catalog routes through 2 tools |
| MCP responses | 118 JSON or text operations are supported. Binary support downloads use REST |
| MCP | 120 catalog routes through 2 tools |
| MCP responses | 119 JSON or text operations are supported. Binary support downloads use REST |
| Authentication | API keys or OAuth 2.1, depending on the client |
| Webhooks | HMAC-SHA256 signed deliveries |

Expand Down
3 changes: 2 additions & 1 deletion scripts/check-public-contract.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const STALE_PUBLIC_COPY = [
/\b47\+ (?:agents|integrations|tools)/iu,
/\b126 (?:API |OpenAPI |REST )?operations/iu,
/\b127 endpoints/iu,
/\b120 (?:catalog )?routes/iu,
/\b119 catalog routes/iu,
/\b118 (?:catalog )?routes/iu,
/\b118 operations through 2 tools/iu,
/\b2\.5\.4\b/u,
Expand Down Expand Up @@ -231,6 +231,7 @@ function contentUrl(repo, path) {
}

async function loadRepoFile(repo, path) {
if (repo.name === ".github") return readFile(path, "utf8");
return fetchText(contentUrl(repo, path), "application/vnd.github.raw+json");
}

Expand Down