AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Security

skill-neha-rn-developer-skills-security · by Neha

Review React Native code for secret handling, secure storage, transport security, PII in logs, deep-link validation, input validation, and privacy compliance. Use when handling auth, payments, personal data, or before a security review.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-neha-rn-developer-skills-security

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-neha-rn-developer-skills-security)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Security? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Security Skill

Applicability

  • Platforms: iOS and Android
  • React Native: 0.76+ (New Architecture interop assumed unless a checklist item says otherwise)

When to Use

  • Handling authentication, tokens, or payments
  • Storing or transmitting personal or sensitive data
  • Adding or reviewing deep links
  • Preparing for a security or privacy review

Guidance

Secrets & Storage

  • [ ] No secrets, API keys, or tokens hardcoded (use environment variables)
  • [ ] Sensitive data stored in the Keychain (iOS) / Keystore (Android), not plain storage
  • [ ] Payment credentials never stored locally (PCI)

Transport

  • [ ] Critical endpoints (payments, auth) use SSL pinning
  • [ ] Client-side validation is never trusted alone — the server validates too

Logging & PII

  • [ ] No PII (names, emails, payment info) logged to console or crash reports
  • [ ] Third-party SDK log output audited (SDKs may log sensitive data internally)

Incorrect:

console.log('Payment response:', JSON.stringify(paymentResult));
// Logs a card token to console; ends up in crash reports

Correct:

logger.info('Payment completed', {
  transactionId: paymentResult.id,
  status: paymentResult.status,
});
// Only non-sensitive identifiers

Deep Links & Input

  • [ ] Deep-link params validated before navigation (prevent open redirect)
  • [ ] Input validated on the client (in addition to, not instead of, the server)

Auth Lifecycle

  • [ ] Token refresh handled silently on 401, without losing form state
  • [ ] Auth state and navigation reset on sign-out

Privacy & Compliance

  • [ ] No analytics or device-data collection before user consent (ATT on iOS, GDPR)
  • [ ] Data export and deletion supported (GDPR right to erasure)
  • [ ] User data not retained beyond the retention policy
  • [ ] Permissions (camera, location) requested explicitly, with graceful denial handling

Pitfalls

  • Crash and analytics tools often capture console.log by default — disable or filter them so PII does not leak.
  • Third-party SDKs may log sensitive payloads internally; verify their output, not just your own.
  • Client validation is a UX nicety, not a security control — the server is the source of truth.
  • An unvalidated deep link can redirect users into unintended or authenticated content; validate params first.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.