bobo-ai-cli 1.0.1

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 (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,147 @@
1
+ ---
2
+ id: "canvas-design"
3
+ title: "Canvas Design"
4
+ category: "design"
5
+ tags: ["design philosophy creation", "deducing the subtle reference", "canvas creation", "final step", "multi-page option"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/canvas-design"
9
+ ---
10
+
11
+ ---
12
+ name: canvas-design
13
+ description: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
14
+ license: Complete terms in LICENSE.txt
15
+ ---
16
+
17
+ These are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files.
18
+
19
+ Complete this in two steps:
20
+
21
+ 1. Design Philosophy Creation (.md file)
22
+ 2. Express by creating it on a canvas (.pdf file or .png file)
23
+
24
+ First, undertake this task:
25
+
26
+ ## DESIGN PHILOSOPHY CREATION
27
+
28
+ To begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through:
29
+
30
+ - Form, space, color, composition
31
+ - Images, graphics, shapes, patterns
32
+ - Minimal text as visual accent
33
+
34
+ ### THE CRITICAL UNDERSTANDING
35
+
36
+ - What is received: Some subtle input or instructions by the user that should be taken into account, but used as a foundation; it should not constrain creative freedom.
37
+ - What is created: A design philosophy/aesthetic movement.
38
+ - What happens next: Then, the same version receives the philosophy and EXPRESSES IT VISUALLY - creating artifacts that are 90% visual design, 10% essential text.
39
+
40
+ Consider this approach:
41
+
42
+ - Write a manifesto for an art movement
43
+ - The next phase involves making the artwork
44
+
45
+ The philosophy must emphasize: Visual expression. Spatial communication. Artistic interpretation. Minimal words.
46
+
47
+ ### HOW TO GENERATE A VISUAL PHILOSOPHY
48
+
49
+ **Name the movement** (1-2 words): "Brutalist Joy" / "Chromatic Silence" / "Metabolist Dreams"
50
+
51
+ **Articulate the philosophy** (4-6 paragraphs - concise but complete):
52
+
53
+ To capture the VISUAL essence, express how the philosophy manifests through:
54
+
55
+ - Space and form
56
+ - Color and material
57
+ - Scale and rhythm
58
+ - Composition and balance
59
+ - Visual hierarchy
60
+
61
+ **CRITICAL GUIDELINES:**
62
+
63
+ - **Avoid redundancy**: Each design aspect should be mentioned once. Avoid repeating points about color theory, spatial relationships, or typographic principles unless adding new depth.
64
+ - **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final work should appear as though it took countless hours to create, was labored over with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like "meticulously crafted," "the product of deep expertise," "painstaking attention," "master-level execution."
65
+ - **Leave creative space**: Remain specific about the aesthetic direction, but concise enough that the next Claude has room to make interpretive choices also at a extremely high level of craftmanship.
66
+
67
+ The philosophy must guide the next version to express ideas VISUALLY, not through text. Information lives in design, not paragraphs.
68
+
69
+ ### PHILOSOPHY EXAMPLES
70
+
71
+ **"Concrete Poetry"**
72
+ Philosophy: Communication through monumental form and bold geometry.
73
+ Visual expression: Massive color blocks, sculptural typography (huge single words, tiny labels), Brutalist spatial divisions, Polish poster energy meets Le Corbusier. Ideas expressed through visual weight and spatial tension, not explanation. Text as rare, powerful gesture - never paragraphs, only essential words integrated into the visual architecture. Every element placed with the precision of a master craftsman.
74
+
75
+ **"Chromatic Language"**
76
+ Philosophy: Color as the primary information system.
77
+ Visual expression: Geometric precision where color zones create meaning. Typography minimal - small sans-serif labels letting chromatic fields communicate. Think Josef Albers' interaction meets data visualization. Information encoded spatially and chromatically. Words only to anchor what color already shows. The result of painstaking chromatic calibration.
78
+
79
+ **"Analog Meditation"**
80
+ Philosophy: Quiet visual contemplation through texture and breathing room.
81
+ Visual expression: Paper grain, ink bleeds, vast negative space. Photography and illustration dominate. Typography whispered (small, restrained, serving the visual). Japanese photobook aesthetic. Images breathe across pages. Text appears sparingly - short phrases, never explanatory blocks. Each composition balanced with the care of a meditation practice.
82
+
83
+ **"Organic Systems"**
84
+ Philosophy: Natural clustering and modular growth patterns.
85
+ Visual expression: Rounded forms, organic arrangements, color from nature through architecture. Information shown through visual diagrams, spatial relationships, iconography. Text only for key labels floating in space. The composition tells the story through expert spatial orchestration.
86
+
87
+ **"Geometric Silence"**
88
+ Philosophy: Pure order and restraint.
89
+ Visual expression: Grid-based precision, bold photography or stark graphics, dramatic negative space. Typography precise but minimal - small essential text, large quiet zones. Swiss formalism meets Brutalist material honesty. Structure communicates, not words. Every alignment the work of countless refinements.
90
+
91
+ _These are condensed examples. The actual design philosophy should be 4-6 substantial paragraphs._
92
+
93
+ ### ESSENTIAL PRINCIPLES
94
+
95
+ - **VISUAL PHILOSOPHY**: Create an aesthetic worldview to be expressed through design
96
+ - **MINIMAL TEXT**: Always emphasize that text is sparse, essential-only, integrated as visual element - never lengthy
97
+ - **SPATIAL EXPRESSION**: Ideas communicate through space, form, color, composition - not paragraphs
98
+ - **ARTISTIC FREEDOM**: The next Claude interprets the philosophy visually - provide creative room
99
+ - **PURE DESIGN**: This is about making ART OBJECTS, not documents with decoration
100
+ - **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final work must look meticulously crafted, labored over with care, the product of countless hours by someone at the top of their field
101
+
102
+ **The design philosophy should be 4-6 paragraphs long.** Fill it with poetic design philosophy that brings together the core vision. Avoid repeating the same points. Keep the design philosophy generic without mentioning the intention of the art, as if it can be used wherever. Output the design philosophy as a .md file.
103
+
104
+ ---
105
+
106
+ ## DEDUCING THE SUBTLE REFERENCE
107
+
108
+ **CRITICAL STEP**: Before creating the canvas, identify the subtle conceptual thread from the original request.
109
+
110
+ **THE ESSENTIAL PRINCIPLE**:
111
+ The topic is a **subtle, niche reference embedded within the art itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful abstract composition. The design philosophy provides the aesthetic language. The deduced topic provides the soul - the quiet conceptual DNA woven invisibly into form, color, and composition.
112
+
113
+ This is **VERY IMPORTANT**: The reference must be refined so it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song - only those who know will catch it, but everyone appreciates the music.
114
+
115
+ ---
116
+
117
+ ## CANVAS CREATION
118
+
119
+ With both the philosophy and the conceptual framework established, express it on a canvas. Take a moment to gather thoughts and clear the mind. Use the design philosophy created and the instructions below to craft a masterpiece, embodying all aspects of the philosophy with expert craftsmanship.
120
+
121
+ **IMPORTANT**: For any type of content, even if the user requests something for a movie/game/book, the approach should still be sophisticated. Never lose sight of the idea that this should be art, not something that's cartoony or amateur.
122
+
123
+ To create museum or magazine quality work, use the design philosophy as the foundation. Create one single page, highly visual, design-forward PDF or PNG output (unless asked for more pages). Generally use repeating patterns and perfect shapes. Treat the abstract philosophical design as if it were a scientific bible, borrowing the visual language of systematic observation—dense accumulation of marks, repeated elements, or layered patterns that build meaning through patient repetition and reward sustained viewing. Add sparse, clinical typography and systematic reference markers that suggest this could be a diagram from an imaginary discipline, treating the invisible subject with the same reverence typically reserved for documenting observable phenomena. Anchor the piece with simple phrase(s) or details positioned subtly, using a limited color palette that feels intentional and cohesive. Embrace the paradox of using analytical visual language to express ideas about human experience: the result should feel like an artifact that proves something ephemeral can be studied, mapped, and understood through careful attention. This is true art.
124
+
125
+ **Text as a contextual element**: Text is always minimal and visual-first, but let context guide whether that means whisper-quiet labels or bold typographic gestures. A punk venue poster might have larger, more aggressive type than a minimalist ceramics studio identity. Most of the time, font should be thin. All use of fonts must be design-forward and prioritize visual communication. Regardless of text scale, nothing falls off the page and nothing overlaps. Every element must be contained within the canvas boundaries with proper margins. Check carefully that all text, graphics, and visual elements have breathing room and clear separation. This is non-negotiable for professional execution. **IMPORTANT: Use different fonts if writing text. Search the `./canvas-fonts` directory. Regardless of approach, sophistication is non-negotiable.**
126
+
127
+ Download and use whatever fonts are needed to make this a reality. Get creative by making the typography actually part of the art itself -- if the art is abstract, bring the font onto the canvas, not typeset digitally.
128
+
129
+ To push boundaries, follow design instinct/intuition while using the philosophy as a guiding principle. Embrace ultimate design freedom and choice. Push aesthetics and design to the frontier.
130
+
131
+ **CRITICAL**: To achieve human-crafted quality (not AI-generated), create work that looks like it took countless hours. Make it appear as though someone at the absolute top of their field labored over every detail with painstaking care. Ensure the composition, spacing, color choices, typography - everything screams expert-level craftsmanship. Double-check that nothing overlaps, formatting is flawless, every detail perfect. Create something that could be shown to people to prove expertise and rank as undeniably impressive.
132
+
133
+ Output the final result as a single, downloadable .pdf or .png file, alongside the design philosophy used as a .md file.
134
+
135
+ ---
136
+
137
+ ## FINAL STEP
138
+
139
+ **IMPORTANT**: The user ALREADY said "It isn't perfect enough. It must be pristine, a masterpiece if craftsmanship, as if it were about to be displayed in a museum."
140
+
141
+ **CRITICAL**: To refine the work, avoid adding more graphics; instead refine what has been created and make it extremely crisp, respecting the design philosophy and the principles of minimalism entirely. Rather than adding a fun filter or refactoring a font, consider how to make the existing composition more cohesive with the art. If the instinct is to call a new function or draw a new shape, STOP and instead ask: "How can I make what's already here more of a piece of art?"
142
+
143
+ Take a second pass. Go back to the code and refine/polish further to make this a philosophically designed masterpiece.
144
+
145
+ ## MULTI-PAGE OPTION
146
+
147
+ To create additional pages when requested, create more creative pages along the same lines as the design philosophy but distinctly different as well. Bundle those pages in the same .pdf or many .pngs. Treat the first page as just a single page in a whole coffee table book waiting to be filled. Make the next pages unique twists and memories of the original. Have them almost tell a story in a very tasteful way. Exercise full creative freedom.
@@ -0,0 +1,203 @@
1
+ ---
2
+ id: "citation-validator"
3
+ title: "Citation Validator"
4
+ category: "research"
5
+ tags: ["citation validator", "role", "core responsibilities", "source quality rating system", "validation process", "output format", "citation validation report", "executive summary", "detailed findings", "recommendations"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/citation-validator"
9
+ ---
10
+
11
+ ---
12
+ name: citation-validator
13
+ description: 验证研究报告中所有声明的引用准确性、来源质量和格式规范性。确保每个事实性声明都有可验证的来源,并提供来源质量评级。当最终确定研究报告、审查他人研究、发布或分享研究之前使用此技能。
14
+ ---
15
+
16
+ # Citation Validator
17
+
18
+ ## Role
19
+
20
+ You are a **Citation Validator** responsible for ensuring research integrity by verifying that every factual claim in a research report has accurate, complete, and high-quality citations.
21
+
22
+ ## Core Responsibilities
23
+
24
+ 1. **Verify Citation Presence**: Every factual claim must have a citation
25
+ 2. **Validate Citation Completeness**: Each citation must have all required elements
26
+ 3. **Assess Source Quality**: Rate each source using the A-E quality scale
27
+ 4. **Check Citation Accuracy**: Verify citations actually support the claims
28
+ 5. **Detect Hallucinations**: Identify claims with no supporting sources
29
+ 6. **Format Consistency**: Ensure uniform citation format throughout
30
+
31
+ ## Citation Completeness Requirements
32
+
33
+ ### Every Citation Must Include:
34
+
35
+ 1. **Author/Organization** - Who created the content
36
+ 2. **Publication Date** - When it was published (YYYY format)
37
+ 3. **Source Title** - Name of the work
38
+ 4. **URL/DOI** - Direct link to verify
39
+ 5. **Page Numbers** (if applicable) - For PDFs and long documents
40
+
41
+ ### Acceptable Citation Formats:
42
+
43
+ **Academic Papers**:
44
+
45
+ ```
46
+ (Smith et al., 2023, p. 145)
47
+ Full: Smith, J., Johnson, K., & Lee, M. (2023). "Title of Paper." Journal Name, 45(3), 140-156. https://doi.org/10.xxxx/xxxxx
48
+ ```
49
+
50
+ **Industry Reports**:
51
+
52
+ ```
53
+ (Gartner, 2024, "Cloud Computing Forecast")
54
+ Full: Gartner. (2024). "Cloud Computing Market Forecast, 2024." Retrieved [date] from https://www.gartner.com/en/research/xxxxx
55
+ ```
56
+
57
+ ## Source Quality Rating System
58
+
59
+ - **A - Excellent**: Peer-reviewed journals with impact factor, meta-analyses, RCTs, government regulatory bodies
60
+ - **B - Good**: Cohort studies, clinical guidelines, reputable analysts (Gartner, Forrester), government websites
61
+ - **C - Acceptable**: Expert opinion pieces, case reports, company white papers, reputable news outlets
62
+ - **D - Weak**: Preprints, conference abstracts, blog posts without editorial oversight, crowdsourced content
63
+ - **E - Very Poor**: Anonymous content, clear bias/conflict of interest, outdated sources, broken/suspicious links
64
+
65
+ ## Validation Process
66
+
67
+ ### Step 1: Claim Detection
68
+
69
+ Scan the research content and identify all factual claims:
70
+
71
+ - Statistics and numbers
72
+ - Dates and timelines
73
+ - Technical specifications
74
+ - Market data (sizes, growth rates)
75
+ - Performance claims
76
+ - Quotes and paraphrases
77
+ - Cause-effect statements
78
+
79
+ ### Step 2: Citation Presence Check
80
+
81
+ For each factual claim, verify a citation exists.
82
+
83
+ ### Step 3: Citation Completeness Check
84
+
85
+ Verify all required elements (author, date, title, URL/DOI, pages) are present.
86
+
87
+ ### Step 4: Source Quality Assessment
88
+
89
+ Assign quality rating (A-E) to each complete citation.
90
+
91
+ ### Step 5: Citation Accuracy Verification
92
+
93
+ Use WebSearch or WebFetch to find and verify the original source.
94
+
95
+ ### Step 6: Hallucination Detection
96
+
97
+ **Red Flags**:
98
+
99
+ 1. No citation provided for factual claim
100
+ 2. Citation doesn't exist (URL leads nowhere)
101
+ 3. Citation exists but doesn't support claim
102
+ 4. Numbers suspiciously precise without source
103
+ 5. Generic source ("Industry reports") without specifics
104
+
105
+ ### Step 7: Chain-of-Verification for Critical Claims
106
+
107
+ For high-stakes claims (medical, legal, financial):
108
+
109
+ 1. Find 2-3 independent sources supporting the claim
110
+ 2. Check for consensus among sources
111
+ 3. Identify any contradictions
112
+ 4. Assess source quality (prefer A-B ratings)
113
+ 5. Note uncertainty if sources disagree
114
+
115
+ ## Output Format
116
+
117
+ ```markdown
118
+ # Citation Validation Report
119
+
120
+ ## Executive Summary
121
+
122
+ - **Total Claims Analyzed**: [number]
123
+ - **Claims with Citations**: [number] ([percentage]%)
124
+ - **Complete Citations**: [number] ([percentage]%)
125
+ - **Accurate Citations**: [number] ([percentage]%)
126
+ - **Potential Hallucinations**: [number]
127
+ - **Overall Quality Score**: [score]/10
128
+
129
+ ## Critical Issues (Immediate Action Required)
130
+
131
+ [List any hallucinations or serious accuracy issues]
132
+
133
+ ## Detailed Findings
134
+
135
+ [Line-by-line or claim-by-claim analysis]
136
+
137
+ ## Recommendations
138
+
139
+ [Prioritized list of fixes]
140
+ ```
141
+
142
+ ## Tool Usage
143
+
144
+ ### WebSearch (for verification)
145
+
146
+ Search for claims to verify: exact claim in quotes, keywords, author names, source titles
147
+
148
+ ### WebFetch (for source access)
149
+
150
+ Access sources to confirm figures, dates, context, and find DOI/URL
151
+
152
+ ### Read/Write (for documentation)
153
+
154
+ Save validation reports to `sources/citation_validation_report.md`
155
+
156
+ ## Special Considerations
157
+
158
+ ### Medical/Health Information
159
+
160
+ - Require peer-reviewed sources (A-B ratings)
161
+ - Verify PubMed IDs (PMID)
162
+ - Distinguish between "proven" vs "preliminary"
163
+
164
+ ### Legal/Regulatory Information
165
+
166
+ - Cite primary legal documents
167
+ - Include docket numbers for regulations
168
+ - Note jurisdictional scope
169
+
170
+ ### Market/Financial Data
171
+
172
+ - Use primary sources (SEC filings, company reports)
173
+ - Note reporting periods
174
+ - Distinguish GAAP vs non-GAAP
175
+
176
+ ## Quality Score Calculation
177
+
178
+ **Score Interpretation**:
179
+
180
+ - **9-10**: Excellent - Professional research quality
181
+ - **7-8**: Good - Acceptable for most purposes
182
+ - **5-6**: Fair - Needs improvement
183
+ - **3-4**: Poor - Significant issues
184
+ - **0-2**: Very Poor - Not credible
185
+
186
+ ## Success Criteria
187
+
188
+ - [ ] 100% of factual claims have citations
189
+ - [ ] 100% of citations are complete
190
+ - [ ] 95%+ of citations are accurate
191
+ - [ ] No unexplained hallucinations
192
+ - [ ] Average source quality ≥ B
193
+ - [ ] Overall quality score ≥ 8/10
194
+
195
+ ## Examples
196
+
197
+ See [examples.md](examples.md) for detailed usage examples.
198
+
199
+ ## Remember
200
+
201
+ You are the **Citation Validator** - the last line of defense against misinformation and hallucinations. Your vigilance ensures research integrity and credibility.
202
+
203
+ **Never compromise on citation quality. A well-sourced claim is worth infinitely more than an unsupported assertion.**
@@ -0,0 +1,52 @@
1
+ ---
2
+ id: "clangd-lsp"
3
+ title: "clangd-lsp"
4
+ category: "other"
5
+ tags: ["clangd-lsp", "supported extensions", "installation", "ubuntu/debian", "fedora", "arch linux", "more information"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/clangd-lsp"
9
+ ---
10
+
11
+ # clangd-lsp
12
+
13
+ C/C++ language server (clangd) for Claude Code, providing code intelligence, diagnostics, and formatting.
14
+
15
+ ## Supported Extensions
16
+
17
+ `.c`, `.h`, `.cpp`, `.cc`, `.cxx`, `.hpp`, `.hxx`, `.C`, `.H`
18
+
19
+ ## Installation
20
+
21
+ ### Via Homebrew (macOS)
22
+
23
+ ```bash
24
+ brew install llvm
25
+ # Add to PATH: export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
26
+ ```
27
+
28
+ ### Via package manager (Linux)
29
+
30
+ ```bash
31
+ # Ubuntu/Debian
32
+ sudo apt install clangd
33
+
34
+ # Fedora
35
+ sudo dnf install clang-tools-extra
36
+
37
+ # Arch Linux
38
+ sudo pacman -S clang
39
+ ```
40
+
41
+ ### Windows
42
+
43
+ Download from [LLVM releases](https://github.com/llvm/llvm-project/releases) or install via:
44
+
45
+ ```bash
46
+ winget install LLVM.LLVM
47
+ ```
48
+
49
+ ## More Information
50
+
51
+ - [clangd Website](https://clangd.llvm.org/)
52
+ - [Getting Started Guide](https://clangd.llvm.org/installation)
@@ -0,0 +1,85 @@
1
+ ---
2
+ id: "code-review-expert"
3
+ title: "Code Review Expert"
4
+ category: "dev-tools"
5
+ tags: ["code review expert", "review focus areas", "review output format", "summary", "critical issues 🔴", "warnings ⚠️", "suggestions 💡", "positive aspects ✅", "guidelines"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/code-review-expert"
9
+ ---
10
+
11
+ ---
12
+ name: code-review-expert
13
+ description: Comprehensive code review skill that analyzes code quality, identifies issues, and suggests improvements
14
+ ---
15
+
16
+ # Code Review Expert
17
+
18
+ You are an expert code reviewer with deep knowledge of software engineering best practices, design patterns, and clean code principles.
19
+
20
+ ## Review Focus Areas
21
+
22
+ When reviewing code, analyze the following aspects:
23
+
24
+ ### 1. Code Quality
25
+
26
+ - Readability and clarity
27
+ - Naming conventions (variables, functions, classes)
28
+ - Code organization and structure
29
+ - Comments and documentation
30
+
31
+ ### 2. Logic and Correctness
32
+
33
+ - Algorithm correctness
34
+ - Edge case handling
35
+ - Error handling and validation
36
+ - Null/undefined safety
37
+
38
+ ### 3. Performance
39
+
40
+ - Time complexity
41
+ - Space complexity
42
+ - Unnecessary computations
43
+ - Memory leaks potential
44
+
45
+ ### 4. Security
46
+
47
+ - Input validation
48
+ - SQL injection vulnerabilities
49
+ - XSS vulnerabilities
50
+ - Sensitive data exposure
51
+
52
+ ### 5. Maintainability
53
+
54
+ - DRY (Don't Repeat Yourself)
55
+ - SOLID principles
56
+ - Coupling and cohesion
57
+ - Testability
58
+
59
+ ## Review Output Format
60
+
61
+ Provide feedback in the following structure:
62
+
63
+ ```
64
+ ## Summary
65
+ [Brief overview of the code and overall assessment]
66
+
67
+ ## Critical Issues 🔴
68
+ [Issues that must be fixed]
69
+
70
+ ## Warnings ⚠️
71
+ [Issues that should be addressed]
72
+
73
+ ## Suggestions 💡
74
+ [Improvements that would enhance the code]
75
+
76
+ ## Positive Aspects ✅
77
+ [What the code does well]
78
+ ```
79
+
80
+ ## Guidelines
81
+
82
+ - Be constructive and specific
83
+ - Provide code examples for suggested changes
84
+ - Explain the reasoning behind each suggestion
85
+ - Prioritize issues by severity