foliko 1.0.87 → 1.1.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.
- package/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
- package/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
- package/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
- package/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
- package/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
- package/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
- package/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
- package/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-313.pyc +0 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +1067 -0
- package/.agent/.shared/ui-ux-pro-max/scripts/search.py +106 -0
- package/.agent/ARCHITECTURE.md +288 -0
- package/.agent/agents/ambient-agent.md +57 -0
- package/.agent/agents/debugger.md +55 -0
- package/.agent/agents/email-assistant.md +49 -0
- package/.agent/agents/file-manager.md +42 -0
- package/.agent/agents/python-developer.md +60 -0
- package/.agent/agents/scheduler.md +59 -0
- package/.agent/agents/web-developer.md +45 -0
- package/.agent/data/default.json +325 -21
- package/.agent/data/plugins-state.json +194 -162
- package/.agent/data/puppeteer-sessions/undefined.json +6 -0
- package/.agent/mcp_config.json +0 -1
- package/.agent/mcp_config_updated.json +12 -0
- package/.agent/plugins/poster-plugin/README.md +304 -0
- package/.agent/plugins/poster-plugin/fonts/NotoColorEmoji-Regular.ttf +0 -0
- package/.agent/plugins/poster-plugin/fonts/PatuaOne-Regular.ttf +0 -0
- package/.agent/plugins/poster-plugin/fonts//345/276/256/350/275/257/351/233/205/351/273/221.ttf +0 -0
- package/.agent/plugins/poster-plugin/fonts//345/276/256/350/275/257/351/233/205/351/273/221/347/262/227/344/275/223.ttf +0 -0
- package/.agent/plugins/poster-plugin/index.js +13 -0
- package/.agent/plugins/poster-plugin/package.json +28 -0
- package/.agent/plugins/poster-plugin/src/canvas.js +161 -0
- package/.agent/plugins/poster-plugin/src/components/arrow.js +84 -0
- package/.agent/plugins/poster-plugin/src/components/avatar.js +71 -0
- package/.agent/plugins/poster-plugin/src/components/badge.js +85 -0
- package/.agent/plugins/poster-plugin/src/components/card.js +88 -0
- package/.agent/plugins/poster-plugin/src/components/chart.js +127 -0
- package/.agent/plugins/poster-plugin/src/components/chip.js +88 -0
- package/.agent/plugins/poster-plugin/src/components/columns.js +107 -0
- package/.agent/plugins/poster-plugin/src/components/cta.js +85 -0
- package/.agent/plugins/poster-plugin/src/components/divider.js +55 -0
- package/.agent/plugins/poster-plugin/src/components/feature.js +85 -0
- package/.agent/plugins/poster-plugin/src/components/featureGrid.js +112 -0
- package/.agent/plugins/poster-plugin/src/components/grid.js +118 -0
- package/.agent/plugins/poster-plugin/src/components/imageFrame.js +155 -0
- package/.agent/plugins/poster-plugin/src/components/index.js +62 -0
- package/.agent/plugins/poster-plugin/src/components/listItem.js +146 -0
- package/.agent/plugins/poster-plugin/src/components/notification.js +123 -0
- package/.agent/plugins/poster-plugin/src/components/progress.js +79 -0
- package/.agent/plugins/poster-plugin/src/components/progressCircle.js +117 -0
- package/.agent/plugins/poster-plugin/src/components/quote.js +97 -0
- package/.agent/plugins/poster-plugin/src/components/rating.js +85 -0
- package/.agent/plugins/poster-plugin/src/components/star.js +70 -0
- package/.agent/plugins/poster-plugin/src/components/statCard.js +105 -0
- package/.agent/plugins/poster-plugin/src/components/stepper.js +118 -0
- package/.agent/plugins/poster-plugin/src/components/table.js +159 -0
- package/.agent/plugins/poster-plugin/src/components/tagCloud.js +78 -0
- package/.agent/plugins/poster-plugin/src/components/timeline.js +105 -0
- package/.agent/plugins/poster-plugin/src/components/watermark.js +52 -0
- package/.agent/plugins/poster-plugin/src/composer.js +1904 -0
- package/.agent/plugins/poster-plugin/src/elements/artText.js +60 -0
- package/.agent/plugins/poster-plugin/src/elements/background.js +52 -0
- package/.agent/plugins/poster-plugin/src/elements/circle.js +31 -0
- package/.agent/plugins/poster-plugin/src/elements/image.js +71 -0
- package/.agent/plugins/poster-plugin/src/elements/index.js +26 -0
- package/.agent/plugins/poster-plugin/src/elements/line.js +23 -0
- package/.agent/plugins/poster-plugin/src/elements/polygon.js +63 -0
- package/.agent/plugins/poster-plugin/src/elements/rectangle.js +32 -0
- package/.agent/plugins/poster-plugin/src/elements/svg.js +92 -0
- package/.agent/plugins/poster-plugin/src/elements/text.js +107 -0
- package/.agent/plugins/poster-plugin/src/fonts.js +233 -0
- package/.agent/plugins/poster-plugin/src/index.js +1658 -0
- package/.agent/plugins/poster-plugin/src/presets.js +36 -0
- package/.agent/plugins/poster-plugin/src/templates/business.js +60 -0
- package/.agent/plugins/poster-plugin/src/templates/gradient.js +64 -0
- package/.agent/plugins/poster-plugin/src/templates/index.js +43 -0
- package/.agent/plugins/poster-plugin/src/templates/modern.js +69 -0
- package/.agent/plugins/poster-plugin/src/templates/simple.js +58 -0
- package/.agent/plugins/poster-plugin/src/templates/social.js +62 -0
- package/.agent/plugins/poster-plugin/src/templates/tech.js +84 -0
- package/.agent/plugins/{temp-repo/puppeteer-plugin → puppeteer-plugin}/index.js +1 -1
- package/.agent/plugins.json +5 -11
- package/.agent/rules/GEMINI.md +273 -0
- package/.agent/rules/allow-rule.md +77 -0
- package/.agent/rules/log-rule.md +83 -0
- package/.agent/rules/security-rule.md +93 -0
- package/.agent/scripts/auto_preview.py +148 -0
- package/.agent/scripts/checklist.py +217 -0
- package/.agent/scripts/session_manager.py +120 -0
- package/.agent/scripts/verify_all.py +327 -0
- package/.agent/sessions/cli_default.json +419 -0
- package/.agent/sessions/weixin_o9cq80zgZqKPA2-s59PN43GdDy1w@im.wechat.json +2195 -0
- package/.agent/skills/api-patterns/SKILL.md +81 -0
- package/.agent/skills/api-patterns/api-style.md +42 -0
- package/.agent/skills/api-patterns/auth.md +24 -0
- package/.agent/skills/api-patterns/documentation.md +26 -0
- package/.agent/skills/api-patterns/graphql.md +41 -0
- package/.agent/skills/api-patterns/rate-limiting.md +31 -0
- package/.agent/skills/api-patterns/response.md +37 -0
- package/.agent/skills/api-patterns/rest.md +40 -0
- package/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
- package/.agent/skills/api-patterns/security-testing.md +122 -0
- package/.agent/skills/api-patterns/trpc.md +41 -0
- package/.agent/skills/api-patterns/versioning.md +22 -0
- package/.agent/skills/app-builder/SKILL.md +75 -0
- package/.agent/skills/app-builder/agent-coordination.md +71 -0
- package/.agent/skills/app-builder/feature-building.md +53 -0
- package/.agent/skills/app-builder/project-detection.md +34 -0
- package/.agent/skills/app-builder/scaffolding.md +118 -0
- package/.agent/skills/app-builder/tech-stack.md +40 -0
- package/.agent/skills/app-builder/templates/SKILL.md +39 -0
- package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
- package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
- package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
- package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
- package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
- package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
- package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
- package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
- package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
- package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
- package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
- package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
- package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
- package/.agent/skills/architecture/SKILL.md +55 -0
- package/.agent/skills/architecture/context-discovery.md +43 -0
- package/.agent/skills/architecture/examples.md +94 -0
- package/.agent/skills/architecture/pattern-selection.md +68 -0
- package/.agent/skills/architecture/patterns-reference.md +50 -0
- package/.agent/skills/architecture/trade-off-analysis.md +77 -0
- package/.agent/skills/clean-code/SKILL.md +201 -0
- package/.agent/skills/doc.md +177 -0
- package/.agent/skills/frontend-design/SKILL.md +418 -0
- package/.agent/skills/frontend-design/animation-guide.md +331 -0
- package/.agent/skills/frontend-design/color-system.md +311 -0
- package/.agent/skills/frontend-design/decision-trees.md +418 -0
- package/.agent/skills/frontend-design/motion-graphics.md +306 -0
- package/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
- package/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
- package/.agent/skills/frontend-design/typography-system.md +345 -0
- package/.agent/skills/frontend-design/ux-psychology.md +1116 -0
- package/.agent/skills/frontend-design/visual-effects.md +383 -0
- package/.agent/skills/i18n-localization/SKILL.md +154 -0
- package/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
- package/.agent/skills/mcp-builder/SKILL.md +176 -0
- package/.agent/skills/web-design-guidelines/SKILL.md +57 -0
- package/.agent/workflows/brainstorm.md +113 -0
- package/.agent/workflows/create.md +59 -0
- package/.agent/workflows/debug.md +103 -0
- package/.agent/workflows/deploy.md +176 -0
- package/.agent/workflows/enhance.md +63 -0
- package/.agent/workflows/orchestrate.md +237 -0
- package/.agent/workflows/plan.md +89 -0
- package/.agent/workflows/preview.md +81 -0
- package/.agent/workflows/simple-test.md +42 -0
- package/.agent/workflows/status.md +86 -0
- package/.agent/workflows/structured-orchestrate.md +180 -0
- package/.agent/workflows/test.md +144 -0
- package/.agent/workflows/ui-ux-pro-max.md +296 -0
- package/.claude/settings.local.json +20 -8
- package/.env.example +56 -56
- package/CLAUDE.md +144 -108
- package/README.md +441 -441
- package/calc_tokens_weixin.js +81 -0
- package/cli/src/commands/chat.js +2 -1
- package/docs/CONTEXT_DESIGN.md +1596 -0
- package/examples/test-concurrent-chat.js +60 -60
- package/foliko-creative-3.png +0 -0
- package/foliko-creative-4.png +0 -0
- package/foliko-creative-5.png +0 -0
- package/package.json +2 -2
- package/plugins/default-plugins.js +2 -1
- package/plugins/extension-executor-plugin.js +91 -2
- package/plugins/file-system-plugin.js +2 -2
- package/plugins/memory-plugin.js +984 -0
- package/plugins/session-plugin.js +57 -1
- package/plugins/weixin-plugin.js +33 -23
- package/skills/find-skills/AGENTS.md +162 -162
- package/skills/find-skills/SKILL.md +133 -133
- package/skills/poster-guide/SKILL.md +1059 -0
- package/skills/python-plugin-dev/SKILL.md +238 -238
- package/skills/skill-guide/SKILL.md +130 -108
- package/src/capabilities/skill-manager.js +99 -0
- package/src/core/agent-chat.js +620 -141
- package/src/core/agent-context.js +188 -0
- package/src/core/agent.js +6 -2
- package/src/core/context-manager.js +283 -0
- package/src/core/framework.js +264 -3
- package/src/core/plugin-manager.js +79 -2
- package/src/core/request-context.js +98 -0
- package/src/core/session-context.js +341 -0
- package/src/core/session-storage.js +274 -0
- package/src/executors/mcp-executor.js +2 -2
- package/src/utils/index.js +239 -67
- package/src/utils/plugin-helpers.js +17 -0
- package/story-cover-book-v2.png +0 -0
- package/story-cover-japanese-1.png +0 -0
- package/story-cover-japanese-2.png +0 -0
- package/story-cover-japanese-3.png +0 -0
- package/story-cover-moran.png +0 -0
- package/undefined.png +0 -0
- package//346/265/267/346/212/245/346/217/222/344/273/266.md +621 -0
- package/.agent/agents/code-assistant.json +0 -14
- package/.agent/agents/email-assistant.json +0 -14
- package/.agent/agents/file-assistant.json +0 -15
- package/.agent/agents/system-assistant.json +0 -15
- package/.agent/agents/web-assistant.json +0 -12
- package/.agent/data/ambient/goals.json +0 -50
- package/.agent/data/ambient/memories.json +0 -7
- package/.agent/data/scheduler/tasks.json +0 -1
- package/.agent/package.json +0 -8
- package/.agent/plugins/__pycache__/test_plugin.cpython-312.pyc +0 -0
- package/.agent/plugins/daytona/README.md +0 -89
- package/.agent/plugins/daytona/index.js +0 -377
- package/.agent/plugins/daytona/package.json +0 -12
- package/.agent/plugins/marknative/README.md +0 -134
- package/.agent/plugins/marknative/index.js +0 -228
- package/.agent/plugins/marknative/package.json +0 -12
- package/.agent/plugins/marknative/update-readme.js +0 -134
- package/.agent/plugins/system-info/index.js +0 -387
- package/.agent/plugins/system-info/package.json +0 -4
- package/.agent/plugins/system-info/test.js +0 -40
- package/.agent/plugins/temp-repo/LICENSE +0 -201
- package/.agent/plugins/test_plugin.py +0 -304
- package/.agent/python-scripts/test_sample.py +0 -24
- package/.agent/skills/agent-browser/SKILL.md +0 -311
- package/.agent/skills/agent-browser/TEST_PLAN.md +0 -200
- package/.agent/skills/sysinfo/SKILL.md +0 -38
- package/.agent/skills/sysinfo/system-info.sh +0 -130
- package/.agent/skills/workflow/SKILL.md +0 -324
- package/.agent/workflows/email-digest.json +0 -50
- package/.agent/workflows/file-backup.json +0 -21
- package/.agent/workflows/get-ip-notify.json +0 -32
- package/.agent/workflows/news-aggregator.json +0 -93
- package/.agent/workflows/news-dashboard-v2.json +0 -94
- package/.agent/workflows/notification-batch.json +0 -32
- package/examples/test-chat-debug.js +0 -102
- package/examples/test-chat-result.js +0 -76
- package/examples/test-chat-stream-diff.js +0 -63
- /package/.agent/plugins/{temp-repo/puppeteer-plugin → puppeteer-plugin}/README.md +0 -0
- /package/.agent/plugins/{temp-repo/puppeteer-plugin → puppeteer-plugin}/package.json +0 -0
|
@@ -7,157 +7,69 @@
|
|
|
7
7
|
"enabled": true,
|
|
8
8
|
"config": {}
|
|
9
9
|
},
|
|
10
|
-
"
|
|
10
|
+
"ai": {
|
|
11
|
+
"enabled": true
|
|
12
|
+
},
|
|
13
|
+
"storage": {
|
|
11
14
|
"enabled": true,
|
|
12
|
-
"config": {
|
|
15
|
+
"config": {
|
|
16
|
+
"type": "json",
|
|
17
|
+
"path": ".agent/data",
|
|
18
|
+
"namespace": "default"
|
|
19
|
+
}
|
|
13
20
|
},
|
|
14
|
-
"
|
|
21
|
+
"tools": {
|
|
15
22
|
"enabled": true,
|
|
16
23
|
"config": {}
|
|
17
24
|
},
|
|
18
|
-
"
|
|
25
|
+
"workflow": {
|
|
19
26
|
"enabled": true,
|
|
20
27
|
"config": {}
|
|
21
28
|
},
|
|
22
|
-
"
|
|
29
|
+
"skill-manager": {
|
|
23
30
|
"enabled": true,
|
|
24
|
-
"config": {
|
|
25
|
-
"agentsDir": ".agent/agents",
|
|
26
|
-
"agents": [
|
|
27
|
-
{
|
|
28
|
-
"name": "code-assistant",
|
|
29
|
-
"description": "代码助手 - 专业的编程和代码分析助手",
|
|
30
|
-
"instructions": "你是一个专业的代码助手,精通多种编程语言和开发技术。\n\n【核心能力】\n- 代码编写、调试和优化\n- 代码审查和重构建议\n- 多种编程语言支持(Python、JavaScript、TypeScript、Java等)\n- 代码问题诊断和解决\n- 解释复杂代码逻辑\n\n【工作原则】\n- 提供清晰、规范的代码\n- 包含必要的注释说明\n- 考虑代码性能和安全性\n- 遵循最佳实践",
|
|
31
|
-
"tools": [
|
|
32
|
-
"read_file",
|
|
33
|
-
"write_file",
|
|
34
|
-
"modify_file",
|
|
35
|
-
"search_file",
|
|
36
|
-
"python-execute",
|
|
37
|
-
"execute_command",
|
|
38
|
-
"shell"
|
|
39
|
-
],
|
|
40
|
-
"_fromDir": true
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"name": "email-assistant",
|
|
44
|
-
"description": "邮件助手 - 专业的邮件管理助手",
|
|
45
|
-
"instructions": "你是一个专业的邮件助手,擅长邮件的读写、筛选和管理。\n\n【核心能力】\n- 读取和回复邮件\n- 发送新邮件(支持附件)\n- 邮件搜索和筛选\n- 邮件摘要生成\n- 批量邮件处理\n\n【工作原则】\n- 保持邮件格式规范\n- 回复内容专业得体\n- 保护隐私信息\n- 及时处理重要邮件",
|
|
46
|
-
"tools": [
|
|
47
|
-
"email_read",
|
|
48
|
-
"email_send",
|
|
49
|
-
"email_mark_read",
|
|
50
|
-
"email_delete",
|
|
51
|
-
"email_unread_count",
|
|
52
|
-
"email_configure",
|
|
53
|
-
"notification_send"
|
|
54
|
-
],
|
|
55
|
-
"_fromDir": true
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"name": "file-assistant",
|
|
59
|
-
"description": "文件助手 - 专业的文件管理和操作助手",
|
|
60
|
-
"instructions": "你是一个专业的文件助手,擅长文件操作、目录管理、文件搜索和内容编辑。\n\n【核心能力】\n- 读取、创建、编辑、删除文件和目录\n- 搜索文件内容和文件名称\n- 批量文件操作\n- 文件内容分析和提取\n\n【工作原则】\n- 执行操作前确认路径正确\n- 危险操作(如删除)需要谨慎\n- 保持文件编码一致性\n- 重要文件操作前可创建备份",
|
|
61
|
-
"tools": [
|
|
62
|
-
"read_file",
|
|
63
|
-
"write_file",
|
|
64
|
-
"delete_file",
|
|
65
|
-
"modify_file",
|
|
66
|
-
"search_file",
|
|
67
|
-
"read_directory",
|
|
68
|
-
"create_directory",
|
|
69
|
-
"execute_command"
|
|
70
|
-
],
|
|
71
|
-
"_fromDir": true
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "system-assistant",
|
|
75
|
-
"description": "系统助手 - 专业的系统信息监控和管理助手",
|
|
76
|
-
"instructions": "你是一个专业的系统助手,精通系统信息监控和基础管理。\n\n【核心能力】\n- CPU、内存、磁盘使用情况监控\n- 网络接口信息查询\n- 系统运行状态分析\n- 性能问题诊断\n- 定时监控和报告\n\n【工作原则】\n- 提供清晰的数据展示\n- 发现异常及时提醒\n- 给出合理的优化建议\n- 保护系统安全",
|
|
77
|
-
"tools": [
|
|
78
|
-
"get_basic_info",
|
|
79
|
-
"get_cpu_info",
|
|
80
|
-
"get_memory_info",
|
|
81
|
-
"get_disk_info",
|
|
82
|
-
"get_network_info",
|
|
83
|
-
"get_full_system_info",
|
|
84
|
-
"notification_send",
|
|
85
|
-
"schedule_task"
|
|
86
|
-
],
|
|
87
|
-
"_fromDir": true
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"name": "web-assistant",
|
|
91
|
-
"description": "网络助手 - 专业的网络数据获取和处理助手",
|
|
92
|
-
"instructions": "你是一个专业的网络助手,精通网络数据获取和处理。\n\n【核心能力】\n- HTTP请求发送(GET/POST/PUT/DELETE等)\n- 网页内容抓取和解析\n- API调用和数据处理\n- JSON/XML数据解析\n- 网络问题诊断\n\n【工作原则】\n- 遵守网站使用协议\n- 合理控制请求频率\n- 数据处理规范\n- 异常情况妥善处理",
|
|
93
|
-
"tools": [
|
|
94
|
-
"fetch",
|
|
95
|
-
"web_request",
|
|
96
|
-
"execute_command",
|
|
97
|
-
"python-execute",
|
|
98
|
-
"notification_send"
|
|
99
|
-
],
|
|
100
|
-
"_fromDir": true
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
}
|
|
31
|
+
"config": {}
|
|
104
32
|
},
|
|
105
|
-
"
|
|
33
|
+
"mcp-executor": {
|
|
106
34
|
"enabled": true,
|
|
107
35
|
"config": {}
|
|
108
36
|
},
|
|
109
|
-
"
|
|
110
|
-
"enabled": true
|
|
111
|
-
},
|
|
112
|
-
"ambient": {
|
|
37
|
+
"shell-executor": {
|
|
113
38
|
"enabled": true,
|
|
114
39
|
"config": {
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"cooldownPeriod": 3000,
|
|
118
|
-
"persistencePath": ".agent/data/ambient",
|
|
119
|
-
"defaultGoals": []
|
|
40
|
+
"timeout": 60000,
|
|
41
|
+
"workingDir": "D:\\code\\vb-agent"
|
|
120
42
|
}
|
|
121
43
|
},
|
|
122
|
-
"
|
|
44
|
+
"python-executor": {
|
|
123
45
|
"enabled": true,
|
|
124
46
|
"config": {
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
47
|
+
"pythonPath": "python",
|
|
48
|
+
"timeout": 120000,
|
|
49
|
+
"baseDir": ".agent/python-scripts",
|
|
50
|
+
"pipPath": null
|
|
128
51
|
}
|
|
129
52
|
},
|
|
130
|
-
"
|
|
131
|
-
"enabled": false,
|
|
132
|
-
"config": {}
|
|
133
|
-
},
|
|
134
|
-
"extension-executor": {
|
|
53
|
+
"session": {
|
|
135
54
|
"enabled": true,
|
|
136
|
-
"config": {}
|
|
137
|
-
},
|
|
138
|
-
"feishu": {
|
|
139
|
-
"enabled": false,
|
|
140
55
|
"config": {
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
56
|
+
"sessionTTL": 1800000,
|
|
57
|
+
"maxSessions": 100,
|
|
58
|
+
"maxHistoryLength": 150,
|
|
59
|
+
"autoCleanup": true,
|
|
60
|
+
"cleanupInterval": 300000,
|
|
61
|
+
"persistToStorage": true,
|
|
62
|
+
"onSessionStart": null,
|
|
63
|
+
"onSessionEnd": null,
|
|
64
|
+
"onSessionCreated": null
|
|
144
65
|
}
|
|
145
66
|
},
|
|
146
|
-
"
|
|
147
|
-
"enabled": true,
|
|
148
|
-
"config": {}
|
|
149
|
-
},
|
|
150
|
-
"gate-trading": {
|
|
151
|
-
"enabled": true,
|
|
152
|
-
"config": {}
|
|
153
|
-
},
|
|
154
|
-
"python-executor": {
|
|
67
|
+
"audit": {
|
|
155
68
|
"enabled": true,
|
|
156
69
|
"config": {
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"pipPath": null
|
|
70
|
+
"maxLogs": 1000,
|
|
71
|
+
"retentionDays": 30,
|
|
72
|
+
"logDir": ".agent/logs"
|
|
161
73
|
}
|
|
162
74
|
},
|
|
163
75
|
"rules": {
|
|
@@ -174,82 +86,202 @@
|
|
|
174
86
|
"persistencePath": ".agent/data/scheduler"
|
|
175
87
|
}
|
|
176
88
|
},
|
|
177
|
-
"
|
|
89
|
+
"file-system": {
|
|
178
90
|
"enabled": true,
|
|
179
|
-
"config": {
|
|
180
|
-
"sessionTTL": 1800000,
|
|
181
|
-
"maxSessions": 100,
|
|
182
|
-
"maxHistoryLength": 150,
|
|
183
|
-
"autoCleanup": true,
|
|
184
|
-
"cleanupInterval": 300000,
|
|
185
|
-
"persistToStorage": true
|
|
186
|
-
}
|
|
91
|
+
"config": {}
|
|
187
92
|
},
|
|
188
|
-
"
|
|
93
|
+
"think": {
|
|
189
94
|
"enabled": true,
|
|
190
95
|
"config": {
|
|
191
|
-
"
|
|
192
|
-
"
|
|
96
|
+
"autoReflect": false,
|
|
97
|
+
"reflectDelay": 2000,
|
|
98
|
+
"maxReflectDepth": 3,
|
|
99
|
+
"enableContinuous": false
|
|
193
100
|
}
|
|
194
101
|
},
|
|
195
|
-
"
|
|
102
|
+
"python-plugin-loader": {
|
|
196
103
|
"enabled": true,
|
|
197
|
-
"config": {
|
|
198
|
-
"type": "json",
|
|
199
|
-
"path": ".agent/data",
|
|
200
|
-
"namespace": "default"
|
|
201
|
-
}
|
|
104
|
+
"config": {}
|
|
202
105
|
},
|
|
203
106
|
"telegram": {
|
|
204
107
|
"enabled": false,
|
|
205
108
|
"config": {
|
|
206
|
-
"botToken": "
|
|
109
|
+
"botToken": "1980700161:AAHQQxKRAyg6-MuOTZDIj7x9WjEdIaGhK5I",
|
|
207
110
|
"allowedChats": [],
|
|
208
111
|
"groupMode": false,
|
|
209
|
-
"prefix": "/"
|
|
112
|
+
"prefix": "/",
|
|
113
|
+
"systemPrompt": "你是一个有帮助的AI助手。"
|
|
210
114
|
}
|
|
211
115
|
},
|
|
212
|
-
"
|
|
213
|
-
"enabled":
|
|
116
|
+
"weixin": {
|
|
117
|
+
"enabled": false,
|
|
214
118
|
"config": {
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
119
|
+
"forceLogin": false,
|
|
120
|
+
"qrcodeTerminal": true,
|
|
121
|
+
"allowedUsers": [],
|
|
122
|
+
"systemPrompt": "你是一个有帮助的AI助手。回复内容不要使用markdown格式文本"
|
|
219
123
|
}
|
|
220
124
|
},
|
|
221
|
-
"
|
|
125
|
+
"email": {
|
|
222
126
|
"enabled": true,
|
|
223
127
|
"config": {}
|
|
224
128
|
},
|
|
225
|
-
"
|
|
129
|
+
"subagent-manager": {
|
|
226
130
|
"enabled": true,
|
|
227
|
-
"config": {
|
|
131
|
+
"config": {
|
|
132
|
+
"agentsDir": "D:\\code\\vb-agent\\.agent\\agents",
|
|
133
|
+
"agents": [
|
|
134
|
+
{
|
|
135
|
+
"name": "code-archaeologist",
|
|
136
|
+
"description": "Expert in legacy code, refactoring, and understanding undocumented systems. Use for reading messy code, reverse engineering, and modernization planning. Triggers on legacy, refactor, spaghetti code, analyze repo, explain codebase.",
|
|
137
|
+
"tools": "Read, Grep, Glob, Edit, Write",
|
|
138
|
+
"model": "inherit",
|
|
139
|
+
"skills": "clean-code, refactoring-patterns, code-review-checklist",
|
|
140
|
+
"_fromDir": true
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "data-analyst",
|
|
144
|
+
"description": "Expert in data analysis, visualization, statistics, and Python data processing. Use for pandas, matplotlib, CSV analysis, statistical tests, and generating charts. Triggers on analyze data, chart, plot, statistics, csv, excel, pandas, matplotlib, correlation, trend.",
|
|
145
|
+
"tools": "Read, Write, Glob, Grep, PythonExecute, PythonScript, PipInstall, Bash",
|
|
146
|
+
"model": "inherit",
|
|
147
|
+
"skills": "python-data, statistics-basics, visualization-patterns",
|
|
148
|
+
"_fromDir": true
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "devops-engineer",
|
|
152
|
+
"description": "Expert in deployment, server management, CI/CD, and production operations. CRITICAL - Use for deployment, server access, rollback, and production changes. HIGH RISK operations. Triggers on deploy, production, server, pm2, ssh, release, rollback, ci/cd.",
|
|
153
|
+
"tools": "Read, Grep, Glob, Bash, Edit, Write",
|
|
154
|
+
"model": "inherit",
|
|
155
|
+
"skills": "clean-code, deployment-procedures, server-management, powershell-windows, bash-linux",
|
|
156
|
+
"_fromDir": true
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "email-admin",
|
|
160
|
+
"description": "Email management expert for sending, reading, configuring emails, and monitoring inbox. Use for composing emails, checking unread messages, setting up email watches, configuring SMTP/IMAP, and email automation. Triggers on email, mail, inbox, smtp, imap, send email, read email, unread.",
|
|
161
|
+
"tools": "Read, Write, Edit, Glob, Grep, Bash, Shell, ExecuteCommand, EmailSend, EmailRead, EmailConfigure, EmailWatch, EmailUnreadCount, EmailMarkRead, EmailDelete, EmailAutoReply, Fetch",
|
|
162
|
+
"model": "inherit",
|
|
163
|
+
"skills": "clean-code",
|
|
164
|
+
"_fromDir": true
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "frontend-specialist",
|
|
168
|
+
"description": "Senior Frontend Architect who builds maintainable React/Next.js systems with performance-first mindset. Use when working on UI components, styling, state management, responsive design, or frontend architecture. Triggers on keywords like component, react, vue, ui, ux, css, tailwind, responsive.",
|
|
169
|
+
"tools": "Read, Grep, Glob, Bash, Edit, Write",
|
|
170
|
+
"model": "inherit",
|
|
171
|
+
"skills": "clean-code, nextjs-react-expert, web-design-guidelines, tailwind-patterns, frontend-design, lint-and-validate",
|
|
172
|
+
"_fromDir": true
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "product-manager",
|
|
176
|
+
"description": "Expert in product requirements, user stories, and acceptance criteria. Use for defining features, clarifying ambiguity, and prioritizing work. Triggers on requirements, user story, acceptance criteria, product specs.",
|
|
177
|
+
"tools": "Read, Grep, Glob, Bash",
|
|
178
|
+
"model": "inherit",
|
|
179
|
+
"skills": "plan-writing, brainstorming, clean-code",
|
|
180
|
+
"_fromDir": true
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "python-developer",
|
|
184
|
+
"description": "Expert in Python development including web frameworks (FastAPI, Flask, Django), data processing (pandas, numpy), automation scripts, and API development. Triggers on python, fastapi, flask, django, pandas, numpy, pip, virtualenv, pytest, script, automation.",
|
|
185
|
+
"tools": "Read, Write, Glob, Grep, SearchFile, PythonExecute, PythonScript, PipInstall, Bash",
|
|
186
|
+
"model": "inherit",
|
|
187
|
+
"skills": "python-patterns, fastapi-guide, pandas-cookbook",
|
|
188
|
+
"_fromDir": true
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "security-auditor",
|
|
192
|
+
"description": "Elite cybersecurity expert. Think like an attacker, defend like an expert. OWASP 2025, supply chain security, zero trust architecture. Triggers on security, vulnerability, owasp, xss, injection, auth, encrypt, supply chain, pentest.",
|
|
193
|
+
"tools": "Read, Grep, Glob, Bash, Edit, Write",
|
|
194
|
+
"model": "inherit",
|
|
195
|
+
"skills": "clean-code, vulnerability-scanner, red-team-tactics, api-patterns",
|
|
196
|
+
"_fromDir": true
|
|
197
|
+
}
|
|
198
|
+
]
|
|
199
|
+
}
|
|
228
200
|
},
|
|
229
|
-
"
|
|
201
|
+
"web": {
|
|
230
202
|
"enabled": true,
|
|
231
203
|
"config": {}
|
|
232
204
|
},
|
|
233
|
-
"
|
|
205
|
+
"feishu": {
|
|
234
206
|
"enabled": false,
|
|
235
207
|
"config": {
|
|
236
|
-
"forceLogin": false,
|
|
237
|
-
"qrcodeTerminal": true,
|
|
238
208
|
"allowedUsers": []
|
|
239
209
|
}
|
|
240
210
|
},
|
|
241
|
-
"
|
|
211
|
+
"test-subagent": {
|
|
212
|
+
"enabled": true,
|
|
213
|
+
"config": {}
|
|
214
|
+
},
|
|
215
|
+
"system-info": {
|
|
216
|
+
"enabled": true,
|
|
217
|
+
"config": {}
|
|
218
|
+
},
|
|
219
|
+
"proactive-agent": {
|
|
242
220
|
"enabled": true,
|
|
243
221
|
"config": {
|
|
244
|
-
"
|
|
245
|
-
"
|
|
222
|
+
"autoStart": false,
|
|
223
|
+
"exploreInterval": 30000,
|
|
224
|
+
"maxNoProgress": 5,
|
|
225
|
+
"maxIterations": 20,
|
|
226
|
+
"enableReflection": true,
|
|
227
|
+
"maxConcurrentGoals": 3,
|
|
228
|
+
"quiet": false,
|
|
229
|
+
"reflectionThreshold": 2
|
|
246
230
|
}
|
|
247
231
|
},
|
|
248
|
-
"test": {
|
|
232
|
+
"test-plugin": {
|
|
249
233
|
"enabled": true,
|
|
250
234
|
"config": {}
|
|
251
235
|
},
|
|
252
|
-
"
|
|
236
|
+
"ambient": {
|
|
237
|
+
"enabled": true,
|
|
238
|
+
"config": {
|
|
239
|
+
"enabled": true,
|
|
240
|
+
"tickInterval": 5000,
|
|
241
|
+
"cooldownPeriod": 3000,
|
|
242
|
+
"persistencePath": ".agent/data/ambient",
|
|
243
|
+
"defaultGoals": [],
|
|
244
|
+
"llmCallTimeout": 30000,
|
|
245
|
+
"actionTimeout": 20000
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"puppeteer": {
|
|
249
|
+
"enabled": true,
|
|
250
|
+
"config": {}
|
|
251
|
+
},
|
|
252
|
+
"subagents": {
|
|
253
|
+
"enabled": true,
|
|
254
|
+
"config": {
|
|
255
|
+
"agentsDir": "D:\\code\\vb-agent\\.agent\\agents",
|
|
256
|
+
"agents": []
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"extension-executor": {
|
|
260
|
+
"enabled": true,
|
|
261
|
+
"config": {}
|
|
262
|
+
},
|
|
263
|
+
"gate-trading": {
|
|
264
|
+
"enabled": true,
|
|
265
|
+
"config": {}
|
|
266
|
+
},
|
|
267
|
+
"plugin_manager": {
|
|
268
|
+
"enabled": true,
|
|
269
|
+
"config": {}
|
|
270
|
+
},
|
|
271
|
+
"memory": {
|
|
272
|
+
"enabled": true,
|
|
273
|
+
"config": {
|
|
274
|
+
"memoryDir": ".agent/memory",
|
|
275
|
+
"autoExtract": true,
|
|
276
|
+
"extractOnTopics": [
|
|
277
|
+
"provider",
|
|
278
|
+
"preference",
|
|
279
|
+
"setting",
|
|
280
|
+
"user"
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"poster": {
|
|
253
285
|
"enabled": true,
|
|
254
286
|
"config": {}
|
|
255
287
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"MiniMax": {
|
|
4
|
+
"command": "uvx",
|
|
5
|
+
"args": ["minimax-coding-plan-mcp", "-y"],
|
|
6
|
+
"env": {
|
|
7
|
+
"MINIMAX_API_KEY": "sk-cp-jRMMNA-8Nqb3gIszeqj5thnLHpbNeLAFPfWiAH3aR_282Cr6qE7WnINOvq3b_vQ5QLybWMoYiphLYPhZCpW8Jg9zx-XmpTc9qxrVpHIB8J0JGeixxm2KhLw",
|
|
8
|
+
"MINIMAX_API_HOST": "https://api.minimaxi.com"
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|