implement-saaskit
Pass
Audited by Gen Agent Trust Hub on Aug 28, 2026
Risk Level: SAFEEXTERNAL_DOWNLOADSCOMMAND_EXECUTIONINDIRECT_PROMPT_INJECTION
Full Analysis
- [EXTERNAL_DOWNLOADS]: The skill facilitates the installation of official libraries and SDKs from vendor-controlled sources, such as the
@scalekit-sdk/nodeNPM package and thescalekit-sdk-goGo module. These are used to manage authentication and token exchange with the provider. - [COMMAND_EXECUTION]: The skill includes instructions to execute package manager commands (
npm install,go get,composer require) to set up the necessary development environment and dependencies for the authentication flow. - [INDIRECT_PROMPT_INJECTION]: The skill implements endpoints that ingest untrusted data from external sources, which constitutes a potential attack surface.
- Ingestion points: Authorization codes are read from URL query parameters in the
/auth/callbackroute inSKILL.mdandreferences/go.md. - Boundary markers: The instructions do not include specific delimiters or "ignore previous instructions" warnings when processing the received codes.
- Capability inventory: The skill uses network capabilities to send the ingested codes to the Scalekit environment URL via SDK methods like
authenticateWithCode. - Sanitization: There is no explicit sanitization of the query parameters before they are passed to the SDK, although the library handles the exchange protocol.
- [SAFE]: The skill adheres to security best practices by recommending the use of
HttpOnly,Secure, andSameSite: 'lax'flags for session cookies. It also explicitly warns against storing tokens inlocalStorageand emphasizes server-side token validation over trusting raw JWT claims.
Audit Metadata