@templmf/temp-solf-lmf 0.0.29 → 0.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/rules-skill-writer/1_workflow.xml +116 -0
  3. package/rules-skill-writer/2_best_practices.xml +94 -0
  4. package/rules-skill-writer/3_common_patterns.xml +100 -0
  5. package/rules-skill-writer/4_decision_guidance.xml +78 -0
  6. package/rules-skill-writer/5_examples.xml +77 -0
  7. package/rules-skill-writer/6_error_handling.xml +17 -0
  8. package/rules-skill-writer/7_communication.xml +15 -0
  9. package/rules-skill-writer/8_tool_usage.xml +30 -0
  10. package/skills/code-reviewer/SKILL.md +0 -482
  11. package/skills/daily-qa-skill/SKILL.md +0 -147
  12. package/skills/daily-qa-skill/references/tools.md +0 -130
  13. package/skills/element-plus-vue3/LICENSE.txt +0 -202
  14. package/skills/element-plus-vue3/SKILL.md +0 -218
  15. package/skills/element-plus-vue3/api/component-api.md +0 -94
  16. package/skills/element-plus-vue3/api/global-config.md +0 -89
  17. package/skills/element-plus-vue3/api/props-and-events.md +0 -101
  18. package/skills/element-plus-vue3/examples/components/button.md +0 -99
  19. package/skills/element-plus-vue3/examples/components/date-picker.md +0 -115
  20. package/skills/element-plus-vue3/examples/components/dialog.md +0 -106
  21. package/skills/element-plus-vue3/examples/components/form.md +0 -127
  22. package/skills/element-plus-vue3/examples/components/input.md +0 -123
  23. package/skills/element-plus-vue3/examples/components/message.md +0 -93
  24. package/skills/element-plus-vue3/examples/components/overview.md +0 -59
  25. package/skills/element-plus-vue3/examples/components/select.md +0 -133
  26. package/skills/element-plus-vue3/examples/components/table.md +0 -166
  27. package/skills/element-plus-vue3/examples/guide/design.md +0 -68
  28. package/skills/element-plus-vue3/examples/guide/global-config.md +0 -95
  29. package/skills/element-plus-vue3/examples/guide/i18n.md +0 -95
  30. package/skills/element-plus-vue3/examples/guide/installation.md +0 -110
  31. package/skills/element-plus-vue3/examples/guide/quick-start.md +0 -103
  32. package/skills/element-plus-vue3/examples/guide/theme.md +0 -78
  33. package/skills/element-plus-vue3/templates/component-usage.md +0 -92
  34. package/skills/element-plus-vue3/templates/installation.md +0 -82
  35. package/skills/element-plus-vue3/templates/project-setup.md +0 -83
  36. package/test.md +0 -42
@@ -1,83 +0,0 @@
1
- # Project Setup Templates
2
-
3
- ## Vite Project Setup
4
-
5
- ```bash
6
- # Create Vite project
7
- npm create vite@latest my-app -- --template vue
8
-
9
- # Install dependencies
10
- cd my-app
11
- npm install
12
- npm install element-plus
13
-
14
- # Install auto-import plugins
15
- npm install -D unplugin-vue-components unplugin-auto-import
16
- ```
17
-
18
- ```javascript
19
- // vite.config.js
20
- import { defineConfig } from 'vite'
21
- import vue from '@vitejs/plugin-vue'
22
- import AutoImport from 'unplugin-auto-import/vite'
23
- import Components from 'unplugin-vue-components/vite'
24
- import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
25
-
26
- export default defineConfig({
27
- plugins: [
28
- vue(),
29
- AutoImport({
30
- resolvers: [ElementPlusResolver()],
31
- }),
32
- Components({
33
- resolvers: [ElementPlusResolver()],
34
- }),
35
- ],
36
- })
37
- ```
38
-
39
- ## Vue CLI Project Setup
40
-
41
- ```bash
42
- # Create Vue CLI project
43
- vue create my-app
44
-
45
- # Install Element Plus
46
- cd my-app
47
- npm install element-plus
48
- ```
49
-
50
- ```javascript
51
- // main.js
52
- import { createApp } from 'vue'
53
- import ElementPlus from 'element-plus'
54
- import 'element-plus/dist/index.css'
55
- import App from './App.vue'
56
-
57
- const app = createApp(App)
58
- app.use(ElementPlus)
59
- app.mount('#app')
60
- ```
61
-
62
- ## Nuxt 3 Project Setup
63
-
64
- ```bash
65
- # Create Nuxt 3 project
66
- npx nuxi@latest init my-app
67
-
68
- # Install Element Plus
69
- cd my-app
70
- npm install element-plus
71
- ```
72
-
73
- ```javascript
74
- // nuxt.config.ts
75
- import { defineNuxtConfig } from 'nuxt/config'
76
-
77
- export default defineNuxtConfig({
78
- css: ['element-plus/dist/index.css'],
79
- build: {
80
- transpile: ['element-plus']
81
- }
82
- })
83
- ```
package/test.md DELETED
@@ -1,42 +0,0 @@
1
- # Internal Scaffold Initialization Skill
2
-
3
- ## When to Use
4
-
5
- Use this skill when the user mentions any of the following:
6
- - Initialize a project
7
- - Create a new project
8
- - Create a new frontend project
9
- - Scaffold a project
10
-
11
- ## Tool
12
-
13
- Internal frontend scaffold CLI: `cit-cli`
14
-
15
- ## Steps
16
-
17
- 1. Ask the user for the project name if not already provided
18
- 2. Run the following command to initialize the project:
19
-
20
- ```bash
21
- cit-cli create <project-name>
22
- ```
23
-
24
- 3. After running the command, if the CLI shows an interactive prompt (e.g. template selection, package manager choice), notify the user:
25
- > "The CLI is waiting for your input. Please switch to the terminal and complete the selections manually."
26
- 4. Wait for the user to confirm they have finished the interactive steps
27
- 5. Inform the user that the project has been created and suggest next steps
28
-
29
- ## Example
30
-
31
- User says: "Help me initialize a project called my-app"
32
-
33
- Run:
34
- ```bash
35
- cit-cli create my-app
36
- ```
37
-
38
- ## Notes
39
-
40
- - Project names should only contain letters, numbers, and hyphens
41
- - Confirm the current working directory is correct before running
42
- - If the user has not provided a project name, always ask before executing