AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

El Mention

skill-jiaiyan-element-plus-skills-el-mention · by jiaiyan

Mention component for mentioning users or items in input. Invoke when user needs to implement @mentions, user tagging, or item references in text inputs.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-jiaiyan-element-plus-skills-el-mention

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jiaiyan-element-plus-skills-el-mention)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of El Mention? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Mention Component

Mention allows users to mention someone or something in an input field.

When to Use

  • User mentions (@username)
  • Item references
  • Tagging functionality
  • Rich text inputs

Basic Usage


  

import { ref } from 'vue'

const value = ref('')
const options = [
  { value: 'user1', label: 'User 1' },
  { value: 'user2', label: 'User 2' },
  { value: 'user3', label: 'User 3' }
]

Textarea Mode


  

Custom Props


  

import { ref } from 'vue'

const value = ref('')
const options = [
  { id: '1', name: 'User 1' },
  { id: '2', name: 'User 2' }
]

Custom Label


  
    
      
        
        {{ item.label }}
      
    
  

Remote Loading


  

import { ref } from 'vue'

const value = ref('')
const options = ref([])
const loading = ref(false)

const handleSearch = async (pattern, prefix) => {
  loading.value = true
  const res = await fetch(`/api/users?q=${pattern}`)
  options.value = await res.json()
  loading.value = false
}

Custom Trigger


  

Delete as Whole


  

API Reference

Attributes

| Name | Description | Type | Default | |------|-------------|------|---------| | model-value / v-model | Input value | string | — | | options | Mention options | MentionOption[] | [] | | props | Configuration options | MentionOptionProps | {value: 'value', label: 'label', disabled: 'disabled'} | | prefix | Trigger character | string \| string[] | '@' | | split | Split character | string | ' ' | | filter-option | Custom filter logic | (pattern, option) => boolean | — | | placement | Popup placement | 'bottom' \| 'top' | 'bottom' | | show-arrow | Show dropdown arrow | boolean | false | | offset | Dropdown offset | number | 0 | | whole | Delete mention as whole | boolean | false | | check-is-whole | Custom whole check | (pattern, prefix) => boolean | — | | loading | Loading state | boolean | false | | popper-class | Custom dropdown class | string \| object | '' | | popper-style | Custom dropdown style | string \| object | — |

Events

| Name | Description | Type | |------|-------------|------| | search | Triggered on prefix hit | (pattern, prefix) => void | | select | Option selected | (option, prefix) => void | | whole-remove | Whole mention removed | (pattern, prefix) => void |

Slots

| Name | Description | Type | |------|-------------|------| | label | Custom option label | { item, index } | | loading | Loading content | — | | header | Dropdown header | — | | footer | Dropdown footer | — |

Exposes

| Name | Description | Type | |------|-------------|------| | input | Input component instance | Ref | | tooltip | Tooltip component instance | Ref | | dropdownVisible | Dropdown visibility | ComputedRef |

Best Practices

  1. Use loading for async option loading
  2. Use prefix for different trigger characters
  3. Use whole for better UX when deleting mentions

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.