Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
TagTime CLI - Agent Skill TagTime CLI - Agent Skill This skill enables you to interact with local Obsidian/Logseq vaults or TagTime's cloud-based knowledge management system through the tt command-line tool. Overview TagTime CLI allows you to save notes, search your knowledge base, and retrieve materials directly from the terminal. It supports two modes: - **Local mode**: Work with local Obsidian, Logseq, or Markdown folders - **Cloud mode**: Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
tt is best for two workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
TagTime CLI - Agent Skill TagTime CLI - Agent Skill This skill enables you to interact with local Obsidian/Logseq vaults or TagTime's cloud-based knowledge management system through the tt command-line tool. Overview TagTime CLI allows you to save notes, search your knowledge base, and retrieve materials directly from the terminal. It supports two modes: - **Local mode**: Work with local Obsidian, Logseq, or Markdown folders - **Cloud mode**:
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Alesheng
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/aleSheng/tt.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Alesheng
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# Check current mode tt mode # Add a local vault tt vault add <name> <path> tt vault add obsidian ~/Documents/Obsidian/MyVault # Switch to local mode tt mode local
bash
tt whoami # If not authenticated: tt login
bash
# View current mode tt mode # Switch to local mode (requires vault) tt mode local # Switch to cloud mode tt mode cloud
bash
# Add a vault (auto-detects Obsidian/Logseq) tt vault add <name> <path> tt vault add notes ~/Documents/Obsidian/Vault tt vault add logseq ~/Documents/Logseq --type logseq # List all vaults tt vault list # Set default vault tt vault use <name> # Show vault info tt vault info # Remove vault (does not delete files) tt vault remove <name>
bash
# Save a quick note tt save "Your note content here" # Save with title tt save "Content" --title "My Note Title" # Save with tags tt save "Content" --tags "tag1,tag2" # Save from a file tt save /path/to/file.md # Save from stdin (useful for piping) echo "piped content" | tt save cat file.txt | tt save --title "From File" git diff | tt save --title "Today's changes" # Local mode specific options tt save "content" --folder "Projects" # Save to specific folder tt save "Today's log" --daily # Append to daily note # Quiet mode - only output ID/path tt save "content" --quiet
bash
# Basic search tt search "keyword" # Limit results tt search "docker" --limit 5 # Local mode: search in specific folder tt search "rust" --folder "Programming" # JSON output (for programmatic use) tt search "api" --json
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
TagTime CLI - Agent Skill TagTime CLI - Agent Skill This skill enables you to interact with local Obsidian/Logseq vaults or TagTime's cloud-based knowledge management system through the tt command-line tool. Overview TagTime CLI allows you to save notes, search your knowledge base, and retrieve materials directly from the terminal. It supports two modes: - **Local mode**: Work with local Obsidian, Logseq, or Markdown folders - **Cloud mode**:
This skill enables you to interact with local Obsidian/Logseq vaults or TagTime's cloud-based knowledge management system through the tt command-line tool.
TagTime CLI allows you to save notes, search your knowledge base, and retrieve materials directly from the terminal. It supports two modes:
This is useful for:
# Check current mode
tt mode
# Add a local vault
tt vault add <name> <path>
tt vault add obsidian ~/Documents/Obsidian/MyVault
# Switch to local mode
tt mode local
The CLI must be configured with authentication:
tt whoami
# If not authenticated:
tt login
# View current mode
tt mode
# Switch to local mode (requires vault)
tt mode local
# Switch to cloud mode
tt mode cloud
# Add a vault (auto-detects Obsidian/Logseq)
tt vault add <name> <path>
tt vault add notes ~/Documents/Obsidian/Vault
tt vault add logseq ~/Documents/Logseq --type logseq
# List all vaults
tt vault list
# Set default vault
tt vault use <name>
# Show vault info
tt vault info
# Remove vault (does not delete files)
tt vault remove <name>
When to use: When user wants to configure which local vault to work with.
Save text content to vault (local) or TagTime (cloud):
# Save a quick note
tt save "Your note content here"
# Save with title
tt save "Content" --title "My Note Title"
# Save with tags
tt save "Content" --tags "tag1,tag2"
# Save from a file
tt save /path/to/file.md
# Save from stdin (useful for piping)
echo "piped content" | tt save
cat file.txt | tt save --title "From File"
git diff | tt save --title "Today's changes"
# Local mode specific options
tt save "content" --folder "Projects" # Save to specific folder
tt save "Today's log" --daily # Append to daily note
# Quiet mode - only output ID/path
tt save "content" --quiet
When to use: When the user wants to save notes, code snippets, ideas, or any text content to their knowledge base.
Search through the knowledge base:
# Basic search
tt search "keyword"
# Limit results
tt search "docker" --limit 5
# Local mode: search in specific folder
tt search "rust" --folder "Programming"
# JSON output (for programmatic use)
tt search "api" --json
When to use: When the user wants to find previously saved notes or materials.
Retrieve a specific material:
# Get by reference number from search results
tt get @1
tt get @2
# Cloud mode: Get by ID
tt get abc123def456
tt get abc123de
# Local mode: Get by path
tt get "Programming/rust-notes.md"
# Save to file
tt get @1 --output ./local-file.md
When to use: When the user wants to view or download a specific material from search results.
View recently added materials (cloud mode):
# List recent materials
tt recent
# Limit results
tt recent --limit 5
# JSON output
tt recent --json
When to use: When the user wants to see their most recently saved materials.
Import multiple files or directories to TagTime:
# Import multiple files
tt import ./notes/*.md
# Import directory recursively
tt import ./notes/ --recursive
# Add tags to all imported items
tt import ./docs/ --tags "imported,work"
# Preview without importing
tt import ./vault/ --dry-run
# Ignore certain files
tt import ./notes/ --ignore "*.draft.md" --ignore "temp/*"
# JSON output
tt import ./notes/ --json
When to use: When the user wants to bulk import local notes, migrate from other apps, or backup local files to TagTime.
Export materials to local files:
# Export all materials
tt export -o ./backup/
# Export as JSON
tt export -o ./backup/ --format json
# Filter by tag
tt export -o ./work-notes/ --tag "work"
# Filter by search query
tt export -o ./backup/ --search "project"
# Include metadata (frontmatter)
tt export -o ./backup/ --include-metadata
# Custom filename template
tt export -o ./backup/ --filename-template "{date}-{title}"
# Available placeholders: {id}, {title}, {date}, {type}, {tag}
# Preview without exporting
tt export -o ./backup/ --dry-run
# Limit number of exports
tt export -o ./backup/ --limit 50
When to use: When the user wants to backup their notes, export for use in other apps, or create local copies.
# Check current login status
tt whoami
# Interactive login (opens browser)
tt login
# Login with API token
tt login --token <api-key>
# Specify custom server
tt login --base-url https://tagtime.ai
Manage the Claude Code SKILL.md integration:
# Install SKILL.md to ~/.claude/skills/tagtime-cli/
tt skill install
# Force reinstall (update to latest version)
tt skill install --force
# Check installation status
tt skill status
# List all installed Claude Code skills
tt skill list
# Uninstall SKILL.md
tt skill uninstall
# Display SKILL.md content
tt skill show
# Get installation path
tt skill path
When to use: When setting up or managing Claude Code AI assistance for TagTime CLI.
$ tt search "rust"
Found 3 result(s):
@1 Rust 所有权笔记
ID: abc123de... | Type: text
...所有权模型很有意思...
@2 Cargo 配置技巧
ID: def456gh... | Type: text
...
{
"success": true,
"data": {
"total": 3,
"items": [
{"id": "abc123de", "title": "Rust 所有权笔记", "type": "text"}
]
}
}
# Setup vault
tt vault add notes ~/Documents/Obsidian/MyVault
tt mode local
# Search and retrieve
tt search "rust ownership"
tt get @1
# Save new notes
tt save "Quick idea about project" --title "Project Idea" --folder "Ideas"
git diff | tt save --title "Today's changes" --folder "Dev"
# Daily notes
tt save "Finished feature X" --daily
# Save a note
tt save "Important meeting notes about Project X" --title "Project X Meeting" --tags "meeting,project-x"
# Later, search for it
tt search "Project X"
# Get the full content
tt get @1
# Save current file content
cat ./mycode.py | tt save --title "Python Helper Functions" --tags "python,utilities"
# Save command output
docker logs app | tt save --title "Container Logs" --tags "debug"
# Search for related notes
tt search "docker compose" --limit 10
# Get detailed content of relevant result
tt get @3 --output ./reference.md
# Import from Obsidian vault
tt import ./obsidian-vault/ --recursive --tags "imported,obsidian"
# Export for backup
tt export -o ./backup/ --include-metadata
# Export specific tag
tt export -o ./work-backup/ --tag "work" --format markdown
If you encounter errors:
Not logged in: Run tt login first (cloud mode)No vault configured: Run tt vault add <name> <path> (local mode)Not found: Check the material ID/path is correctNetwork error: Check internet connection (cloud mode)File too large: Files over 1MB are not supportedtt mode to know if working locally or in cloudtt vault list to see available vaults--json flag when you need to parse output programmatically@1, @2 from search results for quick accessecho "content" | tt save--dry-run with import/export to preview operations before executing--quiet with save to get just the ID/path for scripting--folder in local mode to organize notes into directories--daily to append to daily notes (great for logging)Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/alesheng-tt/snapshot"
curl -s "https://xpersona.co/api/v1/agents/alesheng-tt/contract"
curl -s "https://xpersona.co/api/v1/agents/alesheng-tt/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/alesheng-tt/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/alesheng-tt/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/alesheng-tt/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/alesheng-tt/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/alesheng-tt/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/alesheng-tt/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:35:39.392Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "two",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:two|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Alesheng",
"href": "https://github.com/aleSheng/tt",
"sourceUrl": "https://github.com/aleSheng/tt",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:15:33.715Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/alesheng-tt/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/alesheng-tt/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:15:33.715Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/aleSheng/tt",
"sourceUrl": "https://github.com/aleSheng/tt",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:15:33.715Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/alesheng-tt/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/alesheng-tt/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to tt and adjacent AI workflows.