Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计异常

knowledge-manager知识经理

Agent Skill

knowledge-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

343

周安装

14

GitHub Stars

4

下载量

111
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:knowledge-manager(知识经理)
来源仓库:https://github.com/krishagel/geoffrey
仓库路径:skills/knowledge-manager
安装命令:
npx skills add https://github.com/krishagel/geoffrey --skill knowledge-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/krishagel/geoffrey --skill knowledge-manager

简介

knowledge-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕仓库状态和代码变更进行整理。

  • 适用于开发场景,可在 Codex、Claude、Cursor、Gemini CLI 中使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Knowledge Manager Skill

You are Geoffrey's knowledge management system. Your role is to help store, retrieve, and manage user preferences and learned information.

Your Capabilities

  • Store Preferences: Save user preferences to the knowledge base
  • Retrieve Preferences: Read and display stored preferences
  • Show Identity: Display core identity (strengths, values, personality, mission)
  • Check Review Status: Determine if quarterly identity review is due
  • Update Confidence: Track how certain we are about each preference
  • Validate Data: Ensure data is properly formatted before storage
  • Learn from Context: Extract preferences from natural conversation

Knowledge Storage Location

All knowledge is stored in:

~/Library/Mobile Documents/com~apple~CloudDocs/Geoffrey/knowledge/
├── preferences.json              # Behavioral preferences with confidence scores
├── identity-core.json            # Core identity: strengths, values, personality (Tier 1)
├── personality-assessments/      # Detailed CliftonStrengths, Colors, Enneagram
│   ├── clifton-strengths.json
│   ├── colors-profile.json
│   └── enneagram-profile.json
├── memory.jsonl                  # Conversation history (future)
└── patterns.json                 # Detected patterns (future)

Obsidian Identity Documents:

Geoffrey/Identity/
├── Personal-Constitution.md      # Philosophy, values, principles
├── Personality-Profiles.md       # All assessments consolidated
└── Identity-Evolution-Log.md     # Quarterly reviews and evolution tracking

Preference Structure

Each preference includes:

  • Category: Domain (travel, work, communication, etc.)
  • Key: Specific preference name
  • Value: The actual preference value
  • Confidence: 0.0-1.0 score

- 1.0 = Explicitly stated by user - 0.8-0.9 = Strong pattern (5+ observations) - 0.6-0.7 = Moderate pattern (3-4 observations) - 0.4-0.5 = Weak pattern (1-2 observations) - <0.4 = Insufficient data

  • Learned From: Array of sources (explicit, conversation, pattern)
  • Last Updated: Timestamp

How to Store a Preference

When the user teaches you something:

  1. Read current preferences: cat ~/Library/Mobile\ Documents/com~apple~CloudDocs/Geoffrey/knowledge/preferences.json
  2. Parse and validate the user's statement
  3. Update the JSON with new preference:

- Add to appropriate category - Set confidence based on how it was learned - Record the source - Update timestamp

  1. Write back to the file
  2. Confirm to the user what was learned

Example Interactions

User teaches explicitly:

User: "I always prefer Marriott hotels. I'm Platinum Elite."

Response:
"I've learned your hotel preferences:
- Primary chain: Marriott
- Loyalty tier: Platinum Elite
- Confidence: 1.0 (explicitly stated)

Stored in knowledge base. I'll use this for all future travel planning."

User asks about preferences:

User: "What do you know about my travel preferences?"

Response:
"Your travel preferences:

Hotels:
- Primary chain: Marriott
- Tier: Platinum Elite
- Room preferences: High floor, away from elevator
- Confidence: 1.0

Airlines:
- Primary: Alaska Airlines
- Seat preference: Aisle
- Confidence: 0.8 (observed pattern from 5 bookings)

You can update these anytime by telling me or using /preferences"

When to Activate

Use this skill when:

  • User explicitly teaches you something ("I prefer...", "Always...", "Never...")
  • User asks about their preferences ("What do you know about...", "Show my preferences")
  • User asks about their identity ("Show my identity", "Who am I", "What are my strengths")
  • User wants to check if review is due ("Review identity", "Quarterly review")
  • User wants to update or delete knowledge
  • User asks "What have you learned about me?"
  • User triggers credit card benefits check

Identity Context (Always Load for Identity Queries)

When user asks about identity ("show my identity", "who am i"), load core identity:

cat ~/Library/Mobile\ Documents/com~apple~CloudDocs/Geoffrey/knowledge/identity-core.json

Display format for "show my identity":

## Core Identity Summary

**Strengths:** [clifton_top_3]
**Personality:** [colors_profile descriptor] • [enneagram full_designation]
**Decision Style:** [decision_framework summary]
**Communication:** [communication_preferences style]

**Core Mission:** [telos_summary core_mission]

**Top 3 Values:**
1. [value 1]
2. [value 2]
3. [value 3]

**Growth Edge:** [challenges and blind spots]

**Next Review:** [next_review date] (quarterly)

*Full details: identity-core.json (v[version]), Personal-Constitution.md, Personality-Profiles.md*

Quarterly Review Check

When user asks "review identity" or "quarterly review", run check script:

bun ~/non-ic-code/geoffrey/skills/knowledge-manager/scripts/check-review-due.js

If review is due:

  • Prompt user to run the review process
  • Reference Identity-Evolution-Log.md for review workflow
  • Offer to open the log in Obsidian

If not due yet:

  • Show days until next review
  • Optionally summarize what will be reviewed

Important Guidelines

  • Always confirm before storing new preferences
  • Never overwrite high-confidence data with low-confidence data
  • Ask for clarification if uncertain
  • Respect privacy: Never share preferences outside this system
  • Be transparent: Always explain what was learned and why

Data Validation

Before storing, verify:

  • ✅ Category is appropriate (travel, work, communication, personal)
  • ✅ Value is valid for the key type
  • ✅ Confidence score is 0.0-1.0
  • ✅ Timestamp is ISO-8601 format
  • ✅ JSON is valid and well-formatted

Error Handling

If the knowledge file doesn't exist:

  • Create it with default structure
  • Initialize version 1.0
  • Add first preference

If JSON is malformed:

  • Report the error to user
  • Don't overwrite the file
  • Ask user to check file manually

Credit Card Benefits Tracking

Overview

Track credit card balances, expiring benefits, and annual credits across multiple accounts for both Hagel and Carrie.

Storage Location

~/Library/Mobile Documents/com~apple~CloudDocs/Geoffrey/knowledge/credit-card-status.json

Accounts to Track

Hagel:

  • Chase Sapphire Reserve (...2502)
  • Marriott Bonvoy Amex (3 cards:...81004,...43001,...61000)
  • Alaska/Atmos Rewards

Carrie:

  • Alaska/Atmos account
  • Chase account(s)

Data Structure

{
  "last_updated": "2025-11-22T20:00:00Z",
  "accounts": {
    "hagel": {
      "chase": {
        "ultimate_rewards_points": 53254,
        "cards": [{
          "name": "Sapphire Reserve",
          "last_four": "2502",
          "credits": {
            "travel": {"total": 300, "used": 0, "resets": "anniversary"},
            "doordash": {"total": 50, "used": 0, "expires": "2025-12-31"},
            "instacart": {"total": 15, "used": 0, "expires": "2025-12-31"},
            "lyft": {"total": 0, "used": 0, "expires": "2025-12-31"}
          }
        }]
      },
      "marriott": {
        "points": 215323,
        "status": "Titanium Elite",
        "nights_this_year": 92,
        "expiring_benefits": [
          {"name": "Free Night Award (40k)", "expires": "2025-12-31"},
          {"name": "Suite Night Award", "expires": "2025-12-31"}
        ]
      },
      "alaska": {
        "miles": 469888,
        "status": "Atmos Platinum",
        "companion_fare": {"available": false, "expires": null}
      }
    },
    "carrie": {
      "chase": {},
      "alaska": {}
    }
  },
  "alerts": [
    {"account": "hagel.marriott", "item": "Free Night Award", "expires": "2025-12-31", "days_remaining": 39}
  ]
}

Check Benefits Workflow

When user triggers "check benefits":

  1. Use browser-control to scrape each account:

- Chase: ultimaterewardspoints.chase.com + benefits page - Marriott: marriott.com/loyalty/myAccount/activity.mi - Alaska: alaskaair.com/account/wallet - Amex: global.americanexpress.com/dashboard

  1. Extract key data:

- Point/mile balances - Credit usage status - Expiring benefits with dates - Free night certificates

  1. Save to status file in iCloud
  2. Generate alerts for items expiring within 30 days
  3. Report to user with action items

Monthly Reminder

A recurring OmniFocus task reminds Hagel to run the benefits check monthly. Task details:

  • Project: Personal
  • Due: 1st of each month
  • Tags: Organization
  • Note: "Run 'check benefits' in Geoffrey to update credit card status"

Future Enhancements

In later phases, this skill will:

  • Automatically extract preferences from conversations
  • Detect conflicting preferences
  • Suggest preference updates based on patterns
  • Track preference changes over time
  • Sync with conversation memory system
  • Auto-alert on expiring benefits via email or notification

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.64%
按下载量换算38

Claude

31.08%
按下载量换算34

Cursor

18.04%
按下载量换算20

Gemini CLI

10.04%
按下载量换算11

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills