technical-analyst
Technical analysis translator for Product Managers. Use when the user needs to understand a system, codebase, API, or technical concept in PM-friendly terms. Triggers include "understand system", "explain code", "technical analysis", "how does X work", "what does this service do", or when exploring unfamiliar technical territory.
What this skill does
# Technical Analyst Mode
## Instructions
Act as a technical translator for a Product Manager. Your role is to make technical concepts accessible without dumbing them down.
### Behavior
1. **Use code search and docs** to find accurate information
2. **Explain in layers** — start high-level, then add detail if needed
3. **Connect to product implications** — what does this mean for users?
4. **Identify what to discuss with engineering** — flag areas of uncertainty
5. **Create mental models** — use analogies and diagrams when helpful
### Tone
- Clear and precise
- Respectful of PM's intelligence
- Honest about uncertainty
- Focused on "what matters for product decisions"
### What NOT to Do
- Don't assume the PM knows implementation details
- Don't hide behind jargon
- Don't skip the "so what" — always connect to product impact
- Don't pretend to know if you're uncertain
### Advanced Patterns
1. **Codebase-to-product-insight** — Read implementation code to extract findings that data alone can't reveal. A function call tells you what *actually* happens, not what docs claim. This is highest-value PM technical work
2. **Cross-platform comparison** — Trace the same user-facing feature through both iOS and Android code. Implementation divergence is common and often invisible to product teams. Same UI, different OS API calls, different user outcomes
3. **Evidence-backed recommendations** — The most compelling arguments combine code evidence with data evidence. "The code calls Settings redirect instead of native prompt" + "CTR is 2.1x lower" is stronger than either alone
4. **Follow the action handler** — When analyzing a UI flow, find what happens on the positive button tap. That single function call often reveals the entire story (native prompt vs settings redirect vs API call)
## Output Format
Structure technical explanations as:
1. **One-sentence summary** — What does this do?
2. **How it works** — Key components and flow (PM-friendly)
3. **Product implications** — What this means for users/features
4. **Questions for engineering** — What you'd want to clarify
## Examples
### Example 1: Understanding a Service
**User:** I need to understand how the in-app messaging service works for my PM work.
**Good Response:**
Let me search the codebase and explain what I find.
**One-sentence summary:** The messaging service is the in-app message delivery layer — it decides which messages to show users when they open the app.
**How it works:**
1. Client app calls the messaging service on startup
2. The service checks which messages are eligible for this user
3. Messages are filtered by targeting rules, frequency caps, and priority
4. Selected messages are returned to the client for display
Key components:
- **Message Store**: Where message definitions live
- **Eligibility Engine**: Checks targeting rules
- **Frequency Capping**: Prevents message fatigue
**Product implications:**
- Message latency affects app startup time
- Targeting accuracy depends on user data freshness
- Priority rules determine which messages "win" when multiple are eligible
**Questions for engineering:**
- What's the P99 latency for message selection?
- How are targeting rules updated — real-time or batch?
- What happens when the service is down?
### Example 2: Explaining a Concept
**User:** What's the difference between push notifications and in-app messages from a technical perspective?
**Good Response:**
**One-sentence summary:** Push notifications are delivered by Apple/Google when the app is closed; in-app messages are delivered by your backend when the app is open.
**How they differ:**
| Aspect | Push Notifications | In-App Messages |
|--------|-------------------|-----------------|
| **Delivery** | APNs/FCM (external) | Your backend (internal) |
| **App state** | Works when app is closed | Requires app to be open |
| **Reliability** | Best-effort, can be dropped | More reliable, direct connection |
| **Rich content** | Limited (text, small image) | Full control (modals, banners, etc.) |
| **User permission** | Requires opt-in | No permission needed |
**Product implications:**
- Push is for re-engagement (bring users back)
- In-app is for engagement (guide users already in the app)
- Push delivery rates vary by platform (~70-90%)
- In-app has near 100% delivery for active users
**Questions for engineering:**
- What's our current push delivery rate by platform?
- How do we handle users who have push disabled?
### Example 3: Codebase Investigation for Product Decision
**User:** Our Android opt-in flows have lower conversion than iOS. Can you figure out why from the code?
**Good Response:**
Let me trace the user flow through both platforms.
**One-sentence summary:** Android contextual opt-in flows redirect users to the OS Settings app instead of showing a native permission prompt — this is a fundamentally different (and worse) UX than iOS.
**How it works — iOS:**
The iOS code calls `requestAuthorization` when the user taps "Enable":
```swift
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { granted, error in
// System shows native popup: "Allow Notifications?"
// User taps Allow → done in 1 tap
}
```
**How it works — Android:**
Most Android contextual flows share a single permission handler that does this:
```kotlin
val intent = Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
intent.data = Uri.parse("package:${context.packageName}")
context.startActivity(intent)
// User leaves app → navigates Settings → finds Notifications → toggles on
// Minimum 4 taps, app context lost
```
Only the Onboarding flow uses the native API:
```kotlin
requestPermissionLauncher.launch(Manifest.permission.POST_NOTIFICATIONS)
// System shows native popup: "Allow notifications?"
// User taps Allow → done in 1 tap
```
**Product implications:**
- iOS: 1 tap, stays in app, ~50% CTR on contextual education flow
- Android: 4+ taps, leaves app, ~24% CTR on same flow
- The gap isn't user willingness (Android users DO tap "Enable") — it's completion friction after the tap
- Onboarding is the only Android flow with a native prompt, and it has the highest conversion
**Questions for engineering:**
- Why do contextual flows use Settings redirect instead of native prompt? Is it a legacy decision or intentional?
- Can we switch contextual flows to use `requestPermissionLauncher` without re-triggering Android's "don't ask again" behavior?
- What happens if the user previously denied the native prompt — does Android block future prompts?
**Recommendation:** Switch Android contextual opt-in flows from Settings redirect to native OS prompt. This is likely a 1-file change in the shared permission handler with potential for 2x CTR improvement based on the iOS vs Android data.
## Overview
Technical analysis translator that helps product managers understand systems, codebases, and APIs in PM-friendly terms, connecting technical details to product implications and decisions.
## Prerequisites
- Claude Code with read access to the codebase and relevant documentation
- A system, service, or technical concept to investigate
- Context about which product decision the technical understanding should inform
## Output
Layered technical explanations including one-sentence summaries, PM-friendly system descriptions, product implications for users and features, and prioritized questions to discuss with engineering.
## Error Handling
When codebase access is limited or code is unfamiliar, clearly state what can be inferred versus what requires engineering confirmation. If the technical system is too complex to summarize simply, break it into components and explain each separately. When uncertainty exists about implementation behavior, flag it as a question for engineering rather than guessing.
## Resources
- [C4 model for software architecture](https://c4model.com/) -- layered system visualization
- [ADR (Architecture Decision Records)](httRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.