
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
copilot-one
Advanced tools
Supercharge your existing Web/React App with a Siri-like AI Assistant.
These agents focuses on reducing learning curve for user and enalbes handsfree expereince for content discovery, feature discovery, user onboarding and form filling.
Goal is to create an open protocol for AI Assistants, Agents & Actions. Checkout Future of AI Assistants using this sdk.
Before using this package, ensure you have the following:
An existing React application
Create copilot credentials from Sugar AI or Self Hosted Account
You can install the @sugar-ai/copilot-one-js package via npm in your react project
npm install @sugar-ai/copilot-one-js@latest
In your main file. src/App.tsx
import { useCopilot, CopilotConfigType, CopilotProvider, VoiceAssistant } from '@sugar-ai/copilot-one-js';
const copilotConfig: CopilotConfigType = {
copilotId: '<copilotId>',
server: {
endpoint: 'http://play.sugarcaneai.dev/api',
token: '<token>',
},
ai: {
defaultPromptTemplate: '<prompt template>',
defaultPromptVariables: {
$AGENT_NAME: 'Sugar',
},
successResponse: 'Task is completed',
failureResponse: 'I am not able to do this'
},
}
// Wrap the App with Copilot Provider
<CopilotProvider config={copilotConfig}>
<TodoApp />
</CopilotProvider>
We are taking a exmple of a todo App. To track User's Current Screen Context using useStateEmbedding
const TodoApp = () => {
const { useStateEmbedding, registerAction, unregisterAction } = useCopilot(); // Add
// const [todos, setTodos] = useState([]);
const [todos, setTodos] = useStateEmbedding([], 'todoApp', 'todos'); // Switch
...
}
Register functions for create, delete and mark as done.
const TodoApp = () => {
...
// Functionalies
const addTodo = (task) => {...}};
const deleteTodo = (task) => {...};
const markTodoAsDoneById = function (todoId: number) {...};
// Register addTodo function
registerAction(
'addTodo',
{
name: 'addTodo',
description: 'Add a new todo',
parameters: [
{
name: 'task',
type: 'string',
description: 'Task description',
required: true,
}
],
},
addTodo,
);
...
}
Web SDK Released
POC
[] Navigation Agent
[] Form Agent
FAQs
Add Siri Like Native AI Assistants to your App
We found that copilot-one demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.