← Browse

@caido-community/linter

A

Shift is an AI plugin that integrates state-of-the-art LLMs directly into Caido's UI.

skillclaude

Install

agr install @caido-community/linter --target claude

Writes 1 file into .claude/skills/, pinned to git-03b55f09.

  • .claude/skills/linter/SKILL.md

Document


name: linter description: Linter Guidelines

Linter

We have a built-in ESLint linter configured at the root folder. After making any significant change, always run the validation tests with mise run validate and fix all potential issues.

Most common mistakes that lead to linter errors

Lint Rule: Unexpected nullable string value in conditional. Please handle nullish or empty cases explicitly

To prevent this, when comparing strings, instead of writing:

if (!str) {}

do this:

if (str !== undefined) {}

Repository README

Describes caido-community/shift as a whole, which may contain artifacts other than this one. Where this artifact had no useful description of its own, its summary was taken from here.

Shift

Shift is an AI plugin that integrates state-of-the-art LLMs directly into Caido's UI. It allows for LLM-powered free-form HTTP modification in Replay, automatic contextualization of queries, and supports many tools that AI can use to interface with Caido. .

Use Cases include:

  • Build out this JSON request body in Replay [Paste Obfuscated JS Code]
    • Result: AI automatically builds the JSON request body from the JS code.
  • Match and Replace this to true (with a feature flag boolean selected)
    • Result: AI creates Match & Replace rule to turn on the feature
  • Add this to scope
    • Result: AI adds the current request to scope
  • Generate a wordlist with all HTTP Verbs
    • Result: AI generates a wordlist with all HTTP verbs and adds it to your hosted files
  • Capitalize the 2nd letter of all query parameters
    • Result: AI uses a Replay search and replace tool to capitalize all 2nd letters of query params
  • Remove all the spaces from the path
    • Result: AI updates the path to reflect the same path but without spaces
  • Add 3 more tags to the JSON request body
    • Result: AI reads the current JSON body and adds 3 more tag objects to the "tags" array.

Shift Agents

Shift Agents, the new micro-agent framework for Caido users.

Build personalized micro-agents for tasks like XSS exploitation, WAF bypassing, or anything you can think of.

Demos

https://github.com/user-attachments/assets/20853016-cc60-4d49-b4f5-ec7a53eb86e7

https://github.com/user-attachments/assets/88a25f77-3eba-457a-927c-721abb70d759

Installation

From Plugin Store

  1. Install this plugin via the Caido Plugin Store
  2. Press shift + <space>

Manual Installation

  1. Install dependencies:

    pnpm install
    
  2. Build the plugin:

    pnpm build
    
  3. Install in Caido:

    • Upload the dist/plugin_package.zip file in Caido by clicking on the "Install Package" button in-app

Disclosures

Per the Caido Developer Policy, we are required to inform you that, for this plugin:

  • External services are required for full access.
  • Server-side telemetry is collected (Opt-in - see Privacy Policy)

External services

Shift is an AI-powered plugin, so it will be communicating with our backend and SOTA AI models to accomplish the user's intent.

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-03b55f09b4842026-07-31