@brookmind/ai-toolkit 1.0.0

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 (105) hide show
  1. package/README.md +54 -0
  2. package/agents/code-reviewer.md +30 -0
  3. package/bin/cli.js +5 -0
  4. package/mcps/context7/.claude-plugin +1 -0
  5. package/mcps/context7/README.md +1 -0
  6. package/mcps/context7/server.json +1 -0
  7. package/mcps/expo-mcp/README.md +33 -0
  8. package/mcps/expo-mcp/package.json +30 -0
  9. package/mcps/figma-mcp/.mcp.json +12 -0
  10. package/mcps/figma-mcp/README.md +554 -0
  11. package/mcps/figma-mcp/server.json +17 -0
  12. package/mcps/figma-mcp/skills/code-connect-components +1 -0
  13. package/mcps/figma-mcp/skills/create-design-system-rules +1 -0
  14. package/mcps/figma-mcp/skills/implement-design +1 -0
  15. package/mcps/pg-aiguide/.claude-plugin +1 -0
  16. package/mcps/pg-aiguide/CLAUDE.md +21 -0
  17. package/mcps/pg-aiguide/README.md +275 -0
  18. package/mcps/pg-aiguide/skills/design-postgres-tables +1 -0
  19. package/mcps/pg-aiguide/skills/find-hypertable-candidates +1 -0
  20. package/mcps/pg-aiguide/skills/migrate-postgres-tables-to-hypertables +1 -0
  21. package/mcps/pg-aiguide/skills/setup-timescaledb-hypertables +1 -0
  22. package/mcps/pg-aiguide/skills.yaml +4 -0
  23. package/package.json +42 -0
  24. package/skills/cloudflare-cli/SKILL.md +151 -0
  25. package/skills/docx/LICENSE.txt +30 -0
  26. package/skills/docx/SKILL.md +197 -0
  27. package/skills/docx/docx-js.md +350 -0
  28. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  29. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  30. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  31. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  32. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  33. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  34. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  35. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  36. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  37. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  38. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  39. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  40. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  41. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  42. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  43. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  44. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  45. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  46. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  47. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  48. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  49. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  50. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  51. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  52. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  53. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  54. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  55. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  56. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  57. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  58. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  59. package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  60. package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  61. package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  62. package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  63. package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  64. package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  65. package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  66. package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  67. package/skills/docx/ooxml/scripts/pack.py +159 -0
  68. package/skills/docx/ooxml/scripts/unpack.py +29 -0
  69. package/skills/docx/ooxml/scripts/validate.py +69 -0
  70. package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  71. package/skills/docx/ooxml/scripts/validation/base.py +951 -0
  72. package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
  73. package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  74. package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  75. package/skills/docx/ooxml.md +610 -0
  76. package/skills/docx/scripts/__init__.py +1 -0
  77. package/skills/docx/scripts/document.py +1276 -0
  78. package/skills/docx/scripts/templates/comments.xml +3 -0
  79. package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
  80. package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  81. package/skills/docx/scripts/templates/commentsIds.xml +3 -0
  82. package/skills/docx/scripts/templates/people.xml +3 -0
  83. package/skills/docx/scripts/utilities.py +374 -0
  84. package/skills/github-cli/SKILL.md +125 -0
  85. package/skills/pdf/LICENSE.txt +30 -0
  86. package/skills/pdf/SKILL.md +294 -0
  87. package/skills/pdf/forms.md +205 -0
  88. package/skills/pdf/reference.md +612 -0
  89. package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
  90. package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  91. package/skills/pdf/scripts/check_fillable_fields.py +12 -0
  92. package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  93. package/skills/pdf/scripts/create_validation_image.py +41 -0
  94. package/skills/pdf/scripts/extract_form_field_info.py +152 -0
  95. package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
  96. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  97. package/skills/skill-creator/LICENSE.txt +202 -0
  98. package/skills/skill-creator/SKILL.md +209 -0
  99. package/skills/skill-creator/scripts/init_skill.py +303 -0
  100. package/skills/skill-creator/scripts/package_skill.py +110 -0
  101. package/skills/skill-creator/scripts/quick_validate.py +65 -0
  102. package/skills/xlsx/LICENSE.txt +30 -0
  103. package/skills/xlsx/SKILL.md +289 -0
  104. package/skills/xlsx/recalc.py +178 -0
  105. package/src/index.js +181 -0
package/README.md ADDED
@@ -0,0 +1,54 @@
1
+ # CKW AI Toolkit
2
+
3
+ A collection of agents, skills, and MCPs for Claude Code and OpenCode.
4
+
5
+ ## Quick Install
6
+
7
+ ```bash
8
+ npx @brookmind/ai-toolkit
9
+ ```
10
+
11
+ The interactive installer will guide you through selecting:
12
+ - **Platform**: Claude Code, OpenCode, or Both
13
+ - **Agents**: AI assistants for specific tasks
14
+ - **Skills**: Extended capabilities and workflows
15
+ - **MCPs**: Model Context Protocol servers
16
+
17
+ ## What's Included
18
+
19
+ ### Agents
20
+ - `code-reviewer` - Expert code review for quality and security
21
+
22
+ ### Skills
23
+ - `cloudflare-cli` - Cloudflare Workers, KV, D1, R2 operations
24
+ - `github-cli` - GitHub operations (issues, PRs, releases)
25
+ - `docx` - Word document manipulation
26
+ - `pdf` - PDF processing and forms
27
+ - `xlsx` - Spreadsheet operations
28
+ - `skill-creator` - Create new skills
29
+
30
+ ### MCPs
31
+ - `context7` - Up-to-date library documentation
32
+ - `expo-mcp` - Expo/React Native utilities
33
+ - `figma-mcp` - Figma design integration
34
+ - `pg-aiguide` - PostgreSQL assistance
35
+
36
+ ## Manual Installation
37
+
38
+ Clone and run locally:
39
+
40
+ ```bash
41
+ git clone https://github.com/davidcastillog/ai-toolkit.git
42
+ cd ai-toolkit
43
+ npm install
44
+ npm start
45
+ ```
46
+
47
+ ## Requirements
48
+
49
+ - Node.js 18+
50
+ - Claude Code and/or OpenCode installed
51
+
52
+ ## License
53
+
54
+ MIT
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: code-reviewer
3
+ description: Expert code review specialist for quality, security, and maintainability. Use PROACTIVELY after writing or modifying code to ensure high development standards.
4
+ tools: Read, Write, Edit, Bash, Grep
5
+ model: sonnet
6
+ ---
7
+
8
+ You are a senior code reviewer ensuring high standards of code quality and security.
9
+
10
+ When invoked:
11
+ 1. Run git diff to see recent changes
12
+ 2. Focus on modified files
13
+ 3. Begin review immediately
14
+
15
+ Review checklist:
16
+ - Code is simple and readable
17
+ - Functions and variables are well-named
18
+ - No duplicated code
19
+ - Proper error handling
20
+ - No exposed secrets or API keys
21
+ - Input validation implemented
22
+ - Good test coverage
23
+ - Performance considerations addressed
24
+
25
+ Provide feedback organized by priority:
26
+ - Critical issues (must fix)
27
+ - Warnings (should fix)
28
+ - Suggestions (consider improving)
29
+
30
+ Include specific examples of how to fix issues.
package/bin/cli.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { run } from '../src/index.js';
4
+
5
+ run().catch(console.error);
@@ -0,0 +1 @@
1
+ 404: Not Found
@@ -0,0 +1 @@
1
+ 404: Not Found
@@ -0,0 +1 @@
1
+ 404: Not Found
@@ -0,0 +1,33 @@
1
+ # Expo MCP Monorepo
2
+
3
+ This monorepo contains MCP local utilities for Expo development.
4
+
5
+ ## Packages
6
+
7
+ ### `expo-mcp`
8
+
9
+ The main Expo MCP local capabilities provider that provides MCP tools and prompts for Expo development.
10
+
11
+ ### `@expo/mcp-tunnel`
12
+
13
+ Tunnel functionality for MCP servers that provides WebSocket-based transport for remote MCP connections.
14
+
15
+ ## Development
16
+
17
+ ### Setup
18
+
19
+ ```bash
20
+ bun install
21
+ ```
22
+
23
+ ### Build
24
+
25
+ ```bash
26
+ bun run build
27
+ ```
28
+
29
+ ### Lint
30
+
31
+ ```bash
32
+ bun run lint
33
+ ```
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "expo-mcp-monorepo",
3
+ "private": true,
4
+ "workspaces": {
5
+ "packages": [
6
+ "packages/*"
7
+ ],
8
+ "catalog": {
9
+ "@modelcontextprotocol/sdk": "^1.17.5",
10
+ "@types/bun": "^1.2.21",
11
+ "@types/node": "^22.18.0",
12
+ "@types/ws": "^8.18.1",
13
+ "memfs": "^4.50.0",
14
+ "prettier": "^3.6.2",
15
+ "typescript": "^5.9.2",
16
+ "ws": "^8.18.3",
17
+ "zod": "^3.25.76"
18
+ }
19
+ },
20
+ "devDependencies": {
21
+ "eslint": "^9.34.0",
22
+ "eslint-config-universe": "^15.0.3"
23
+ },
24
+ "scripts": {
25
+ "build": "bun run --filter ./packages/mcp-tunnel build && bun run --filter ./packages/expo-mcp build",
26
+ "lint": "bun run --filter '*' lint",
27
+ "test": "bun run --filter '*' test",
28
+ "prepublishOnly": "bun run build"
29
+ }
30
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "mcpServers": {
3
+ "figma": {
4
+ "type": "http",
5
+ "url": "https://mcp.figma.com/mcp"
6
+ },
7
+ "figma-desktop": {
8
+ "type": "http",
9
+ "url": "http://127.0.0.1:3845/mcp"
10
+ }
11
+ }
12
+ }