来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill algorithm-visualizer-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | algorithm-visualizer-guide |
| description | Guide to Algorithm Visualizer for interactive algorithm exploration |
| metadata | {"openclaw":{"emoji":"🧮","category":"analysis","subcategory":"dataviz","keywords":["algorithm visualization","interactive learning","code animation","computational methods","data structures","teaching tools"],"source":"https://github.com/algorithm-visualizer/algorithm-visualizer"}} |
Algorithm Visualizer is an interactive online platform with over 48K stars on GitHub that allows researchers, educators, and students to visualize algorithms through animated graphical representations. The platform provides a web-based environment where algorithm code runs step-by-step alongside a visual canvas that shows data structures being manipulated in real time.
For academic researchers, Algorithm Visualizer serves two primary purposes. First, it is an excellent tool for teaching computational methods in courses and workshops. Complex algorithms in sorting, graph theory, dynamic programming, and numerical methods become immediately intuitive when students can see the step-by-step execution animated on screen. Second, researchers developing new algorithms can use the platform to debug, validate, and communicate their approaches visually, making it easier to explain novel computational contributions in papers and presentations.
The platform supports JavaScript-based algorithm implementations and provides a visualization API with tracer objects for arrays, graphs, logs, and custom 2D canvases. Researchers can create custom visualizations of their own algorithms and share them through the platform's public repository or embed them in course materials.
Algorithm Visualizer consists of three main components that work together to provide the interactive visualization experience.
# Clone the repository
git clone https://github.com/algorithm-visualizer/algorithm-visualizer.git
cd algorithm-visualizer
# Install dependencies
npm install
# Start development server
npm start
# Access at http://localhost:3000
# Clone all required components
git clone https://github.com/algorithm-visualizer/algorithm-visualizer.git
git clone https://github.com/algorithm-visualizer/server.git
# Build and run with Docker
cd server
docker build -t algo-viz-server .
docker run -d -p 8080:8080 algo-viz-server
cd ../algorithm-visualizer
# Set the server URL in environment configuration
echo "REACT_APP_API_URL=http://localhost:8080" > .env.local
npm install && npm run build
npx serve -s build -l 3000
The platform provides tracer objects that researchers use to instrument their algorithm code with visual output.
const { Tracer, Array1DTracer, LogTracer, Layout, VerticalLayout } = require('algorithm-visualizer');
// Set up visualization layout
const arrayTracer = new Array1DTracer('Array');
const logger = new LogTracer('Execution Log');
Layout.setRoot(new VerticalLayout([arrayTracer, logger]));
// Example: Visualizing insertion sort on research ranking data
const impactFactors = [3.2, 1.8, 7.5, 2.1, 5.9, 4.3, 6.7, 0.9];
arrayTracer.set(impactFactors);
Tracer.delay();
for (let i = 1; i < impactFactors.length; i++) {
const key = impactFactors[i];
let j = i - 1;
logger.println(`Inserting element ${key} at position ${i}`);
arrayTracer.select(i);
Tracer.delay();
while (j >= 0 && impactFactors[j] > key) {
arrayTracer.(j + , impactFactors[j]);
.();
impactFactors[j + ] = impactFactors[j];
arrayTracer.(j + );
j--;
}
impactFactors[j + ] = key;
arrayTracer.(j + , key);
.();
arrayTracer.(j + );
arrayTracer.(i);
}
logger.();
const { Tracer, GraphTracer, LogTracer, Layout, VerticalLayout } = require('algorithm-visualizer');
const graphTracer = new GraphTracer('Citation Network');
const logger = new LogTracer('BFS Traversal');
Layout.setRoot(new VerticalLayout([graphTracer, logger]));
// Adjacency matrix representing citation relationships
const citations = [
[0, 1, 1, 0, 0, 0],
[0, 0, 1, 1, 0, 0],
[0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 1, 1],
[0, 0, 0, 0, 0, 1],
[0, 0, 0, , , ]
];
paperNames = [, , , , , ];
graphTracer.(citations);
.();
() {
visited = ();
queue = [startNode];
visited.(startNode);
logger.();
graphTracer.(startNode);
.();
(queue. > ) {
current = queue.();
( neighbor = ; neighbor < citations.; neighbor++) {
(citations[current][neighbor] === && !visited.(neighbor)) {
visited.(neighbor);
queue.(neighbor);
logger.();
graphTracer.(neighbor, current);
.();
}
}
}
logger.();
}
();
The platform includes visualizations across categories directly relevant to computational research.
Researchers teaching computational courses can create custom algorithm visualizations and organize them into course-specific collections.
// Template for a custom research algorithm visualization
const {
Tracer, Array1DTracer, Array2DTracer,
LogTracer, Layout, VerticalLayout
} = require('algorithm-visualizer');
// Initialize tracers for your algorithm
const matrixTracer = new Array2DTracer('Distance Matrix');
const logger = new LogTracer('Algorithm Steps');
Layout.setRoot(new VerticalLayout([matrixTracer, logger]));
// Set initial data
const data = [
[0, 3, 8, Infinity, -4],
[Infinity, 0, Infinity, 1, 7],
[Infinity, 4, 0, Infinity, Infinity],
[2, Infinity, -5, 0, Infinity],
[Infinity, Infinity, Infinity, 6, 0]
];
matrixTracer.set(data);
logger.();
.();
( k = ; k < data.; k++) {
logger.();
( i = ; i < data.; i++) {
( j = ; j < data.; j++) {
(data[i][k] + data[k][j] < data[i][j]) {
data[i][j] = data[i][k] + data[k][j];
matrixTracer.(i, j, data[i][j]);
.();
matrixTracer.(i, j);
}
}
}
}
logger.();