🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@agentick/react

Package Overview
Dependencies
Maintainers
2
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentick/react - npm Package Compare versions

Comparing version
0.5.0
to
0.7.0
+3
-3
package.json
{
"name": "@agentick/react",
"version": "0.5.0",
"version": "0.7.0",
"description": "React hooks and components for Agentick applications",

@@ -24,4 +24,4 @@ "repository": {

"dependencies": {
"@agentick/client": "0.5.0",
"@agentick/shared": "0.6.0"
"@agentick/client": "0.7.0",
"@agentick/shared": "0.7.0"
},

@@ -28,0 +28,0 @@ "devDependencies": {

@@ -235,4 +235,8 @@ # @agentick/react

id: "file",
trigger: { type: "char", char: "#" },
resolve: async (query) => searchFiles(query),
match({ value, cursor }) {
const idx = value.lastIndexOf("#", cursor - 1);
if (idx < 0) return null;
return { from: idx, query: value.slice(idx + 1, cursor) };
},
resolve: async ({ query }) => searchFiles(query),
});

@@ -239,0 +243,0 @@ }, [editor]);