vibesuite 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.
- package/.agent/skills/agent-recovery/SKILL.md +147 -0
- package/.agent/skills/code-review/SKILL.md +81 -0
- package/.agent/skills/component-analysis/SKILL.md +103 -0
- package/.agent/skills/git-worktree/SKILL.md +78 -0
- package/.agent/skills/github-ops/SKILL.md +220 -0
- package/.agent/skills/github-ops/scripts/publish_issues.ps1 +443 -0
- package/.agent/skills/github-ops/scripts/smart-ops.ps1 +128 -0
- package/.agent/skills/github-ops/scripts/smart-ops.sh +130 -0
- package/.agent/skills/google-trends/SKILL.md +157 -0
- package/.agent/skills/google-trends/scripts/node_modules/.modules.yaml +21 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/LICENSE +22 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/Readme.md +1157 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/esm.mjs +16 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/index.js +24 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/argument.js +149 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/command.js +2509 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/error.js +39 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/help.js +520 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/option.js +330 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/package-support.json +16 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/package.json +84 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/typings/esm.d.mts +3 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/commander@12.1.0/node_modules/commander/typings/index.d.ts +969 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/CHANGES.md +132 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/LICENSE +21 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/README.md +561 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/lib/google-trends-api.min.js +2 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/package.json +68 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/api.js +18 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/index.js +27 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/request.js +69 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/google-trends-api@4.9.2/node_modules/google-trends-api/src/utilities.js +395 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm/lock.yaml +31 -0
- package/.agent/skills/google-trends/scripts/node_modules/.pnpm-workspace-state-v1.json +25 -0
- package/.agent/skills/google-trends/scripts/package.json +17 -0
- package/.agent/skills/google-trends/scripts/pnpm-lock.yaml +31 -0
- package/.agent/skills/google-trends/scripts/search.js +168 -0
- package/.agent/skills/high-fidelity-extraction/SKILL.md +59 -0
- package/.agent/skills/prime-agent/SKILL.md +97 -0
- package/.agent/skills/security-audit/SKILL.md +81 -0
- package/.agent/skills/seo-ready/SKILL.md +133 -0
- package/.agent/skills/spawn-task/SKILL.md +130 -0
- package/.agent/skills/sync-docs/SKILL.md +88 -0
- package/.agent/skills/vercel-ai-sdk/SKILL.md +34083 -0
- package/.agent/skills/youtube-pipeline/SKILL.md +194 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase1-strategy.md +224 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase2-packaging.md +148 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase3-scripting.md +197 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase3.5-shorts.md +271 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase4-production.md +193 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-phase5-repurposing.md +159 -0
- package/.agent/skills/youtube-pipeline/resources/youtube-pipeline.md +161 -0
- package/.agent/skills/youtube-pipeline/scripts/parse_yt_studio.ps1 +150 -0
- package/.agent/workflows/LEGACY/ANTIGRAVITY_TOOLBOX.md +200 -0
- package/.agent/workflows/LEGACY/analyze_component.md +141 -0
- package/.agent/workflows/LEGACY/build_vibecode_project.md +154 -0
- package/.agent/workflows/LEGACY/deep_code_audit.md +79 -0
- package/.agent/workflows/LEGACY/gemini-orchestrate.md +63 -0
- package/.agent/workflows/LEGACY/git_worktree.md +71 -0
- package/.agent/workflows/LEGACY/init_smart_ops.md +101 -0
- package/.agent/workflows/LEGACY/multi_agent_strategy.md +62 -0
- package/.agent/workflows/LEGACY/orchestrate.md +321 -0
- package/.agent/workflows/LEGACY/seo_ready.md +249 -0
- package/.agent/workflows/LEGACY/vibe-orchestrator.md +305 -0
- package/.agent/workflows/LEGACY/youtube-phase1-strategy.md +224 -0
- package/.agent/workflows/LEGACY/youtube-phase2-packaging.md +148 -0
- package/.agent/workflows/LEGACY/youtube-phase3-scripting.md +197 -0
- package/.agent/workflows/LEGACY/youtube-phase3.5-shorts.md +271 -0
- package/.agent/workflows/LEGACY/youtube-phase4-production.md +193 -0
- package/.agent/workflows/LEGACY/youtube-phase5-repurposing.md +159 -0
- package/.agent/workflows/LEGACY/youtube-pipeline.md +161 -0
- package/.agent/workflows/README.md +349 -0
- package/.agent/workflows/Vercel Ai SDK.md +34083 -0
- package/.agent/workflows/agent_reset.md +138 -0
- package/.agent/workflows/build_vibecode_project_v2.md +158 -0
- package/.agent/workflows/escalate.md +112 -0
- package/.agent/workflows/init_vibecode_design.md +98 -0
- package/.agent/workflows/init_vibecode_genesis.md +137 -0
- package/.agent/workflows/migrate.md +135 -0
- package/.agent/workflows/prime_agent.md +211 -0
- package/.agent/workflows/reverse_genesis.md +132 -0
- package/.agent/workflows/review_code.md +133 -0
- package/.agent/workflows/spawn-jstar-code-review.md +121 -0
- package/.agent/workflows/spawn_task.md +187 -0
- package/.agent/workflows/sync_docs.md +90 -0
- package/Legacy (Manual Method)/0 VibeCode User Manual.md +173 -0
- package/Legacy (Manual Method)/1 Project Genesis Protocol The VibeCode Workflow.md +89 -0
- package/Legacy (Manual Method)/2/342/234/250 ULTIMATE ORCHESTRATION PROMPT/342/234/250.md" +114 -0
- package/Legacy (Manual Method)/3 Design System Genesis Protocol.md +75 -0
- package/Legacy (Manual Method)/3.1.1 my_design_system_rules.md +177 -0
- package/Legacy (Manual Method)/3.1.2 Material You M3 Genesis Protocol.md +73 -0
- package/Legacy (Manual Method)/4 The Ultimate GitHub Issue Meta-Prompt Template.md +54 -0
- package/Legacy (Manual Method)/5 The Escalation & Handoff Protocol.md +97 -0
- package/Legacy (Manual Method)/8 The Seamless Migration Meta-Prompt (Your Reusable Tool).md +38 -0
- package/Legacy (Manual Method)/9 The Reverse Genesis Protocol.md +75 -0
- package/README.md +209 -0
- package/VibeCode-Agents (e.g Kilo-code)/README.md +142 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-analyzer.yaml +254 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-architect.yaml +397 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-auditor.yaml +325 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-builder.yaml +472 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-designer.yaml +305 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-documentor.yaml +222 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-escalator.yaml +255 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-isolator.yaml +332 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-onboarder.yaml +335 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator.yaml +365 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator_legacy.yaml +284 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-orchestrator_v1.yaml +336 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-primer.yaml +213 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-reviewer.yaml +233 -0
- package/VibeCode-Agents (e.g Kilo-code)/vibe-spawner.yaml +259 -0
- package/bin/vibesuite.js +2 -0
- package/package.json +43 -0
- package/src/cli.js +159 -0
- package/src/utils.js +76 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
#### [v4.9.0]
|
|
2
|
+
> Feb 2, 2019
|
|
3
|
+
- Adds support for a single keyword string with an array of geo locations
|
|
4
|
+
[#116]: https://github.com/pat310/google-trends-api/pull/116
|
|
5
|
+
|
|
6
|
+
#### [v4.7.0]
|
|
7
|
+
> July 14, 2018
|
|
8
|
+
- Allowing locations for different keywords
|
|
9
|
+
[#111]: https://github.com/pat310/google-trends-api/pull/111
|
|
10
|
+
|
|
11
|
+
#### [v4.6.2]
|
|
12
|
+
> May 29, 2018
|
|
13
|
+
- Fixing 429 errors from google trends
|
|
14
|
+
[#106]: https://github.com/pat310/google-trends-api/pull/106
|
|
15
|
+
|
|
16
|
+
#### [v4.6.1]
|
|
17
|
+
> Feb 21, 2018
|
|
18
|
+
- Fixing proxy bug by adding proxy to `nextOptions`
|
|
19
|
+
[#95]: https://github.com/pat310/google-trends-api/pull/94
|
|
20
|
+
|
|
21
|
+
## [v4.6.0]
|
|
22
|
+
> Feb 19, 2018
|
|
23
|
+
- Ability to specify a google property filter
|
|
24
|
+
[#94]: https://github.com/pat310/google-trends-api/pull/94
|
|
25
|
+
|
|
26
|
+
# [v4.5.0]
|
|
27
|
+
> Jan 31, 2018
|
|
28
|
+
- Adding ability to use a proxy server
|
|
29
|
+
[#92]: https://github.com/pat310/google-trends-api/pull/92
|
|
30
|
+
|
|
31
|
+
## [v4.4.0]
|
|
32
|
+
> Jan 12, 2018
|
|
33
|
+
- Added `timezone` number, defaults to the time zone difference in minutes from UTC to host system settings
|
|
34
|
+
|
|
35
|
+
[#90]: https://github.com/pat310/google-trends-api/pull/90
|
|
36
|
+
|
|
37
|
+
## [v4.3.0]
|
|
38
|
+
> Oct 22, 2017
|
|
39
|
+
- Added `granularTimeResolution` boolean as optional input object parameter, when true will default to finest time resolution possible
|
|
40
|
+
|
|
41
|
+
[#84]: https://github.com/pat310/google-trends-api/pull/84
|
|
42
|
+
|
|
43
|
+
## [v4.2.2]
|
|
44
|
+
> Sep 7, 2017
|
|
45
|
+
- Using widget `id` rather than `title` for determining token. Title changes for region from `Interest by region` to `Interest by subregion` in certain scenarios. When this would happen, the lookup would break.
|
|
46
|
+
|
|
47
|
+
[#78]: https://github.com/pat310/google-trends-api/pull/78
|
|
48
|
+
|
|
49
|
+
## [v4.2.1]
|
|
50
|
+
> Sep 1, 2017
|
|
51
|
+
- Unicode characters in results are decoded by default
|
|
52
|
+
- Corrected a bug when a user tries to perform a comparison with a search topic and a search term
|
|
53
|
+
|
|
54
|
+
[#74]: https://github.com/pat310/google-trends-api/pull/74
|
|
55
|
+
[#76]: https://github.com/pat310/google-trends-api/pull/76
|
|
56
|
+
|
|
57
|
+
## [v4.2.0]
|
|
58
|
+
> Aug 21, 2017
|
|
59
|
+
- Added a new api method which returns the results from the "add a search term" input box in the UI: `autoComplete`
|
|
60
|
+
- Added a new optional parameter to include in the search query: `category`. Category is input as a [number](https://github.com/pat310/google-trends-api/wiki/Google-Trends-Categories)
|
|
61
|
+
|
|
62
|
+
[#70]: https://github.com/pat310/google-trends-api/pull/70
|
|
63
|
+
[#72]: https://github.com/pat310/google-trends-api/pull/72
|
|
64
|
+
|
|
65
|
+
## [v4.1.0]
|
|
66
|
+
> Mar 16, 2017
|
|
67
|
+
- Added ability to search trends across [multiple keywords](https://github.com/pat310/google-trends-api#multiple-keywords)
|
|
68
|
+
- Catching errors on failed JSON.parse
|
|
69
|
+
|
|
70
|
+
[#54]: https://github.com/pat310/google-trends-api/pull/54
|
|
71
|
+
[#58]: https://github.com/pat310/google-trends-api/pull/58
|
|
72
|
+
|
|
73
|
+
## [v4.0.1]
|
|
74
|
+
> Feb 13, 2017
|
|
75
|
+
- actually building before committing
|
|
76
|
+
- added a preversion script to ensure build occurs
|
|
77
|
+
|
|
78
|
+
## [v4.0.0]
|
|
79
|
+
> Feb 13, 2017
|
|
80
|
+
|
|
81
|
+
- removed all old api methods
|
|
82
|
+
- added four new api methods:
|
|
83
|
+
- `interestByRegion`
|
|
84
|
+
- `interestOverTime`
|
|
85
|
+
- `relatedQueries`
|
|
86
|
+
- `relatedTopics`
|
|
87
|
+
- removed all dependencies
|
|
88
|
+
- adding [codeclimate](https://codeclimate.com/github/pat310/google-trends-api)
|
|
89
|
+
- fixing [coveralls](https://coveralls.io/github/pat310/google-trends-api)
|
|
90
|
+
- removed old tests and added new tests for new methods
|
|
91
|
+
- adding eslint and following [airbnb](https://github.com/airbnb/javascript) style guide
|
|
92
|
+
- updated README accordingly
|
|
93
|
+
|
|
94
|
+
[#47]: https://github.com/pat310/google-trends-api/pull/47
|
|
95
|
+
|
|
96
|
+
## [v3.0.2]
|
|
97
|
+
> Feb 3, 2017
|
|
98
|
+
|
|
99
|
+
- removing node specific `__dirname` so library can be used in browser
|
|
100
|
+
|
|
101
|
+
[#44]: https://github.com/pat310/google-trends-api/pull/44
|
|
102
|
+
|
|
103
|
+
## [v3.0.1]
|
|
104
|
+
> Oct 31, 2016
|
|
105
|
+
|
|
106
|
+
- removing `cheerio` as a dependency by replacing it with regex ([#35])
|
|
107
|
+
|
|
108
|
+
[#35]: https://github.com/pat310/google-trends-api/pull/35
|
|
109
|
+
|
|
110
|
+
## [v3.0.0]
|
|
111
|
+
> Oct 22, 2016
|
|
112
|
+
|
|
113
|
+
- `topRelated` now correctly using `TOP_QUERIES` rather than `RISING_QUERIES` ([#34])
|
|
114
|
+
- `topRelated` now accepts an optional `timePeriod` object that will return trend data based on a provided time period ([#34])
|
|
115
|
+
- Added `risingSearches` method which accepts `category`, `timePeriod` and `geo` ([#34])
|
|
116
|
+
|
|
117
|
+
[#34]: https://github.com/pat310/google-trends-api/pull/34
|
|
118
|
+
|
|
119
|
+
## [v2.1.0]
|
|
120
|
+
> Oct 22, 2016
|
|
121
|
+
|
|
122
|
+
- `trendData` now accepts an optional `timePeriod` object that will return trend data based on a provided time period ([#33])
|
|
123
|
+
|
|
124
|
+
[#33]: https://github.com/pat310/google-trends-api/pull/33
|
|
125
|
+
|
|
126
|
+
## [v2.0.0]
|
|
127
|
+
> Oct 22, 2016
|
|
128
|
+
|
|
129
|
+
- `trendData` now returns [IETF-compliant RFC 2822 timestamps](https://tools.ietf.org/html/rfc2822#page-14) ([#32])
|
|
130
|
+
- Adding New Zealand to list of country codes
|
|
131
|
+
|
|
132
|
+
[#32]: https://github.com/pat310/google-trends-api/pull/32
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 Patrick Trasborg
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|