trello-api-cards-by-list

Sub-skill of trello-api: Cards by List.

5 stars

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

$curl -o ~/.claude/skills/cards-by-list/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/business/productivity/trello-api/cards-by-list/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/cards-by-list/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How trello-api-cards-by-list Compares

Feature / Agenttrello-api-cards-by-listStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/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

5
from vamseeachanta/workspace-hub

```yaml

gh-work-execution-checklist

5
from vamseeachanta/workspace-hub

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

5
from vamseeachanta/workspace-hub

Automate OrcaFlex marine simulations via Python API for mooring, riser, and installation analysis

plan-review-approval-shortlist-audit

5
from vamseeachanta/workspace-hub

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

5
from vamseeachanta/workspace-hub

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

5
from vamseeachanta/workspace-hub

Sub-skill of repo-cleanup: List Untracked Files (+3).

discipline-refactor-verification-checklist

5
from vamseeachanta/workspace-hub

Sub-skill of discipline-refactor: Verification Checklist.

nextflow-pipelines-workflow-checklist

5
from vamseeachanta/workspace-hub

Sub-skill of nextflow-pipelines: Workflow Checklist.

instrument-data-allotrope-pre-parsing-checklist

5
from vamseeachanta/workspace-hub

Sub-skill of instrument-data-allotrope: Pre-Parsing Checklist.

solver-benchmark-pre-flight-validation-checklist

5
from vamseeachanta/workspace-hub

Sub-skill of solver-benchmark: Pre-Flight Validation Checklist.

orcaflex-specialist-1-model-organization

5
from vamseeachanta/workspace-hub

Sub-skill of orcaflex-specialist: 1. Model Organization (+2).

mesh-utilities-pre-solver-checklist

5
from vamseeachanta/workspace-hub

Sub-skill of mesh-utilities: Pre-Solver Checklist.