npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@colomind/frontend

v0.1.1

Published

ColoMind - AI Assistant Web Console

Readme

@colomind/frontend

ColoMind 前端 — 普通用户的 AI 伙伴


特点

  • 零概念 — 不需要知道 Agent/Provider/SOP 等技术术语
  • 零配置 — 没有配置文件,所有设置通过界面完成
  • 隐私优先 — 数据只存在你的设备上

功能

核心功能

| 功能 | 说明 | | -------- | ---------------------------------------- | | 对话 | 和 AI 聊天,AI 会记住你说过的话 | | 自动化 | 每天提醒待办、心情不好时关心你、每周总结 | | 安全保护 | 自动过滤敏感信息,防止泄露 | | 个人助理 | 待办、习惯、心情、目标、财务等 |

设置

| 设置 | 选项 | | -------- | ---------------------------------- | | AI 行为 | 简洁/标准/详细、被动/问候/关心 | | 心理健康 | 心情追踪、低落时关心、提醒联系朋友 | | 隐私 | 查看AI记住的事、导出数据、清除数据 |


开发

开发环境

cd packages/frontend

# 安装依赖
npm install

# 启动 mock API(模拟后端)
npx tsx mock-server.ts

# 启动前端开发服务器
npx vite

访问 http://localhost:5173

构建

npm run build

目录结构

packages/frontend/
├── src/
│   ├── views/           # 页面
│   │   ├── Home.vue           # 首页
│   │   ├── ChatConsole.vue    # 对话
│   │   ├── Agents.vue         # AI 助手
│   │   ├── Skills.vue         # 自动化
│   │   ├── Sentinel.vue       # 安全保护
│   │   ├── Onboarding.vue     # 引导流程
│   │   ├── Settings/          # 设置
│   │   └── Assistant/         # 个人助理模块
│   ├── components/      # 组件
│   ├── api/             # API
│   ├── stores/          # 状态
│   └── i18n/            # 国际化
├── mock-server.ts       # Mock API
└── dist/                # 构建输出

技术栈

  • Vue 3 + TypeScript
  • Vite
  • Pinia
  • Vue Router
  • ECharts