qualcomm-ima

qualcomm-ima is a skill for Claude Code, Codex from idea2realClaw/myAgent. It costs 67 tokens per session (950 once invoked), scanned A, original, MIT.

A question-and-answer tool for a Tencent ima library of Qualcomm and related technical materials. The library includes Qualcomm hardware information, AI Hub documents, and notes about converting models.

In plain words
What is it for?
Use it to ask about Qualcomm devices, RADXA boards, AI Hub, model conversion, or connecting a board over SSH.
Why use it?
It gives you a way to search this collected reference library when official technical information is difficult to locate. First-time use requires WeChat QR-code login.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/idea2realclaw/myagent/qualcomm-ima
Any agent
npx skills add idea2realClaw/myAgent --skill qualcomm-ima
Clone the repo
git clone --depth 1 https://github.com/idea2realClaw/myAgent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qualcomm-ima

README.md
[![agentmods](https://agentmods.dev/badge/skills/idea2realclaw/myagent/qualcomm-ima.svg)](https://agentmods.dev/skills/idea2realclaw/myagent/qualcomm-ima)
Your own site
<a href="https://agentmods.dev/skills/idea2realclaw/myagent/qualcomm-ima"><img src="https://agentmods.dev/badge/skills/idea2realclaw/myagent/qualcomm-ima.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 950 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.00950
Opus 5 $0.00034 $0.00475
Sonnet 5 $0.00013 $0.00190
Haiku 4.5 $0.00007 $0.00095

Measured 5d ago against content hash 818aefc1793c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

qualcomm-ima scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/ask_ima.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/qualcomm-ima/SKILL.md · 124 lines

How it starts

The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Qualcomm IMA 高通开源资料库问答

概述

在腾讯ima的高通开源资料库中搜索答案。该知识库包含45个内容,涵盖:

  • QAI AppBuilder
  • 高通硬件资料
  • Qualcomm AI Hub 文档
  • AIhub 转模型笔记

知识库信息

项目 内容
知识库ID 7437325709611728
订阅数 18人
创建者 图难于易

核心方法

1. Playwright CLI + 持久化登录

使用Playwright CLI浏览器自动化,通过URL参数传入问题:

# 通过URL参数传入问题
question_url="${BASE_URL}&question=${encoded_question}"
playwright-cli goto "$question_url"

2. 持久化浏览器配置

设置 --user-data-dir 保存登录状态,首次微信扫码后无需再次登录:

export PLAYWRIGHT_CHROMIUM_USER_DATA_DIR="$HOME/.workbuddy/playwright-ima-profile"

3. 微信扫码登录

首次使用需要微信扫码登录,登录状态自动保存到profile目录。

使用方法

首次使用(初始化)

# 1. 初始化浏览器并扫码登录
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh --setup

# 2. 用微信扫码登录ima.qq.com

日常使用

# 提问
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh "怎么使用Radxa D6a"
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh "QCS6490 NPU Spec"
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh "Snapdragon X Elite性能"
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh "怎么通过SSH连接Radxa"

# 查看当前页面
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh --snapshot

# 截图
python3 ~/.workbuddy/skills/qualcomm-ima/scripts/ask_ima.sh --screenshot

推荐问题

  • QCS6490 NPU Spec?
  • Snapdragon X Elite NPU Spec?
  • what's QAI Appbuilder
  • 怎么使用Radxa D6a?
  • 怎么通过SSH连接Radxa板子?
  • Qualcomm AI Hub使用方法

文件结构

qualcomm-ima/
├── SKILL.md                    # 本文档
└── scripts/
    └── ask_ima.sh              # 问答应脚本

依赖

  • playwright-cli: npm install -g playwright-cli
  • Playwright浏览器驱动: playwright install chromium

注意事项

  1. 首次登录:必须微信扫码登录一次
  2. 登录持久化:状态保存在 ~/.workbuddy/playwright-ima-profile/
  3. 等待时间:问题加载后等待约5秒获取回答
  4. 网络要求:需要能访问腾讯ima服务

技术要点

关键实现

  1. URL参数传问题:使用 question= 参数直接传入问题
  2. 持久化profile:保存浏览器cookie和登录状态
  3. Playwright CLI:轻量级命令行浏览器自动化工具

Playwright CLI常用命令

playwright-cli goto <url>          # 访问页面
playwright-cli snapshot             # 获取页面快照
playwright-cli screenshot           # 截图
playwright-cli click <selector>     # 点击元素
playwright-cli fill <selector> <text>  # 填写表单

Read the full file on GitHub · 124 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 124 lines · 67 tokens per session scan A 818aefc1793c

Subscribe to this mod's changes

qualcomm-ima is a skill published in the GitHub repository idea2realClaw/myAgent (2 stars, last pushed 16d ago), licensed MIT. It adds 67 tokens to every session and 950 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

integrated-browser

Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.

microsoft/vscode · 68 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

jetson-diagnostic

Read-only Jetson health snapshot for identity, memory, GPU, thermal, power, storage, services, and top processes.

NVIDIA/skills · 30 tokens

doca-socket-relay

Use this skill when the operator is driving the DOCA Socket Relay to bridge a socket-oriented host application onto a BlueField DPU peer without rewriting it — picking the deployment shape (in-process, sidecar, or BlueField service container), configuring the host-side socket and the DPU-side forwarding endpoint…

NVIDIA/skills · 236 tokens

offensive-z-wave

Z-Wave attack methodology — sniffing with Z-Force / EZ-Wave / RTL-SDR + ZniffMobile, S0 (legacy) network-key derivation flaw and key reuse, S2 (modern) ECDH commissioning analysis, replay/injection on unauthenticated nodes, default-key brute-force on test deployments, and home-automation hub pivots. Use when targeting…

SnailSploit/Claude-Red · 113 tokens

hsb-flash

Flash the FPGA on an HSB board connected to an NVIDIA devkit. Supports HSB Lattice boards (FPGA versions 2407, 2412, 2507, 2510) and Leopard Imaging VB1940 "all-in-one" cameras (FPGA versions 2507, 2510). Uses release-specific YAML manifests and board-type-specific program commands. Lattice and VB1940 commands must…

NVIDIA/skills · 94 tokens