skills_all/analyzing-agentscope-library/SKILL.md
This skill provides a way to retrieve information from the AgentScope library for analysis and decision-making.
npx skillsauth add microck/ordinary-claude-skills Analyzing AgentScope LibraryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This guide covers the essential operations for retrieving and answering questions about the AgentScope library. If you need to answer questions regarding the AgentScope library, or look up specific information, functions/classes, examples or guidance, this skill will help you achieve that.
The skill provides the following key scripts:
When being asked an AgentScope-related question, you can follow the steps below to find the relevant information:
First decide which of the three scripts to use based on the user's question.
First ask for the user's permission to clone the agentscope GitHub repository if you haven't done so:
git clone -b main https://github.com/agentscope-ai/agentscope
In this repo, the examples folder contains various examples demonstrating how to use different features of the
AgentScope library.
They are organized in a tree structure by different functionalities. You should use shell command like ls or cat to
navigate and view the examples. Avoid using find command to search for examples, as the name of the example
files may not directly relate to the functionality being searched for.
Similarly, first ensure you have cloned the agentscope GitHub repository.
The source agentscope tutorial is located in the docs/tutorials folder of the agentscope GitHub repository. It's
organized by the different sections. To search for guidance, go to the docs/tutorials folder and view the tutorial
files by shell command like ls or cat.
First, ensure you have installed the agentscope library in your environment:
pip list | grep agentscope
If not installed, ask the user for permission to install it by command:
pip install agentscope
Then, run the following script to search for specific modules, classes, or functions. It's suggested to start with
agentscope as the root module name, and then specify the submodule name you want to search for.
python view_agentscope_module.py --module agentscope
About detailed usage, please refer to the ./view_agentscope_module.py script (located in the same folder as this
SKILL.md file).
development
Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5.
development
Analyzes Claude Code usage patterns and provides comprehensive recommendations. Runs usage analysis, discovers GitHub community resources, suggests CLAUDE.md improvements, and fetches latest docs on-demand. Use when user wants to optimize their Claude Code workflow, create configurations (agents/skills/commands), or set up project documentation.
development
Quantum computing framework for building, simulating, optimizing, and executing quantum circuits. Use this skill when working with quantum algorithms, quantum circuit design, quantum simulation (noiseless or noisy), running on quantum hardware (Google, IonQ, AQT, Pasqal), circuit optimization and compilation, noise modeling and characterization, or quantum experiments and benchmarking (VQE, QAOA, QPE, randomized benchmarking).
tools
Browser automation, debugging, and performance analysis using Puppeteer CLI scripts. Use for automating browsers, taking screenshots, analyzing performance, monitoring network traffic, web scraping, form automation, and JavaScript debugging.