trello-api-cards-by-list
Sub-skill of trello-api: Cards by List.
Best use case
trello-api-cards-by-list is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of trello-api: Cards by List.
Teams using trello-api-cards-by-list should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/cards-by-list/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How trello-api-cards-by-list Compares
| Feature / Agent | trello-api-cards-by-list | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of trello-api: Cards by List.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Cards by List
## Cards by List
"""
for list_name, list_data in analytics["lists"].items():
report += f"### {list_name} ({list_data['card_count']} cards)\n\n"
if list_data["cards"]:
for card in list_data["cards"][:5]: # Show top 5
overdue_marker = " [OVERDUE]" if card.get("overdue") else ""
report += f"- {card['name']}{overdue_marker}\n"
if len(list_data["cards"]) > 5:
report += f"- ... and {len(list_data['cards']) - 5} more\n"
report += "\n"
report += "## Label Usage\n\n"
report += "| Label | Count |\n"
report += "|-------|-------|\n"
for label, count in sorted(
analytics["labels"].items(),
key=lambda x: x[1],
reverse=True
):
report += f"| {label} | {count} |\n"
return report
*See sub-skills for full details.*Related Skills
OrcaFlex Specialist Skill
```yaml
gh-work-execution-checklist
Compact live-execution checklist companion for approved GitHub issue work. Use during active implementation as a fast operational route; gh-work-execution remains the canonical source of truth.
orcaflex-specialist
Automate OrcaFlex marine simulations via Python API for mooring, riser, and installation analysis
plan-review-approval-shortlist-audit
Audit a status:plan-review queue to identify true approval candidates without being fooled by stale labels, conditional review summaries, or unresolved prerequisite blockers.
gh-work-planning-checklist
Compact live-execution checklist companion for the canonical gh-work-planning route. Use for fast operational tracking during issue planning without replacing the full route.
repo-cleanup-list-untracked-files
Sub-skill of repo-cleanup: List Untracked Files (+3).
discipline-refactor-verification-checklist
Sub-skill of discipline-refactor: Verification Checklist.
nextflow-pipelines-workflow-checklist
Sub-skill of nextflow-pipelines: Workflow Checklist.
instrument-data-allotrope-pre-parsing-checklist
Sub-skill of instrument-data-allotrope: Pre-Parsing Checklist.
solver-benchmark-pre-flight-validation-checklist
Sub-skill of solver-benchmark: Pre-Flight Validation Checklist.
orcaflex-specialist-1-model-organization
Sub-skill of orcaflex-specialist: 1. Model Organization (+2).
mesh-utilities-pre-solver-checklist
Sub-skill of mesh-utilities: Pre-Solver Checklist.