Skip to main content
@spotify/backstage-plugin-skill-exchange-backend-module-actions The Skill Exchange Actions module integrates with Backstage’s Actions Registry, enabling programmatic discovery of skills and experts within your organization. These actions are ideal for integration with AI assistants, automation workflows, and custom backend plugins.

Installation

To use these actions, install the actions module as described in Setup & Installation.
packages/backend/src/index.ts

Available Actions

Each action declares attributes that indicate its behavior:
  • readOnly: The action only reads data and does not make modifications
  • idempotent: Repeated calls with the same input produce the same result
  • destructive: The action can delete or permanently modify data
Always check an action’s attributes before using it in automated workflows to understand its potential side effects.

search-skills Action

Discover skills in your organization by name, category, or relationships.

Use Cases

  • Skill discovery: Find skills that match specific criteria for team planning
  • Related technologies: Discover skills related to ones your team already uses
  • Onboarding: Help new team members explore available learning paths
  • Automation: Power AI assistants and chatbots with skill discovery

Parameters

Output


search-experts Action

Find experts in your organization based on skills or team membership.

Use Cases

  • Expert discovery: Find subject matter experts for specific technologies
  • Team formation: Identify potential team members with required skills
  • Code review: Find qualified reviewers for specific technology areas
  • Mentorship: Connect mentees with mentors who have relevant expertise
  • Knowledge sharing: Identify experts who can lead workshops or training

Parameters

Output


Programmatic Usage in Backend Plugins

You can use these actions programmatically in your own backend plugins by accessing the Actions Registry Service:

Integration with AI Assistants

These actions work seamlessly with AI assistants and automation tools. When integrating actions into AI-powered workflows, check each action’s attributes to understand its behavior:
  • Actions with readOnly: true can be called safely without modifying data
  • Actions with idempotent: true can be retried safely on failure
  • Actions with destructive: true should require explicit user confirmation before execution