feat(core): add embedded v2 session runtime and tool foundation (#30632)
This commit is contained in:
@@ -18,7 +18,9 @@ export const Plugin = PluginV2.define({
|
||||
const skill = yield* SkillV2.Service
|
||||
const transform = yield* skill.transform()
|
||||
const entries = yield* config.entries()
|
||||
const items = entries.flatMap((entry) => (entry.type === "document" ? (entry.info.skills ?? []) : []))
|
||||
const items = entries.flatMap((entry) =>
|
||||
entry.type === "document" ? (entry.info.skills ?? []) : [path.join(entry.path, "skill"), path.join(entry.path, "skills")],
|
||||
)
|
||||
|
||||
yield* transform((editor) => {
|
||||
for (const item of items) {
|
||||
|
||||
Reference in New Issue
Block a user