Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

ide-managementIDE 管理

Agent Skill

ide-management 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

489

周安装

21

GitHub Stars

9

下载量

171
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ide-management(IDE 管理)
来源仓库:https://github.com/acquia/acquia-skills
仓库路径:skills/ide-management
安装命令:
npx skills add https://github.com/acquia/acquia-skills --skill ide-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/acquia/acquia-skills --skill ide-management

简介

ide-management 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于企业级开发项目管理与团队协作流程整合场景。
  • 支持批量处理 Issue、跟踪 PR 合并状态、生成项目报告或同步任务进度。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Managing Cloud IDEs

Use when:

  • Creating, opening, or sharing a Cloud IDE
  • Deleting or listing Cloud IDEs
  • Configuring IDE services or checking hibernation status

What is a Cloud IDE?

A Cloud IDE is a complete Drupal development environment that includes:

  • Theia IDE — Web-based code editor (VS Code-like interface)
  • Apache & PHP — Full Drupal web server
  • MySQL Database — Development database
  • Drush — Drupal command-line tool
  • Composer — PHP dependency manager
  • Git — Version control

Hibernation: IDEs automatically enter hibernation after 2 hours of inactivity, consuming minimal resources. They wake automatically when you access them.


List Your IDEs

See all IDEs for a given application

acli ide:list 2>/dev/null | grep -v "is available\|self-update"
acli ide:list:app <applicationUuid> 2>/dev/null | grep -v "is available\|self-update"
acli ide:list:app myapp 2>/dev/null | grep -v "is available\|self-update"

Output:

Select a Cloud Platform application:
  [0] My App (prod, staging, dev)
  [1] Other App (prod, staging)

IDEs for My App:
  My IDE (another.user@example.com)
    Web URL: https://ide-12345.ides.acquia.com
    IDE URL: https://ide-12345.web.ahdev.cloud
    Created: 2024-01-15

Other IDE (another.user@example.com)
    Web URL: https://ide-67890.ides.acquia.com
    IDE URL: https://ide-67890.web.ahdev.cloud
    Created: 2024-02-20

List IDEs belonging to you (across all applications)

acli ide:list:mine 2>/dev/null | grep -v "is available\|self-update"

Shows only IDEs you personally own across all applications.


Create a New IDE

Interactive Wizard

acli ide:create 2>/dev/null

Prompts you step-by-step:

? Do you want to link a local project? (Yes/No)
? Select a Cloud Platform application: [0] My App
? Enter a label for your IDE: (optional, default shows your name)
? Creating your Cloud IDE...
✓ IDE created successfully!

Your IDE is ready at: https://ide-12345.ides.acquia.com

Scripted (non-interactive)

# Create IDE for specific application
acli ide:create --application=abc123-def456 --label="My IDE" 2>/dev/null

# Fastest option - uses defaults if possible
acli ide:create --application=abc123-def456 2>/dev/null

What happens after creation?

  1. IDE provisioning (~2-3 minutes)
  2. Theia loads with your codebase
  3. Databases are cloned from your application
  4. Development environment is ready

Open an IDE in Your Browser

Open directly

acli ide:open 2>/dev/null

Prompts which IDE if you have multiple.

With application context

acli ide:open --application=abc123 2>/dev/null

Get just the URL

acli ide:info 2>/dev/null

Shows the IDE URL and details.


Get IDE Information

acli ide:info 2>/dev/null

Output:

IDE: My IDE
  Application: My App (abc123-def456)
  Owner: another.user@example.com
  Label: My IDE
  Created: 2024-01-15
  Last Activity: 2024-02-20 14:23:00
  Status: Running
  Web URL: https://ide-12345.web.ahdev.cloud
  IDE URL: https://ide-12345.ides.acquia.com

Delete an IDE

Delete with confirmation

acli ide:delete 2>/dev/null

Prompts for confirmation:

? Select the IDE you want to delete: [0] My IDE
? Delete "My IDE"? This cannot be undone. (yes/no)
Deleting IDE...
✓ IDE deleted successfully.

Delete non-interactively

acli ide:delete --ide=12345 2>/dev/null

Note: This is permanent and cannot be undone. Make sure to push any uncommitted code to Git!

Share an IDE with Teammates

Get the share URL

acli ide:share

Prints the share URL for your IDE:

Share URL: https://ide-12345.ides.acquia.com?share_token=abc123xyz

Regenerate the share token

acli ide:share --regenerate

Invalidates the old token and prints a new share URL.

Access shared IDE

Your teammate clicks the share URL and gets temporary read access. They don't need their own IDE or application access.


Configure & Manage IDE Services

Change PHP version

acli ide:php-version <version>

Example:

acli ide:php-version 8.2
acli ide:php-version 8.1

Validates the version exists on the system, updates the config, and restarts php-fpm automatically.

Manage IDE Services

Valid service names: php, php-fpm, apache, apache2, mysql, mysqld

# Start a service
acli ide:service-start apache
acli ide:service-start mysql

# Stop a service
acli ide:service-stop apache

# Restart a service
acli ide:service-restart php
acli ide:service-restart apache
acli ide:service-restart mysql

Toggle Xdebug

acli ide:xdebug-toggle

Checks the current state and switches it — enables if disabled, disables if enabled. Alias: xdebug.


Hibernation

IDEs automatically hibernate after 2 hours of inactivity and wake automatically when accessed (1–2 minute startup). Hibernated IDEs consume minimal resources.

To check status or get URLs:

acli ide:info 2>/dev/null

To wake a hibernated IDE, simply open it:

acli ide:open

The IDE will wake automatically. If stuck, try restarting services:

acli ide:service-restart apache
acli ide:service-restart php

Best Practices

1. One IDE per Feature Branch

Create a new IDE for each feature you're working on:

acli ide:create --label="Feature: New Homepage" 2>/dev/null

This keeps work isolated and makes it easy to switch between tasks.

2. Delete Idle IDEs

Remove IDEs you're no longer using to keep your account clean:

acli ide:delete 2>/dev/null

3. Use IDE Labels Wisely

Choose descriptive labels:

# ✓ Good
acli ide:create --label="Feature: ACN Migration" 2>/dev/null
acli ide:create --label="Bug Fix: Login Form Issue" 2>/dev/null
acli ide:create --label="Client: Acme Corp Review" 2>/dev/null

# ✗ Bad
acli ide:create --label="IDE 1" 2>/dev/null
acli ide:create --label="Test" 2>/dev/null

4. Push Code Regularly

Your IDE has Git access. Push to your repository frequently.

5. Monitor Resources

Large IDEs use more resources. Check your Acquia Cloud dashboard if you hit limits.


Troubleshooting

IDE won't start / stuck loading

Delete and recreate the IDE:

acli ide:delete 2>/dev/null
acli ide:create 2>/dev/null

"Access Denied" error

You might not have permission to the application. Verify:

acli api:applications:list 2>/dev/null

IDE is very slow

This is often due to hibernation waking (wait 30–60 seconds) or a large codebase. If it persists, recreate the IDE:

acli ide:create 2>/dev/null

Can't SSH into IDE

Set up SSH keys first:

acli ssh-key:list 2>/dev/null

# If no keys, create one
acli ssh-key:create 2>/dev/null

Related Topics

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.4%
按下载量换算64

Claude

30.21%
按下载量换算52

Cursor

16.27%
按下载量换算28

Gemini CLI

9.12%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills