经 AI Skill Hub 精选评估,可以穷手机操作器 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
可以穷手机操作器为常用的手机操作器,可以用为Claude为常用的手机操作器。
可以穷手机操作器 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
可以穷手机操作器为常用的手机操作器,可以用为Claude为常用的手机操作器。
可以穷手机操作器 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g accessibility-agents # 方式二:npx 直接运行(无需安装) npx accessibility-agents --help # 方式三:项目依赖安装 npm install accessibility-agents # 方式四:从源码运行 git clone https://github.com/Community-Access/accessibility-agents cd accessibility-agents npm install npm start
# 命令行使用
accessibility-agents --help
# 基本用法
accessibility-agents [options] <input>
# Node.js 代码中使用
const accessibility_agents = require('accessibility-agents');
const result = await accessibility_agents.run(options);
console.log(result);
# accessibility-agents 配置说明 # 查看配置选项 accessibility-agents --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export ACCESSIBILITY_AGENTS_CONFIG="/path/to/config.yml"
AI and automated tools are not perfect. They miss things, make mistakes, and cannot replace testing with real screen readers and assistive technology. Always verify with VoiceOver, NVDA, JAWS, and keyboard-only navigation. This tooling is a helpful starting point, not a substitute for real accessibility testing.
A community-driven open-source project automating accessibility, efficiency, and productivity through AI-based agents, skills, custom instructions, and prompts.
A sincere thanks goes out to Taylor Arndt and Jeff Bishop for leading the charge in building this community project. It started because LLMs consistently forget accessibility - skills get ignored, instructions drift out of context, ARIA gets misused, focus management gets skipped, color contrast fails silently. They got tired of fighting it and built an agent team that will not let it slide. Now we want to make more magic together.
We want more contributors! If you care about making software accessible to blind and low vision users, please consider submitting a PR. Every improvement to these agents helps developers ship more inclusive software for the people who need it most.
Accessibility Agents was founded by Taylor Arndt (COO at Techopolis) and Jeff Bishop because accessibility is how they work, not something bolted on at the end. When AI coding tools consistently failed at accessibility, they built the team they wished existed - and opened it to the world.
This is a community project. The more perspectives, lived experiences, and domain knowledge that go into it, the better it serves the blind and low vision community. If you have ideas, open a discussion. If you have fixes, open a PR. Every contribution matters.
⚠️ CRITICAL: To remain current with Accessibility Agents and ensure proper functionality, you must keep all tools updated to their latest versions. New platform capabilities, API changes, accessibility features, and bug fixes directly impact agent behavior.
For GitHub Copilot (VS Code):
For Claude Code:
For Gemini CLI:
Operating Systems:
Version 5.0.0 moves Accessibility Agents to a GitHub Skills installation flow backed by native Go binaries for setup, health checks, repair, and hook management.
Planned 5.0 flow:
gh skill install Community-Access/accessibility-agents
gh skill setup Community-Access/accessibility-agents
gh skill health Community-Access/accessibility-agents
Important:
gh skill install is the future primary install path.If you are contributing to the 5.0 installer transition or preparing release artifacts, install Go and build the native CLI locally.
Windows:
winget install --id GoLang.Go --exact --accept-package-agreements --accept-source-agreements
go version
pwsh -NoProfile -File scripts/build-go-cli.ps1
macOS:
brew install go
go version
bash scripts/build-go-cli.sh
The compiled binaries are written to go-cli/bin/. Windows outputs are .exe files. macOS outputs are native CLI executables.
GitHub Actions also builds the Go CLI automatically on Windows, macOS, and Linux via .github/workflows/build-go-cli.yml.
5.0+ uses the GitHub Skills / Go CLI path as the supported installer path.
Use the GitHub Skills installer:
gh skill install Community-Access/accessibility-agents
Then run setup/health/repair utilities as needed:
gh skill setup Community-Access/accessibility-agents
gh skill health Community-Access/accessibility-agents
gh skill repair Community-Access/accessibility-agents
gh skill uninstall Community-Access/accessibility-agents
If you need manual cleanup details, see UNINSTALL.md.
The setup flow is designed to be additive and non-destructive:
~/.claude/agents/, .github/agents/) - existing files are skipped, not replaced. A message tells you which agents were skipped so you know what you already have.copilot-instructions.md, copilot-review-instructions.md, copilot-commit-message-instructions.md) - our content is wrapped in `` markers and merged into your existing file. Your content above and below the markers is always preserved. If the file does not exist, it is created.skills/, instructions/, prompts/) - copied file-by-file; files that already exist are skipped..a11y-agent-manifest) - tracks every file we installed. Repair and update flows use this list to ensure they only touch files we own, never user-created agents. When contributors add new agents to the repo, those files are installed on the next setup/repair pass and added to the manifest.Updates are equally safe - maintenance flows never delete user agent files. If a file is not in the manifest (meaning you created it yourself), it will not be modified or removed.
To reinstall a specific agent from scratch, delete it first and rerun setup or repair.
After installation, run a validation and self-repair pass. This verifies that all installed surfaces are intact, MCP base dependencies are present, and Playwright is functional if installed.
You can also run it manually at any time:
PowerShell (Windows) — validate only:
pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/repair-install.ps1 -SummaryPath .a11y-agent-team-install-summary.json
PowerShell (Windows) — validate and auto-repair:
pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/repair-install.ps1 -SummaryPath .a11y-agent-team-install-summary.json -Repair
Shell (macOS / Linux / Git Bash) — validate only:
bash scripts/repair-install.sh --summary=.a11y-agent-team-install-summary.json --validate-only
Shell (macOS / Linux / Git Bash) — validate and auto-repair:
bash scripts/repair-install.sh --summary=.a11y-agent-team-install-summary.json
VS Code users can run these via the Terminal > Run Task menu: look for the Repair: task group.
The repair pass checks and fixes:
@modelcontextprotocol/sdk and zod are present; runs npm install --omit=dev if missingplaywright-core is installed; Chromium is functional; re-runs setup if brokenFindings are appended to the install summary JSON and a separate .a11y-agent-team-repair-summary.json is written next to it. See Troubleshooting for symptom-specific guidance.
For the GitHub Skills specification rollout and release-readiness workflows, see:
The following guides cover advanced configuration, cross-platform handoff, and distribution.
| Guide | What It Covers |
|---|---|
| [Cross-Platform Handoff](docs/advanced/cross-platform-handoff.md) | Seamless handoff between Claude Code and Copilot |
| [Advanced Scanning Patterns](docs/advanced/advanced-scanning-patterns.md) | Background scanning, worktree isolation, large libraries |
| [Metadata and Markup Conventions](docs/guides/metadata-markup-conventions.md) | Recommended metadata fields and markdown structure conventions for agents, skills, and instructions |
| [Plugin Packaging](docs/advanced/plugin-packaging.md) | Packaging and distributing agents for different environments |
| [Platform References](docs/advanced/platform-references.md) | External documentation sources with feature-to-source mapping |
| [Playwright High-Impact Checks](docs/guides/playwright-high-impact-checks.md) | High-impact runtime accessibility checks for keyboard traps, serious violations, and viewport risk |
| [CI Integrity Guards](docs/guides/ci-integrity-guards.md) | Guard rails for workflow invariants, config/schema drift, and documentation version pin checks |
| [Release Communications Checklist](docs/guides/release-communications-checklist.md) | Repeatable release messaging checklist for changelog, notes, publish, and announcements |
| [Experimental Codex Multi-Agent Roles](docs/guides/codex-experimental-multi-agent.md) | Optional TOML-based Codex roles for focused accessibility passes |
| [Research Sources](docs/RESEARCH-SOURCES.md) | Authoritative sources (W3C APG, WebAIM, WCAG 2.2, Deque) that informed every agent rule |
The example/ directory contains a deliberately broken web page with 20+ intentional accessibility violations. Use it to practice with the agents and see how they catch real issues. See the example README for details.
The following agents handle GitHub repository management, triage, and workflow automation.
| Agent | Role |
|---|---|
| **github-hub** | Orchestrator. Routes GitHub management tasks to the right specialist from plain English. |
| **daily-briefing** | Morning overview - open issues, PR queue, CI status, security alerts in one report. |
| **pr-review** | PR diff analysis with confidence per finding, delta tracking, and inline comments. |
| **issue-tracker** | Issue triage - priority scoring, duplicate detection, action inference, project board sync. |
| **analytics** | Repository health scoring (0-100/A-F), velocity metrics, bottleneck detection. |
| **insiders-a11y-tracker** | Track accessibility changes in VS Code Insiders and custom repos with WCAG mapping. |
| **repo-admin** | Collaborator management, branch protection rules, access audits. |
| **team-manager** | Onboarding, offboarding, org team membership, permission management. |
| **contributions-hub** | Discussions, community health metrics, first-time contributor insights. |
| **template-builder** | Guided wizard for issue/PR/discussion templates - no YAML knowledge required. |
| **repo-manager** | Repository scaffolding - labels, CI, CONTRIBUTING, SECURITY, issue templates. |
See the Agent Reference Guide for deep dives on every agent, example prompts, behavioral constraints, and instructor-led walkthroughs.
The following guide covers all GitHub workflow agents and their invocation syntax.
| Guide | What It Covers |
|---|---|
| [GitHub Workflow Agents](docs/agents/README.md#github-workflow-agents) | All 10 workflow agents with invocation syntax, examples, and instructor-led walkthroughs |
VS Code 1.113 is currently the most relevant baseline for GitHub Copilot users of this repo. The release added several changes that improve Accessibility Agents workflows directly:
Chat: Open Chat Customizations gives you one place to inspect and manage instructions, prompt files, agents, skills, MCP servers, and plugins.Subagent stance for this repo:
For official details, see the VS Code 1.113 release notes: https://code.visualstudio.com/updates/v1_113.
If you are using Accessibility Agents in VS Code 1.113, these settings and commands are the most useful starting point:
{
"chat.useCustomizationsInParentRepositories": true,
"github.copilot.chat.agentDebugLog.enabled": true,
"github.copilot.chat.agentDebugLog.fileLogging.enabled": true,
"chat.imageSupport.enabled": true
}
Chat: Open Chat Customizations to inspect loaded instructions, agents, skills, MCP servers, and plugins./troubleshoot when a customization is not loading or an expected tool is missing.chat.subagents.allowInvocationsFromSubagents disabled unless you are intentionally experimenting with recursive orchestration patterns.That last point is a repo recommendation, not a VS Code limitation.
VS Code users: Personalize the loading text that appears while agents think with accessibility-themed phrases.
Add to VS Code Settings (settings.json):
{
"chat.agent.thinking.phrases": {
"mode": "append", // Adds to default phrases
"phrases": [
"Checking contrast ratios...",
"Testing with screen readers...",
"Verifying keyboard navigation...",
"Reviewing ARIA patterns...",
"Scanning for accessibility barriers...",
"Consulting WCAG 2.2..."
]
}
}
Options:
"mode": "append" - Adds your phrases to VS Code's default list (recommended)"mode": "replace" - Only shows your custom phrasesWhy This Matters:
How to Add:
chat.agent.thinking.phrases settingCommunity Contributions: Have a great accessibility-themed thinking phrase? Submit a PR to add it to our recommended list in CONTRIBUTING.md!
GitHub Copilot users (VS Code): A VS Code extension is in development that will allow one-click install from the Extensions marketplace. Until then, use the one-liner install above or the manual steps in Getting Started.
What the extension will include:
For other platforms (Claude Code, Gemini, Claude Desktop, Codex), see Getting Started.
可以穷手机操作器为常用的手机操作器,可以用为Claude为常用的手机操作器。不得载的题。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:可以穷手机操作器 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | accessibility-agents |
| 原始描述 | 开源AI工作流:Accessibility review agents for Claude Code, GitHub Copilot, and Claude Desktop.。⭐283 · JavaScript |
| Topics | workflowa11yaccessibility |
| GitHub | https://github.com/Community-Access/accessibility-agents |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-05-26 · 更新时间:2026-05-26 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端