cleartoship 0.13.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -256,14 +256,6 @@ A copyable workflow is in [`examples/security-cli.yml`](examples/security-cli.ym
256
256
 
257
257
  ### GitHub Action
258
258
 
259
- > **Not usable from other repositories yet.** The action lives in *this*
260
- > repository, which is currently private, so `uses: murtazaozdemir/cleartoship@…`
261
- > resolves for nobody but its owner — GitHub answers `Unable to resolve action`
262
- > — and it cannot be listed on the Marketplace. Nothing about it is broken; it
263
- > simply needs the repository to be public, and it works the day that happens.
264
- > Until then, use the CLI recipe above. The npm package itself is public and
265
- > unaffected.
266
-
267
259
  Posts a summary comment on every pull request, blocks the merge on critical
268
260
  findings, and optionally uploads to the Security tab. Copy
269
261
  [`examples/security.yml`](examples/security.yml) into `.github/workflows/`:
@@ -279,7 +271,7 @@ jobs:
279
271
  runs-on: ubuntu-latest
280
272
  steps:
281
273
  - uses: actions/checkout@v7
282
- - uses: murtazaozdemir/cleartoship@v0.13.0
274
+ - uses: murtazaozdemir/cleartoship@v0.13.1
283
275
  with:
284
276
  fail-on: critical
285
277
  comment: true
@@ -301,7 +293,7 @@ above `fail-on`) for use in later steps. The comment is *sticky* — re-runs edi
301
293
  the same comment instead of piling up.
302
294
 
303
295
  By default the action runs the scanner version its own ref declares, so
304
- `@v0.13.0` runs `cleartoship@0.13.0` and pinning the ref pins the behaviour. If
296
+ `@v0.13.1` runs `cleartoship@0.13.1` and pinning the ref pins the behaviour. If
305
297
  that version is not on the registry, it builds from its own checkout instead, so
306
298
  `uses: …@ref` works against an unpublished commit.
307
299
 
package/action.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: ClearToShip
2
- description: Pre-flight security check for AI-built & vibe-coded apps. Blocks PRs on missing Server Action auth, Supabase RLS holes, hallucinated packages and leaked keys.
2
+ description: Pre-flight security check for AI-built apps, agents included. Blocks PRs on ungated agent tools, model output in a shell, missing Server Action auth, Supabase RLS holes, hallucinated packages and leaked keys.
3
3
  author: ClearToShip
4
4
  branding:
5
5
  icon: shield
@@ -29,7 +29,7 @@ inputs:
29
29
  version:
30
30
  description: >-
31
31
  Version of the cleartoship npm package to run. Defaults to the version this
32
- action's own ref declares, so `uses: …@v0.13.0` runs cleartoship@0.13.0. Set
32
+ action's own ref declares, so `uses: …@v0.13.1` runs cleartoship@0.13.1. Set
33
33
  `latest` to always track the newest release, or `local` to build from the checkout.
34
34
  required: false
35
35
  default: ''
@@ -76,7 +76,7 @@ runs:
76
76
  run: |
77
77
  # With no version pinned, run the exact version this action's checkout
78
78
  # declares. That keeps the action ref and the scanner in lockstep:
79
- # `uses: <owner>/cleartoship@v0.13.0` runs cleartoship@0.13.0 instead of
79
+ # `uses: <owner>/cleartoship@v0.13.1` runs cleartoship@0.13.1 instead of
80
80
  # whatever npm happens to tag `latest` at the time.
81
81
  ver="$INPUT_VERSION"
82
82
  if [ -z "$ver" ]; then
@@ -22,7 +22,7 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
24
  - uses: actions/checkout@v7
25
- - uses: murtazaozdemir/cleartoship@v0.13.0
25
+ - uses: murtazaozdemir/cleartoship@v0.13.1
26
26
  with:
27
27
  fail-on: critical # block the PR only on criticals
28
28
  comment: true # post a summary comment on the PR
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cleartoship",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "The 30-second pre-launch security clearance for AI-built apps. Statically checks the agent surface no runtime scanner sees before deploy — ungated tools, model output in a shell, prompts in the client bundle — plus missing Server Action auth, Supabase RLS holes, hallucinated npm packages and leaked keys. Free while in beta.",
5
5
  "keywords": [
6
6
  "security",