Skip to content

feat(marketplace): add asana plugin#231

Merged
amondnet merged 1 commit into
mainfrom
feat/add-asana-plugin
Jun 23, 2026
Merged

feat(marketplace): add asana plugin#231
amondnet merged 1 commit into
mainfrom
feat/add-asana-plugin

Conversation

@amondnet

@amondnet amondnet commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Summary

Register the asana plugin in the pleaseai marketplace, sourced from pleaseai/asana.

The repo packages the asana-cli skill as a Claude Code plugin (.claude-plugin/plugin.json + top-level skills/asana-cli/). See pleaseai/asana#41.

Entry

{
  "name": "asana",
  "description": "Manage Asana from the terminal with the `asana` CLI — ...",
  "category": "productivity",
  "keywords": ["asana", "cli", "task-management", "productivity"],
  "tags": ["skills", "productivity"],
  "source": { "source": "github", "repo": "pleaseai/asana" },
  "homepage": "https://github.com/pleaseai/asana"
}

Note

Merge after pleaseai/asana#41 lands, so the .claude-plugin/plugin.json manifest exists on the source repo's default branch.


Summary by cubic

Adds the asana plugin to the marketplace, sourced from pleaseai/asana, so users can install and use the asana CLI via Claude Code. Listed under productivity.

Written for commit 259d3d9. Summary will update on new commits.

Summary by CodeRabbit

  • New Features
    • Asana CLI plugin is now available in the marketplace, enabling task and project management from the command line with support for subtasks, comments, dependencies, tags, custom fields, and batch imports.

Register the asana-cli Claude Code plugin (pleaseai/asana) so it can be
installed from the pleaseai marketplace.
@coderabbitai

coderabbitai Bot commented Jun 23, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

A new plugin entry named asana is inserted into the plugins array in .claude-plugin/marketplace.json. The entry includes a CLI-focused description, category, keywords, tags, a GitHub source reference (pleaseai/asana), and a homepage URL.

Changes

Asana Plugin Catalog Registration

Layer / File(s) Summary
Asana plugin catalog entry
.claude-plugin/marketplace.json
New plugin object added to the plugins array with name, description, category, keywords, tags, source (owner/repo), and homepage fields for the asana CLI plugin.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

🐇 Hippity-hop, a new plugin in store,
Asana arrives at the marketplace door!
Tasks and projects, subtasks galore,
Custom fields managed — who could want more?
The catalog grows with each bunny-bound leap! 🌿

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The pull request title accurately summarizes the main change: adding the asana plugin to the marketplace catalog.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/add-asana-plugin

Comment @coderabbitai help to get the list of available commands.

@vercel

vercel Bot commented Jun 23, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
claude-code-plugins Ready Ready Preview, Comment Jun 23, 2026 5:37am

Request Review

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds a new entry for the 'asana' CLI tool to the marketplace configuration file. The review feedback correctly identifies a JSON syntax error in the description field, where an invalid backslash escape is used before a backtick, and suggests a fix to ensure the JSON remains valid and parseable.

Comment thread .claude-plugin/marketplace.json
@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.claude-plugin/marketplace.json:
- Around line 773-777: The marketplace entry for the pleaseai/asana plugin in
the `.claude-plugin/marketplace.json` file references an upstream repository
that does not yet contain the required `.claude-plugin/plugin.json` manifest
file. Before this PR can be merged, you must verify that pull request
pleaseai/asana#41 has been merged into the main branch of the pleaseai/asana
repository and that the manifest file is accessible at
https://raw.githubusercontent.com/pleaseai/asana/main/.claude-plugin/plugin.json.
Once the upstream PR is merged and the manifest is available, this change can be
safely merged without causing marketplace ingestion failures.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: dcf08fd5-b079-4663-bcdf-891b4356061f

📥 Commits

Reviewing files that changed from the base of the PR and between ccc9e2b and 259d3d9.

📒 Files selected for processing (1)
  • .claude-plugin/marketplace.json

Comment thread .claude-plugin/marketplace.json

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 1 file

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant User as User/Developer
    participant CLI as Claude Code CLI
    participant MP as Marketplace Registry
    participant GH as GitHub Repo (pleaseai/asana)
    participant Plugin as Plugin Installer

    Note over User,Plugin: Plugin Discovery & Installation Flow

    User->>CLI: Initiate plugin installation
    CLI->>MP: Query marketplace entries
    MP-->>CLI: Return plugin list (including asana entry)

    CLI->>CLI: Find "asana" plugin in marketplace
    alt Plugin source is "github"
        CLI->>GH: Fetch plugin manifest (.claude-plugin/plugin.json)
        GH-->>CLI: Return manifest with repo info
        CLI->>Plugin: Download and register plugin
        Plugin->>Plugin: Extract skills (asana-cli)
        Plugin-->>CLI: Confirmation
    end

    CLI-->>User: Plugin ready for use

    Note over User,CLI: Runtime Execution

    User->>CLI: Execute asana command
    CLI->>CLI: Match skill to "asana" plugin
    CLI->>GH: Pull skill definitions (on-demand)
    GH-->>CLI: Return skill files
    CLI->>Plugin: Load skill into context
    Plugin-->>CLI: Skill ready
    CLI-->>User: Command output
Loading

Re-trigger cubic

@amondnet amondnet merged commit 374e84a into main Jun 23, 2026
13 checks passed
@amondnet amondnet deleted the feat/add-asana-plugin branch June 23, 2026 07:06
@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant