Comparing managing-youtrack with vue

managing-youtrack

View full →

Author

@JetBrains

Stars

56

Repository

JetBrains/skills

managing-youtrack/SKILL.md

YouTrack REST API

Setup (minimal)

  • NEVER use pipes after curl commands to parse the output, do that in a separate tool call.
  • Always pass the auth header via "${YOUTRACK_TOKEN}". Always include Accept: application/json; add Content-Type: application/json for write calls.
  • For queries containing spaces or symbols, use curl -G --data-urlencode "query=..." instead of embedding the query string.
  • Request only needed fields via the fields parameter; default minimal issue fields: idReadable,summary.

Navigation

Output requirement

After create/update/delete, print a link to the affected item:

  • Issue: $YOUTRACK_URL/issue/<idReadable>
  • Comment: $YOUTRACK_URL/issue/<idReadable>#focus=Comments-<COMMENT_ID>
  • Drafts have no web URL.

Author

@JetBrains

Stars

56

Repository

JetBrains/skills

vue/SKILL.md

Vue

Based on Vue 3.5. Always use Composition API with <script setup lang="ts">.

Preferences

  • Prefer TypeScript over JavaScript
  • Prefer <script setup lang="ts"> over <script>
  • For performance, prefer shallowRef over ref if deep reactivity is not needed
  • Always use Composition API over Options API
  • Discourage using Reactive Props Destructure

Core

TopicDescriptionReference
Script Setup & Macros<script setup>, defineProps, defineEmits, defineModel, defineExpose, defineOptions, defineSlots, genericsscript-setup-macros
Reactivity & Lifecycleref, shallowRef, computed, watch, watchEffect, effectScope, lifecycle hooks, composablescore-new-apis

Features

TopicDescriptionReference
Built-in Components & DirectivesTransition, Teleport, Suspense, KeepAlive, v-memo, custom directivesadvanced-patterns

Quick Reference

Component Template

<script setup lang="ts">
import { ref, computed, watch, onMounted } from 'vue'

const props = defineProps<{
  title: string
  count?: number
}>()

const emit = defineEmits<{
  update: [value: string]
}>()

const model = defineModel<string>()

const doubled = computed(() => (props.count ?? 0) * 2)

watch(() => props.title, (newVal) => {
  console.log('Title changed:', newVal)
})

onMounted(() => {
  console.log('Component mounted')
})
</script>

<template>
  <div>{{ title }} - {{ doubled }}</div>
</template>

Key Imports

// Reactivity
import { ref, shallowRef, computed, reactive, readonly, toRef, toRefs, toValue } from 'vue'

// Watchers
import { watch, watchEffect, watchPostEffect, onWatcherCleanup } from 'vue'

// Lifecycle
import { onMounted, onUpdated, onUnmounted, onBeforeMount, onBeforeUpdate, onBeforeUnmount } from 'vue'

// Utilities
import { nextTick, defineComponent, defineAsyncComponent } from 'vue'

AI Skill Finder

Ask me what skills you need

What are you building?

Tell me what you're working on and I'll find the best agent skills for you.