@poping/yome 0.0.2 → 0.0.4
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/LICENSE +202 -0
- package/NOTICE +11 -0
- package/README.md +306 -27
- package/README.zh-CN.md +333 -0
- package/bin/yome-calwatch +0 -0
- package/dist/agent.d.ts +24 -2
- package/dist/agent.js +34 -2
- package/dist/agent.js.map +1 -1
- package/dist/context.d.ts +2 -0
- package/dist/context.js +121 -13
- package/dist/context.js.map +1 -1
- package/dist/daemon/calendarPermission.d.ts +10 -0
- package/dist/daemon/calendarPermission.js +68 -0
- package/dist/daemon/calendarPermission.js.map +1 -0
- package/dist/daemon/cronCli.d.ts +19 -0
- package/dist/daemon/cronCli.js +403 -0
- package/dist/daemon/cronCli.js.map +1 -0
- package/dist/daemon/envHint.d.ts +5 -0
- package/dist/daemon/envHint.js +139 -0
- package/dist/daemon/envHint.js.map +1 -0
- package/dist/daemon/humanCron.d.ts +1 -0
- package/dist/daemon/humanCron.js +72 -0
- package/dist/daemon/humanCron.js.map +1 -0
- package/dist/daemon/humanOnce.d.ts +1 -0
- package/dist/daemon/humanOnce.js +54 -0
- package/dist/daemon/humanOnce.js.map +1 -0
- package/dist/daemon/index.d.ts +5 -0
- package/dist/daemon/index.js +168 -0
- package/dist/daemon/index.js.map +1 -0
- package/dist/daemon/launchd.d.ts +7 -0
- package/dist/daemon/launchd.js +93 -0
- package/dist/daemon/launchd.js.map +1 -0
- package/dist/daemon/log.d.ts +17 -0
- package/dist/daemon/log.js +57 -0
- package/dist/daemon/log.js.map +1 -0
- package/dist/daemon/paths.d.ts +11 -0
- package/dist/daemon/paths.js +27 -0
- package/dist/daemon/paths.js.map +1 -0
- package/dist/daemon/runTaskEntry.d.ts +1 -0
- package/dist/daemon/runTaskEntry.js +67 -0
- package/dist/daemon/runTaskEntry.js.map +1 -0
- package/dist/daemon/runner.d.ts +21 -0
- package/dist/daemon/runner.js +175 -0
- package/dist/daemon/runner.js.map +1 -0
- package/dist/daemon/scheduler.d.ts +5 -0
- package/dist/daemon/scheduler.js +162 -0
- package/dist/daemon/scheduler.js.map +1 -0
- package/dist/daemon/taskStore.d.ts +62 -0
- package/dist/daemon/taskStore.js +88 -0
- package/dist/daemon/taskStore.js.map +1 -0
- package/dist/daemon/triggers/calendar.d.ts +8 -0
- package/dist/daemon/triggers/calendar.js +248 -0
- package/dist/daemon/triggers/calendar.js.map +1 -0
- package/dist/daemon/triggers/childRunner.d.ts +14 -0
- package/dist/daemon/triggers/childRunner.js +111 -0
- package/dist/daemon/triggers/childRunner.js.map +1 -0
- package/dist/daemon/triggers/cron.d.ts +14 -0
- package/dist/daemon/triggers/cron.js +91 -0
- package/dist/daemon/triggers/cron.js.map +1 -0
- package/dist/daemon/triggers/file.d.ts +7 -0
- package/dist/daemon/triggers/file.js +123 -0
- package/dist/daemon/triggers/file.js.map +1 -0
- package/dist/daemon/triggers/once.d.ts +10 -0
- package/dist/daemon/triggers/once.js +80 -0
- package/dist/daemon/triggers/once.js.map +1 -0
- package/dist/index.js +240 -15
- package/dist/index.js.map +1 -1
- package/dist/llm.js +45 -2
- package/dist/llm.js.map +1 -1
- package/dist/loops/chain.js +8 -0
- package/dist/loops/chain.js.map +1 -1
- package/dist/loops/evaluator.js +8 -0
- package/dist/loops/evaluator.js.map +1 -1
- package/dist/loops/orchestrator.js +8 -0
- package/dist/loops/orchestrator.js.map +1 -1
- package/dist/loops/parallel.js.map +1 -1
- package/dist/loops/route.js +8 -0
- package/dist/loops/route.js.map +1 -1
- package/dist/loops/simple.js +15 -0
- package/dist/loops/simple.js.map +1 -1
- package/dist/permissions/index.d.ts +1 -1
- package/dist/permissions/index.js +1 -1
- package/dist/permissions/index.js.map +1 -1
- package/dist/permissions/loader.d.ts +20 -1
- package/dist/permissions/loader.js +51 -0
- package/dist/permissions/loader.js.map +1 -1
- package/dist/redact.d.ts +56 -0
- package/dist/redact.js +191 -0
- package/dist/redact.js.map +1 -0
- package/dist/skills/runner/applescript.d.ts +49 -0
- package/dist/skills/runner/applescript.js +100 -0
- package/dist/skills/runner/applescript.js.map +1 -0
- package/dist/skills/runner/dispatcher.d.ts +128 -0
- package/dist/skills/runner/dispatcher.js +617 -0
- package/dist/skills/runner/dispatcher.js.map +1 -0
- package/dist/skills/runner/dispatcher.test.d.ts +1 -0
- package/dist/skills/runner/dispatcher.test.js +141 -0
- package/dist/skills/runner/dispatcher.test.js.map +1 -0
- package/dist/skills/runner/kernel.d.ts +8 -0
- package/dist/skills/runner/kernel.js +731 -0
- package/dist/skills/runner/kernel.js.map +1 -0
- package/dist/skills/runner/nodeBackend.d.ts +32 -0
- package/dist/skills/runner/nodeBackend.js +147 -0
- package/dist/skills/runner/nodeBackend.js.map +1 -0
- package/dist/skills/runner/tokenizer.d.ts +36 -0
- package/dist/skills/runner/tokenizer.js +177 -0
- package/dist/skills/runner/tokenizer.js.map +1 -0
- package/dist/state/todos.d.ts +12 -0
- package/dist/state/todos.js +32 -0
- package/dist/state/todos.js.map +1 -0
- package/dist/threadCli.d.ts +11 -0
- package/dist/threadCli.js +177 -0
- package/dist/threadCli.js.map +1 -0
- package/dist/threadShare.d.ts +21 -0
- package/dist/threadShare.js +121 -0
- package/dist/threadShare.js.map +1 -0
- package/dist/threadSubmit.d.ts +32 -0
- package/dist/threadSubmit.js +199 -0
- package/dist/threadSubmit.js.map +1 -0
- package/dist/tools/askUser.d.ts +20 -0
- package/dist/tools/askUser.js +126 -0
- package/dist/tools/askUser.js.map +1 -0
- package/dist/tools/bash.js +63 -14
- package/dist/tools/bash.js.map +1 -1
- package/dist/tools/index.d.ts +24 -2
- package/dist/tools/index.js +54 -5
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/skillCall.d.ts +2 -0
- package/dist/tools/skillCall.js +77 -0
- package/dist/tools/skillCall.js.map +1 -0
- package/dist/tools/todoWrite.d.ts +2 -0
- package/dist/tools/todoWrite.js +141 -0
- package/dist/tools/todoWrite.js.map +1 -0
- package/dist/tools/yome.d.ts +2 -0
- package/dist/tools/yome.js +87 -0
- package/dist/tools/yome.js.map +1 -0
- package/dist/ui/AgentPicker.js +3 -3
- package/dist/ui/AgentPicker.js.map +1 -1
- package/dist/ui/App.js +263 -61
- package/dist/ui/App.js.map +1 -1
- package/dist/ui/AskUserPrompt.d.ts +7 -0
- package/dist/ui/AskUserPrompt.js +78 -0
- package/dist/ui/AskUserPrompt.js.map +1 -0
- package/dist/ui/Banner.d.ts +2 -1
- package/dist/ui/Banner.js +23 -4
- package/dist/ui/Banner.js.map +1 -1
- package/dist/ui/InputBar.js +25 -36
- package/dist/ui/InputBar.js.map +1 -1
- package/dist/ui/Markdown.d.ts +2 -2
- package/dist/ui/Markdown.js +22 -7
- package/dist/ui/Markdown.js.map +1 -1
- package/dist/ui/MarketplacePicker.d.ts +7 -0
- package/dist/ui/MarketplacePicker.js +122 -0
- package/dist/ui/MarketplacePicker.js.map +1 -0
- package/dist/ui/MessageList.d.ts +12 -1
- package/dist/ui/MessageList.js +72 -7
- package/dist/ui/MessageList.js.map +1 -1
- package/dist/ui/ModelPicker.js +4 -4
- package/dist/ui/ModelPicker.js.map +1 -1
- package/dist/ui/MultilineTextInput.d.ts +31 -0
- package/dist/ui/MultilineTextInput.js +393 -0
- package/dist/ui/MultilineTextInput.js.map +1 -0
- package/dist/ui/MultilineTextInput.test.d.ts +1 -0
- package/dist/ui/MultilineTextInput.test.js +30 -0
- package/dist/ui/MultilineTextInput.test.js.map +1 -0
- package/dist/ui/PermissionPrompt.d.ts +16 -4
- package/dist/ui/PermissionPrompt.js +60 -15
- package/dist/ui/PermissionPrompt.js.map +1 -1
- package/dist/ui/SessionPicker.js +2 -2
- package/dist/ui/SessionPicker.js.map +1 -1
- package/dist/ui/ShimmerText.d.ts +8 -0
- package/dist/ui/ShimmerText.js +40 -0
- package/dist/ui/ShimmerText.js.map +1 -0
- package/dist/ui/Spinner.js +3 -9
- package/dist/ui/Spinner.js.map +1 -1
- package/dist/ui/TodoPanel.d.ts +7 -0
- package/dist/ui/TodoPanel.js +36 -0
- package/dist/ui/TodoPanel.js.map +1 -0
- package/dist/ui/TogglePicker.js +4 -4
- package/dist/ui/TogglePicker.js.map +1 -1
- package/dist/ui/ToolResult.js +6 -0
- package/dist/ui/ToolResult.js.map +1 -1
- package/dist/ui/UnifiedSkillsPicker.d.ts +10 -0
- package/dist/ui/UnifiedSkillsPicker.js +63 -0
- package/dist/ui/UnifiedSkillsPicker.js.map +1 -0
- package/dist/ui/animation.d.ts +3 -0
- package/dist/ui/animation.js +48 -0
- package/dist/ui/animation.js.map +1 -0
- package/dist/ui/useThrottledStream.d.ts +7 -0
- package/dist/ui/useThrottledStream.js +63 -0
- package/dist/ui/useThrottledStream.js.map +1 -0
- package/dist/yomeSkills/auth.d.ts +20 -0
- package/dist/yomeSkills/auth.js +70 -0
- package/dist/yomeSkills/auth.js.map +1 -0
- package/dist/yomeSkills/blacklist.d.ts +33 -0
- package/dist/yomeSkills/blacklist.js +101 -0
- package/dist/yomeSkills/blacklist.js.map +1 -0
- package/dist/yomeSkills/capabilities.d.ts +54 -0
- package/dist/yomeSkills/capabilities.js +175 -0
- package/dist/yomeSkills/capabilities.js.map +1 -0
- package/dist/yomeSkills/capabilityGuard.d.ts +31 -0
- package/dist/yomeSkills/capabilityGuard.js +113 -0
- package/dist/yomeSkills/capabilityGuard.js.map +1 -0
- package/dist/yomeSkills/cli.d.ts +25 -0
- package/dist/yomeSkills/cli.js +624 -0
- package/dist/yomeSkills/cli.js.map +1 -0
- package/dist/yomeSkills/deprecate.d.ts +29 -0
- package/dist/yomeSkills/deprecate.js +99 -0
- package/dist/yomeSkills/deprecate.js.map +1 -0
- package/dist/yomeSkills/devLink.d.ts +17 -0
- package/dist/yomeSkills/devLink.js +91 -0
- package/dist/yomeSkills/devLink.js.map +1 -0
- package/dist/yomeSkills/doctor.d.ts +13 -0
- package/dist/yomeSkills/doctor.js +152 -0
- package/dist/yomeSkills/doctor.js.map +1 -0
- package/dist/yomeSkills/enable.d.ts +8 -0
- package/dist/yomeSkills/enable.js +67 -0
- package/dist/yomeSkills/enable.js.map +1 -0
- package/dist/yomeSkills/hubPing.d.ts +1 -0
- package/dist/yomeSkills/hubPing.js +41 -0
- package/dist/yomeSkills/hubPing.js.map +1 -0
- package/dist/yomeSkills/install.d.ts +18 -0
- package/dist/yomeSkills/install.js +143 -0
- package/dist/yomeSkills/install.js.map +1 -0
- package/dist/yomeSkills/installFromHubTarball.d.ts +26 -0
- package/dist/yomeSkills/installFromHubTarball.js +161 -0
- package/dist/yomeSkills/installFromHubTarball.js.map +1 -0
- package/dist/yomeSkills/installGithub.d.ts +33 -0
- package/dist/yomeSkills/installGithub.js +213 -0
- package/dist/yomeSkills/installGithub.js.map +1 -0
- package/dist/yomeSkills/installMeta.d.ts +8 -0
- package/dist/yomeSkills/installMeta.js +76 -0
- package/dist/yomeSkills/installMeta.js.map +1 -0
- package/dist/yomeSkills/integrity.d.ts +26 -0
- package/dist/yomeSkills/integrity.js +107 -0
- package/dist/yomeSkills/integrity.js.map +1 -0
- package/dist/yomeSkills/invoke.d.ts +29 -0
- package/dist/yomeSkills/invoke.js +135 -0
- package/dist/yomeSkills/invoke.js.map +1 -0
- package/dist/yomeSkills/list.d.ts +11 -0
- package/dist/yomeSkills/list.js +55 -0
- package/dist/yomeSkills/list.js.map +1 -0
- package/dist/yomeSkills/login.d.ts +41 -0
- package/dist/yomeSkills/login.js +221 -0
- package/dist/yomeSkills/login.js.map +1 -0
- package/dist/yomeSkills/manifest.d.ts +60 -0
- package/dist/yomeSkills/manifest.js +47 -0
- package/dist/yomeSkills/manifest.js.map +1 -0
- package/dist/yomeSkills/paths.d.ts +13 -0
- package/dist/yomeSkills/paths.js +33 -0
- package/dist/yomeSkills/paths.js.map +1 -0
- package/dist/yomeSkills/publish.d.ts +18 -0
- package/dist/yomeSkills/publish.js +114 -0
- package/dist/yomeSkills/publish.js.map +1 -0
- package/dist/yomeSkills/rollback.d.ts +10 -0
- package/dist/yomeSkills/rollback.js +83 -0
- package/dist/yomeSkills/rollback.js.map +1 -0
- package/dist/yomeSkills/search.d.ts +21 -0
- package/dist/yomeSkills/search.js +31 -0
- package/dist/yomeSkills/search.js.map +1 -0
- package/dist/yomeSkills/skillsIndex.d.ts +36 -0
- package/dist/yomeSkills/skillsIndex.js +111 -0
- package/dist/yomeSkills/skillsIndex.js.map +1 -0
- package/dist/yomeSkills/unified.d.ts +53 -0
- package/dist/yomeSkills/unified.js +187 -0
- package/dist/yomeSkills/unified.js.map +1 -0
- package/dist/yomeSkills/uninstall.d.ts +7 -0
- package/dist/yomeSkills/uninstall.js +22 -0
- package/dist/yomeSkills/uninstall.js.map +1 -0
- package/dist/yomeSkills/update.d.ts +18 -0
- package/dist/yomeSkills/update.js +75 -0
- package/dist/yomeSkills/update.js.map +1 -0
- package/dist/yomeSkills/validate.d.ts +11 -0
- package/dist/yomeSkills/validate.js +99 -0
- package/dist/yomeSkills/validate.js.map +1 -0
- package/package.json +23 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/NOTICE
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Yome Agent
|
|
2
|
+
Copyright 2024-2026 Whopus / Yome contributors
|
|
3
|
+
|
|
4
|
+
This product includes software developed at Whopus (https://yome.work).
|
|
5
|
+
|
|
6
|
+
Licensed under the Apache License, Version 2.0; see LICENSE for the
|
|
7
|
+
full text.
|
|
8
|
+
|
|
9
|
+
The Yome Agent is the open-source agent runtime + skill client for the
|
|
10
|
+
Yome platform. It is the same binary published to npm as @poping/yome,
|
|
11
|
+
and mirrored as github.com/Whopus/yome-agent.
|
package/README.md
CHANGED
|
@@ -1,54 +1,333 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<img src=".assets/yome-icon.png" width="120" alt="Yome" />
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# YOME AGENT
|
|
6
|
+
|
|
7
|
+
### The Empower Kernel
|
|
8
|
+
|
|
9
|
+
*Agentic context, native skills, bash kernel.*
|
|
10
|
+
*The open-source substrate that makes AI feel and know you.*
|
|
11
|
+
|
|
12
|
+
[English](./README.md) · [简体中文](./README.zh-CN.md)
|
|
13
|
+
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
Yome Agent is not yet another chat agent. It is the open-source substrate of [Yome](https://yome.work) — an **Empower Kernel** that weaves the LLM, your devices and your native apps into one runtime.
|
|
19
|
+
|
|
20
|
+
The model is strong. It lives nowhere near your twelve context silos. Today you are the router between context and tool; 80% of your workday is spent shuffling, not creating. Yome Agent exists to take that routing job away from you — not by inventing one more tool, but by waking up the tools you already own.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Quickstart
|
|
6
25
|
|
|
7
26
|
```bash
|
|
8
|
-
|
|
27
|
+
# Install
|
|
28
|
+
npm install -g @poping/yome
|
|
29
|
+
|
|
30
|
+
# Configure (saved to ~/.yome/config.json)
|
|
31
|
+
yome --key sk-... --base-url https://your.endpoint --model your-model
|
|
32
|
+
|
|
33
|
+
# Run
|
|
34
|
+
yome # interactive REPL
|
|
35
|
+
yome "summarise package.json" # one-shot
|
|
36
|
+
|
|
37
|
+
# Install your first native skill (PowerPoint editor)
|
|
38
|
+
yome skill install github:Whopus/yome-skill-ppt
|
|
39
|
+
yome skill list
|
|
9
40
|
```
|
|
10
41
|
|
|
11
|
-
|
|
42
|
+
Once `yome` is running, type:
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
> Make a new ppt titled "Q3 Review" and save it to my Desktop
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
The model issues real `ppt new ~/Desktop/q3.pptx` → `ppt title 1 --text="Q3 Review"` → `ppt save` Bash commands. Microsoft PowerPoint opens on your desktop. The file lands on disk. That is the minimum loop of an Empower Kernel.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## The Three Engines
|
|
53
|
+
|
|
54
|
+
Yome Agent is composed of three engines, each independent yet interlocking. Each is a piece of ground truth from the *Agentic Empower Intelligence* blueprint in the Yome business plan.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
### 1. Agentic Contextual Engine
|
|
59
|
+
|
|
60
|
+
> Context is not a static string. It is a *living continuum*.
|
|
61
|
+
|
|
62
|
+
The agent loop must not live only in the 30 seconds after you press Enter. It should be always-on, never-forget, ambient. This is the dimension that separates Yome Agent from traditional chat-style coding agents.
|
|
63
|
+
|
|
64
|
+
| Capability | Meaning |
|
|
65
|
+
|---|---|
|
|
66
|
+
| **Daemon** | Yome runs as an OS-level daemon, not a chat window. It watches your filesystem, calendar, IM signals, and long-running jobs in the background — and only surfaces when something matters. The agent loop never has to be re-spawned from scratch. |
|
|
67
|
+
| **Live compaction** | Long sessions auto-compress history; tokens never overflow, memory never lost |
|
|
68
|
+
| **Oncall** | The agent is event-driven, not prompt-driven. WeChat / Feishu / Slack / iMessage messages, calendar fires, build finishes, GPU spikes, *@you* mentions — Yome reacts to the world and pages you with a one-line summary + a draft response, instead of waiting for you to ask. |
|
|
69
|
+
|
|
70
|
+
**Available today:**
|
|
12
71
|
|
|
13
72
|
```bash
|
|
14
|
-
|
|
73
|
+
yome thread list # list past sessions in cwd
|
|
74
|
+
yome thread share <session-id> --skill=<slug> # build redacted case bundle
|
|
75
|
+
yome thread submit <bundle-dir> --skill=<slug> # publish as PR (needs gh CLI)
|
|
15
76
|
```
|
|
16
77
|
|
|
17
|
-
|
|
78
|
+
Sessions, history compaction and case bundles ship today. Daemon and Oncall are next-up on the `next` branch.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
### 2. Agentic Native Skill
|
|
83
|
+
|
|
84
|
+
> The scarce capability is not "another prompt template" or "an MCP wrapper running in the cloud". It is **invoking the native apps already installed on your machine** and making them obey agent instructions.
|
|
85
|
+
|
|
86
|
+
We call them **Native Skills**:
|
|
87
|
+
|
|
88
|
+
| Type | Runs where | Does what | Example |
|
|
89
|
+
|---|---|---|---|
|
|
90
|
+
| **Prompt Skill** | LLM context window | Loads a markdown prompt template | code-review, web-research |
|
|
91
|
+
| **MCP Server** | Remote process | Exposes JSON-RPC tools to the LLM | github MCP, filesystem MCP |
|
|
92
|
+
| **Native Skill** *(Yome)* | Your own machine (macOS / Win / Linux) | Drives native apps via AppleScript / Win32 / DBus | ppt, xl, cal, mail, rem |
|
|
93
|
+
|
|
94
|
+
**Install / manage:**
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
yome skill install github:Whopus/yome-skill-ppt
|
|
98
|
+
yome skill perms @yome/ppt # view granted capabilities
|
|
99
|
+
yome skill perms @yome/ppt --revoke=fs:write # revoke one
|
|
100
|
+
yome skill validate # lint the cwd skill
|
|
101
|
+
yome skill publish # publish to hub (after `yome login`)
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**Capability model.** Every skill must declare the OS resources it needs in its manifest, and the user must grant them explicitly at install time. This is not "asking for permission" in a prompt — it is a real sandbox gate:
|
|
105
|
+
|
|
106
|
+
| Capability | Meaning |
|
|
107
|
+
|---|---|
|
|
108
|
+
| `applescript` | Execute AppleScript (macOS only) |
|
|
109
|
+
| `fs:read` / `fs:write` / `fs:delete` | Filesystem access, scope-limited |
|
|
110
|
+
| `network` | Outbound network |
|
|
111
|
+
| `shell` | Arbitrary shell commands (dangerous, denied by default) |
|
|
112
|
+
|
|
113
|
+
Ungranted capabilities return `capability not granted: …`. The model sees the error and asks you to grant — never silently fails.
|
|
114
|
+
|
|
115
|
+
**Native skills available today:**
|
|
116
|
+
|
|
117
|
+
| Skill | Domain | Status |
|
|
118
|
+
|---|---|---|
|
|
119
|
+
| `@yome/ppt` | `ppt` | **stable** — 16 actions, batch-ready, 4 themes (`--doc`) |
|
|
120
|
+
| `@yome/xl` | `xl` | beta |
|
|
121
|
+
| `@yome/cal` | `cal` | beta |
|
|
122
|
+
| `@yome/rem` | `rem` | beta |
|
|
123
|
+
| `@yome/mail` | `mail` | alpha |
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### 3. Agentic Bash Kernel
|
|
128
|
+
|
|
129
|
+
> Bash is the interface. A skill is a verb. **However a user types it in a shell, the model invokes it the same way through its Bash tool.** One syntax. Two users.
|
|
130
|
+
|
|
131
|
+
The model does not have to learn a new tool:
|
|
132
|
+
|
|
133
|
+
```jsonc
|
|
134
|
+
// What the model sees in its tools list — just one Bash:
|
|
135
|
+
{ "name": "Bash", "description": "Run a shell command." }
|
|
136
|
+
|
|
137
|
+
// What the model emits when it wants to add a slide:
|
|
138
|
+
Bash({ "command": "ppt slide.add" })
|
|
139
|
+
|
|
140
|
+
// The kernel intercepts BEFORE /bin/sh sees it, routes to the
|
|
141
|
+
// installed @yome/ppt skill, runs the AppleScript, returns the result.
|
|
142
|
+
```
|
|
18
143
|
|
|
19
|
-
|
|
144
|
+
#### Three-layer skill docs · L1 / L2 / L3
|
|
145
|
+
|
|
146
|
+
All the information the model needs to pick and use a skill lives in three layers, each optimised for tokens / latency:
|
|
147
|
+
|
|
148
|
+
| Layer | Where | Who reads it | Size |
|
|
149
|
+
|---|---|---|---|
|
|
150
|
+
| **L1 — Index** | Lives in the system prompt | The model on every turn | 3 lines / ~60 tokens per skill |
|
|
151
|
+
| **L2 — Signature** | Returned by `<domain> --help` | The model once it decides to use the skill | ~50 lines / ~250 tokens |
|
|
152
|
+
| **L3 — Cookbook** | Returned by `<domain> --doc [name]` | The model when the task is non-trivial | KB of markdown |
|
|
153
|
+
|
|
154
|
+
**L1 looks like this** — the actual block for the `ppt` skill in the system prompt:
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
ppt | when: user wants to create / edit / export PowerPoint .pptx slides
|
|
158
|
+
| effects: opens Microsoft PowerPoint, writes files (first save to ~/Desktop may show OS dialog)
|
|
159
|
+
| start: ppt --help
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Just three fields, because that is all the LLM needs when picking a tool: **when to fire, what side effects, what to type first**. Authored by the skill maintainer in `yome-skill.json`:
|
|
163
|
+
|
|
164
|
+
```jsonc
|
|
165
|
+
"l1": {
|
|
166
|
+
"when": "user wants to create / edit / export PowerPoint .pptx slides",
|
|
167
|
+
"entry": "ppt --help",
|
|
168
|
+
"effects": "opens Microsoft PowerPoint, writes files"
|
|
169
|
+
}
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
**L2 (`ppt --help`)** is the hand-written `SIGNATURE.md` — one action per line, defaults inlined; the LLM can grok every arg in one read:
|
|
173
|
+
|
|
174
|
+
```
|
|
175
|
+
ppt new [path] [--force] create blank presentation
|
|
176
|
+
ppt open <path> open existing .pptx
|
|
177
|
+
ppt save [--path=P] [--force] save (or save-as)
|
|
178
|
+
ppt slides TSV: index, title, shape count
|
|
179
|
+
ppt slide.add [--index=N] [--layout=N]
|
|
180
|
+
ppt title <slide> --text=<str>
|
|
181
|
+
ppt addtext <slide> --text=<str>
|
|
182
|
+
[--left=100 --top=200 --width=400 --height=50]
|
|
183
|
+
[--size=N --bold --italic]
|
|
184
|
+
[--color=red|#RRGGBB|R,G,B]
|
|
185
|
+
[--align=left|center|right]
|
|
186
|
+
ppt fmt <slide> --shape=<n> [--size=N --bold --italic --color --bg --align]
|
|
187
|
+
ppt export --format=pdf|png|jpg --path=<file> [--force]
|
|
188
|
+
…
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
**L3 (`ppt --doc`)** lists cookbook templates; `ppt --doc blue-white` returns the full body (palette, type scale, batch example). The skill maintainer authors them under `docs/*.md` with frontmatter:
|
|
192
|
+
|
|
193
|
+
```yaml
|
|
194
|
+
---
|
|
195
|
+
name: blue-white
|
|
196
|
+
label: Blue & White
|
|
197
|
+
summary: Corporate navy on white — quarterly reviews, product launches, sales decks
|
|
198
|
+
tags: [theme, business]
|
|
199
|
+
---
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
#### Batch mode · 6× speedup
|
|
203
|
+
|
|
204
|
+
Sequential tasks are the #1 performance killer in a CLI agent — each AppleScript invocation has a 200 ms cold-start. The Yome Bash kernel has a built-in `batch` verb that fuses N steps into one call, and `--merge` further fuses N scripts into a single `osascript` process:
|
|
20
205
|
|
|
21
206
|
```bash
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
207
|
+
ppt batch --merge <<EOF
|
|
208
|
+
new ~/Desktop/q3.pptx
|
|
209
|
+
title 1 --text="Q3 Review"
|
|
210
|
+
slide.add
|
|
211
|
+
title 2 --text="Revenue"
|
|
212
|
+
addtext 2 --text="+18% YoY" --size=72 --bold --color=green --align=center
|
|
213
|
+
slide.add
|
|
214
|
+
title 3 --text="Conclusion"
|
|
215
|
+
save
|
|
216
|
+
export --format=pdf --path=~/Desktop/q3.pdf
|
|
217
|
+
EOF
|
|
25
218
|
```
|
|
26
219
|
|
|
27
|
-
|
|
220
|
+
Measured numbers — 8 sequential `ppt` actions, M1 Mac:
|
|
221
|
+
|
|
222
|
+
| Mode | Wall time | Speedup |
|
|
28
223
|
|---|---|---|
|
|
29
|
-
| `
|
|
30
|
-
| `
|
|
31
|
-
| `
|
|
32
|
-
| `YOME_PROVIDER` | API provider: `anthropic` or `openai` | auto-detected |
|
|
224
|
+
| 8 separate `ppt …` calls | 2041 ms | 1× |
|
|
225
|
+
| `ppt batch <<EOF…EOF` (sequential) | 2353 ms | 1× (parsing overhead) |
|
|
226
|
+
| `ppt batch --merge <<EOF…EOF` | **334 ms** | **6.1×** |
|
|
33
227
|
|
|
34
|
-
|
|
228
|
+
The kernel decides at the token level: is the first token a reserved system command (47 of them: `git`, `ls`, `cd`, `rm`, `node`, …)? Yes → straight to `/bin/sh`. Else → is it the domain of an installed skill? Yes → route to the skill. No → pass through to shell.
|
|
229
|
+
|
|
230
|
+
So *one Bash tool* simultaneously carries:
|
|
231
|
+
|
|
232
|
+
- Real shell commands (`ls`, `git status`, `python script.py`)
|
|
233
|
+
- Skill verbs (`ppt new`, `cal create`)
|
|
234
|
+
- Shell composition (`ppt slides | head -3` — domain stdout piped to a real shell)
|
|
235
|
+
- Batches (`ppt batch --merge <<EOF…EOF`)
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
## Skills Marketplace
|
|
35
240
|
|
|
36
241
|
```bash
|
|
37
|
-
yome
|
|
38
|
-
yome
|
|
242
|
+
yome skill search powerpoint # search public hub
|
|
243
|
+
yome skill install github:Whopus/yome-skill-ppt
|
|
244
|
+
yome skill install ./my-local-skill # local dir
|
|
245
|
+
yome skill install github:owner/repo@v2 # pin to a ref
|
|
246
|
+
yome skill update # re-pull all installed
|
|
247
|
+
yome skill rollback @yome/ppt # one-level undo
|
|
248
|
+
yome skill enable / disable / link / unlink / doctor
|
|
39
249
|
```
|
|
40
250
|
|
|
41
|
-
|
|
251
|
+
`yome skill publish` publishes the cwd to the public hub (requires `yome login` via GitHub Device Flow). The hub is just a discovery layer; skills themselves remain plain git repos. No vendor lock-in.
|
|
252
|
+
|
|
253
|
+
---
|
|
42
254
|
|
|
43
|
-
##
|
|
255
|
+
## Configuration
|
|
44
256
|
|
|
45
257
|
```bash
|
|
46
|
-
|
|
47
|
-
|
|
258
|
+
export YOME_API_KEY=sk-...
|
|
259
|
+
export YOME_BASE_URL=https://your.endpoint
|
|
260
|
+
export YOME_MODEL=claude-opus-4-6
|
|
261
|
+
export YOME_PROVIDER=anthropic # or openai (auto-detected from base URL)
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
Or persist once into `~/.yome/config.json`:
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
yome --key sk-... --base-url https://… --model …
|
|
268
|
+
```
|
|
48
269
|
|
|
49
|
-
|
|
50
|
-
yome "help me read package.json"
|
|
270
|
+
**Storage layout:**
|
|
51
271
|
|
|
52
|
-
# Set config and run
|
|
53
|
-
yome --key sk-xxx --base-url https://dashscope.aliyuncs.com/apps/anthropic
|
|
54
272
|
```
|
|
273
|
+
~/.yome/
|
|
274
|
+
├── config.json # API config
|
|
275
|
+
├── skills/ # installed native skills
|
|
276
|
+
│ ├── .index.json # cached registry
|
|
277
|
+
│ └── yome/
|
|
278
|
+
│ └── ppt/ # the @yome/ppt skill, exactly the git repo
|
|
279
|
+
└── threads/ # session history (per cwd)
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
---
|
|
283
|
+
|
|
284
|
+
## Philosophy
|
|
285
|
+
|
|
286
|
+
> *Users will not learn a new product. Users will not change the way they already work.*
|
|
287
|
+
|
|
288
|
+
We do not replace your tools. We **empower** them without interrupting the way you already work. Mail, Chat, Docs, Calendar, Files, Web — they already live on your machine. We just bolt on a living-context layer and wake them up.
|
|
289
|
+
|
|
290
|
+
| Before | After |
|
|
291
|
+
|---|---|
|
|
292
|
+
| Passive Tool | Proactive Agent |
|
|
293
|
+
| You route context → tool | Yome reaches into every device for you |
|
|
294
|
+
| 12 contexts, 0 AI | 1 buddy that knows everything about you |
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## Project Status
|
|
299
|
+
|
|
300
|
+
| Area | Status |
|
|
301
|
+
|---|---|
|
|
302
|
+
| Bash kernel (tokenizer + dispatcher + permission gate) | **stable** |
|
|
303
|
+
| Native skill format (yome-skill.json + L1/L2/L3 docs) | **stable** |
|
|
304
|
+
| `@yome/ppt` (16 actions, batch + 4 themes) | **stable** |
|
|
305
|
+
| Skill hub (search / install / publish) | **stable** |
|
|
306
|
+
| Capability model (sandbox grants) | **stable** |
|
|
307
|
+
| Thread history + case bundles | **stable** |
|
|
308
|
+
| Live history compaction | beta |
|
|
309
|
+
| Daemon (OS-level always-on loop) | experimental, on `next` branch |
|
|
310
|
+
| Oncall (event-driven, auto-paging) | next-up |
|
|
311
|
+
|
|
312
|
+
**Daemon roadmap** *(scoped, on `next`)*
|
|
313
|
+
|
|
314
|
+
- [ ] **Notification interception** — WeChat / Feishu / Slack / WhatsApp / iMessage. Surface what matters, suppress noise, draft replies before you ask.
|
|
315
|
+
- [ ] **Routine automation** — subscribed feeds, blogs, daily digests, alarms, calendar. Fires without you opening anything.
|
|
316
|
+
- [ ] **State-change watchers** — experiment finished, CPU/GPU spike, build green, someone @-pinged you. Push the moment, not the digest.
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## License
|
|
321
|
+
|
|
322
|
+
[Apache License 2.0](./LICENSE) — Yome Agent + official skills (`yome-skill-ppt`, `yome-skill-xl`, `yome-skill-cal`, `yome-skill-rem`, `yome-skill-fs`).
|
|
323
|
+
|
|
324
|
+
Community-contributed skills published to the Yome hub are author-owned git repositories under their own license terms.
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
<div align="center">
|
|
329
|
+
|
|
330
|
+
**YOME — Your Universal AI Work Buddy.**
|
|
331
|
+
*Know everything. Run everywhere. Empower everyone.*
|
|
332
|
+
|
|
333
|
+
</div>
|