Explore

Find agent skills by outcome

67,360 skills indexed with the new KISS metadata standard.

Showing 24 of 67,360Categories: Productivity, General, Coding & Debugging, Creative
General
PromptBeginner5 minmarkdown

New read-only commands should be added to the appropriate existing `[[rule]]` block by category

or a new block if no category fits.

0
General
PromptBeginner5 minmarkdown

For deny and ask rules

use `commandRegex` (catches flag variants).

0
General
PromptBeginner5 minmarkdown

commandPrefix = [command subcommand1

command subcommand2]

0
General
PromptBeginner5 minmarkdown

Once I have approved the list

update both config files.

0
General
PromptBeginner5 minmarkdown

For allow rules

use `commandPrefix` (provides word-boundary matching).

0
General
PromptBeginner5 minmarkdown

Claude uses a JSON permissions object with allow

deny

0
General
PromptBeginner5 minmarkdown

3. Restrict: Explicitly exclude any commands capable of modifying

deleting

0
General
PromptBeginner5 minmarkdown

We are mostly interested in the read-only commands here that fall under the categories: Read

Get

0
Productivity
PromptBeginner5 minmarkdown

Update Agent Permissions

# Task: Update Agent Permissions

0
General
PromptBeginner5 minmarkdown

test

---

0
General
PromptBeginner5 minmarkdown

console.error(Failed to fetch lists:

error.message);

0
General
PromptBeginner5 minmarkdown

require('dotenv').config({ path: path.join(__dirname

'../../../../.env') });

0
General
PromptBeginner5 minmarkdown

console.error(Failed to fetch boards:

error.message);

0
Coding & Debugging
PromptBeginner5 minmarkdown

const url = `https://api.trello.com/1/members/me/boards?key=${API_KEY}&token=${TOKEN}&fields=name

url`;

0
General
PromptBeginner5 minmarkdown

throw new Error(`HTTP error! status: ${response.status}

message: ${errText}`);

0
General
PromptBeginner5 minmarkdown

console.error(Failed to create card:

error.message);

0
General
PromptBeginner5 minmarkdown

require('dotenv').config({ path: path.join(__dirname

'../../../../.env') });

0
General
PromptBeginner5 minmarkdown

require('dotenv').config({ path: path.join(__dirname

'../../../../.env') });

0
General
PromptBeginner5 minmarkdown

1. **Identify the Target**: If the target `listId` is unknown

first run `list_boards.js` to identify the correct `boardId`

0
General
PromptBeginner5 minmarkdown

const response = await fetch(url

{

0
Productivity
PromptBeginner5 minmarkdown

When the user requests to manage or add a task to Trello

follow these steps autonomously:

0
General
PromptBeginner5 minmarkdown

Fetches the lists inside a specific board to find the exact `listId` (e.g.

retrieving the ID for the To Do column).

0
Coding & Debugging
PromptBeginner5 minmarkdown

To use this skill locally

you need to provide your Trello Developer API credentials.

0
Productivity
PromptBeginner5 minmarkdown

The Trello Integration Skill provides a seamless connection between the AI agent and the user's Trello account. It empowers the agent to autonomously fetch existing boards and lists

and create new task cards on specific boards based on user prompts.

0