Use this skill when you are about to use bruno cli to run api test, bruno is postman like tool.
/plugin marketplace add towry/dots/plugin install claude-code-skills@local-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/bruno-cli-usage.md<base-dir> refer to ~/.claude/skills/bruno/
To locate the <bruno-collection-dir>, you can run bash command in project root:
fd -t f bruno.json
The dir of this bruno.json is the <bruno-collection-dir>
<bruno-collection-dir>/MyFolder/folder.bruenvironments dir under the collection dir.Bruno manage api files in local file system, to locate the files, you can run bash fd -t f bruno.json to find where the files are stored. The bruno file has extension .bru, it's content structure is like:
When creating new bru files, please make sure they are organize in a reasonable folder structure.
meta {
name: Get Demo
type: http
seq: 1
}
get {
url: http://127.0.0.1:4000/models
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}
tests {
test("should be able to login", function () {
const data = res.getBody();
expect(res.getStatus()).to.equal(200);
});
test("should return json", function () {
const data = res.getBody();
expect(res.getBody()).to.eql({
hello: "Bruno",
});
});
}
For a demo environment file under <bruno-collection-dir>/environments/demo.bru, the content is like:
vars {
api_base: http://127.0.0.1:8000
}
vars:secret [
secret_test
]
To use this env file with bruno cli, you can run with option --env-file <bruno-collection-dir>/environments/demo.bru
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.