在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用juju
星标0
分支0
更新时间2025年12月23日 01:29
Develop and test against a real Juju controller
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Develop and test against a real Juju controller
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | juju |
| description | Develop and test against a real Juju controller |
Use Juju to develop and test changes in the Ops project. Works on Linux, ideally in a sandboxed environment.
sudo concierge prepare -p dev # Installs all the required packages and bootstraps local clouds and Juju itself
juju switch concierge-lxd # For a machine charm
juju switch concierge-k8s # For a Kubernetes charm
juju add-model claude-[random ID] # Use a consistent prefix
After adding a model ALWAYS tell the user the name of the model and how they can inspect the status, filling in the details:
To inspect the status of the model:
juju status -m [contoller-name]:[model-name]
Or to see the Juju logs:
juju debug-log -m [controller-name]:[model-name]
This must ALWAYS be printed right after a session was started and once again at the end of the tool loop. But the earlier you send it, the happier the user will be.
Use juju debug-log -m [controller-name]:[model-name]. See juju debug-log --help for details.
charmcraft pack - use this to pack a charm so that it can be deployedjuju deploy -m [controller-name]:[model-name] ./path-to-charm.charm - deploy a charm -- see --help for information about providing resourcesjuju status --format json -m [controller-name]:[model-name] - get information about the status of the deployed charmsjuju actions and juju run - run an action that a charm definesjuju config - set configuration for a charmjuju integrate - create a relation between two charmsjuju ssh - open a SSH connection to a charm container, see --help for detailsjuju destroy-model [controller-name]:[model-name]