Search: notes files memory cli storage
100 result(s) on page 1
For_example,_add_a_2-second_wait_after_`mouse_click`_to_avoid_operation_failure_due_to_slow_system_response.
Professional Windows-only visual automation toolkit with 11 modules for screenshot, OCR, template matching, clicks, input, environment setup, and looping tasks.
quarantinedai-agentopenclawvisual-automationClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__OpenClaw_11-in-1_Visual_Automation_Suite_(Windows_Only)_Complete_visual_automation_toolkit_with_11_integrated_modules.__###_๐ฐ_Price_One-time_purchase:_**$2.99**_(Lifetime_access_to_all_modules_+_future_updates)__###_๐_How_to_Purchase_1.__Pay_via_PayPal_Invoice:_____๐_[Click_to_pay_$2.99](https:____www.paypal.com__invoice__p__#V2RC9S8LVKJ434R9)_2.__After_payment,_send_your_email_to:_**[email protected]**_3.__I_will_send_the_full_download_link_within_12_hours.__###_๐ฅ๏ธ_Compatibility_-_Windows_10____11_only_-_Not_compatible_with_macOS____Linux_##_1._Product_Basic_Description_###_1.1_Core_Functions_Provides_professional_universal_computer_vision_automation_capabilities_covering_the_full-process_visual_automation_scenarios_such_as_environment_initialization,_full-screen_automatic_screenshot,_OCR_text_recognition,_template_matching_target_localization,_mouse_click_simulation,_keyboard_input_simulation,_and_complete_environment_initialization_&_cleanup_mechanisms._It_supports_custom_task_combination_and_cyclic_execution.__###_1.2_Version_&_Directory_Description_-_Core_Capability:_Flexible_invocation_based_on_minimum_executable_units,_supporting_parameter_customization,_result_variable_inheritance,_and_custom_skill_saving._All_functions_can_be_used_directly_with_the_`call`_command_right_after_extracting_the_package._-_Directory_Structure:____-_`claw.json`_-_Skill_package_configuration_file___-_`skills__all_skills.claw`_-_All_skill_unit_definitions___-_`templates__`_-_Directory_for_template_images_(place_your_template_images_here_for_matching)___-_Temporary_file_directory_`temp__`_(for_storing_screenshots_like_temp__screen.png)_is_automatically_created_after_executing_`init_env`;_temporary_screenshot_files_can_be_cleaned_up_via_`clean_temp`._-_Version_Info:_Current_version:_1.0.0;_Compatible_with_OpenClaw_>=_1.0.0__###_1.3_Paid_Attribute_This_automation_skill_system_(vision-auto-tool-pro)_is_a_paid_professional_toolkit._The_document_does_not_explicitly_authorize_commercial_use_of_the_toolkit._The_paid_permission_only_covers_basic_usage_(non-commercial_by_default),_and_commercial_use_requires_separate_confirmation_of_authorization_with_the_provider_(e.g.,_purchasing_a_commercial_license,_signing_a_commercial_agreement).__##_2._Complete_Skill_Invocation_Manual_###_Important_Notes_Ensure_sufficient_time_is_reserved_for_the_computer_to_respond_to_each_click_or_operation._For_example,_add_a_2-second_wait_after_`mouse_click`_to_avoid_operation_failure_due_to_slow_system_response.__###_2.1_List_of_All_Minimum_Executable_Units_|_Unit_Name_______________|_Fixed_Call_Name__________|_Function_Description_________________________________________________________________|_Individual_Call_Method__________________________|_|-------------------------|--------------------------|--------------------------------------------------------------------------------------|-------------------------------------------------|_|_Initialize_Environment__|_`init_env`_______________|_Create_directory_structure,_clear_temporary_files,_check_template_directory__________|_`call_init_env`__________________________________|_|_Full_Screen_Screenshot__|_`screenshot_full`________|_Capture_entire_screen_and_save_as_temp__screen.png____________________________________|_`call_screenshot_full`___________________________|_|_Check_Screenshot_Validity_|_`check_screenshot_valid`_|_Check_for_black_screen__freeze,_wake_up_the_interface_if_invalid______________________|_`call_check_screenshot_valid`____________________|_|_Wake_Interface__________|_`wake_window`____________|_Solve_the_problems_of_background_non-rendering_and_black_screenshot___________________|_`call_wake_window`_______________________________|_|_OCR_Recognition_________|_`ocr_recognize`__________|_Recognize_all_text_on_the_screen_and_their_corresponding_coordinates__________________|_`call_ocr_recognize`_____________________________|_|_Template_Matching_______|_`template_match`_________|_Use_template_image_to_match_and_locate_icons__buttons__________________________________|_`call_template_match_category_template_name`_____|_|_Unified_Localization____|_`locate_target`__________|_Prioritize_OCR_positioning;_use_template_matching_if_not_found,_return_coordinates___|_`call_locate_target_target_text_OR_category+template_name`_|_|_Mouse_Click_____________|_`mouse_click`____________|_Move_to_the_specified_coordinates_and_perform_click_operation________________________|_`call_mouse_click_X_Y_[click_type,_default=single_click]`_|_|_Keyboard_Input__________|_`keyboard_input`_________|_Input_text_after_locating_the_input_box______________________________________________|_`call_keyboard_input_target_coords__description_input_content`_|_|_Clean_Temporary_Files___|_`clean_temp`_____________|_Delete_temporary_screenshots_and_free_up_storage_space_______________________________|_`call_clean_temp`________________________________|_|_Loop_Restart____________|_`loop_restart`___________|_Wait_2_seconds_then_go_back_to_the_screenshot_step_and_restart_the_process___________|_`call_loop_restart`______________________________|__###_2.2_Method_for_Invoking_Individual_Units_####_Invocation_Format_```_call_[unit_call_name]_[parameter...]_```_####_Invocation_Examples_-_Initialize_environment:_`call_init_env`_-_Template_match_browser_icon_on_desktop:_`call_template_match_desktop_web`_-_Perform_double-click_at_coordinates_(100,200):_`call_mouse_click_100_200_double`__###_2.3_Combine_into_Custom_New_Tasks_By_writing_one_call_instruction_per_line_in_execution_order,_you_can_combine_them_into_a_custom_new_task,_which_supports_variable_inheritance,_looping,_and_permanent_saving.__####_Format_Example_(Open_Browser)_```_#_Task_Name:_Open_Browser_call_init_env_call_screenshot_full_call_check_screenshot_valid_call_locate_target_browser_desktop_Browser_call_mouse_click_{{resultX}}_{{resultY}}_double_call_clean_temp_```__####_Combination_Steps_1._**Write_task_name_and_description_first**_(for_easier_identification_later)_2._**In_execution_order**,_write_one_`call_unit_name_parameters`_instruction_per_line_3._Coordinates_can_use_variables_`{{resultX}}`__`{{resultY}}`_to_inherit_the_output_result_of_the_previous_unit_4._If_cyclic_execution_is_required,_add_`call_loop_restart`_at_the_end_5._**Save_custom_skill**:_Use_`save_skill_skill_name_instruction_list`_to_save_the_task_permanently,_then_call_it_directly_with_`call_skill_name`__###_2.4_Complete_Main_Flow_Invocation_Example_```_#_General_Main_Flow:_vision_auto_main_call_init_env_call_screenshot_full_call_check_screenshot_valid_call_ocr_recognize_#_If_template_matching_is_needed,_add_this_line:_call_template_match_category_name_call_locate_target_target_text_call_mouse_click_{{X}}_{{Y}}_#_If_text_input_is_needed,_replace_the_above_line_with:_call_keyboard_input_{{X}}_{{Y}}_input_content_call_clean_temp_#_Add_this_line_if_you_need_to_loop:_call_loop_restart_```___###_Important_Notes_Ensure_sufficient_time_is_reserved_for_the_computer_to_respond_to_each_click_or_operation.___>__For_example,_add_a_2-second_wait_after_`mouse_click`_to_avoid_operation_failure_due_to_slow_system_response.Northbase
Access and manage your persistent notes and workspace files via the Northbase CLI when you explicitly request reading, writing, listing, or syncing them.
quarantinednotes files memory cli storageClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__NorthbaseMemory
Structured memory architecture โ hierarchical storage, daily logging, weekly compaction, proactive memory hygiene.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.5
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MemoryStorage
Choose and architect storage systems for applications with the right tradeoffs.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__StorageKnowledge_card_creator,_your_memory_notes
Knowledge Card generator. Extracts key knowledge from user-provided material (text, files, URLs), determines optimal card type (concept/memo/process/comparis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Knowledge_card_creator,_your_memory_notesfiles-memory-system
Multi-context memory management system for OpenClaw agents with group-isolated storage, global shared memory, workspace organization, and group-specific skil...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__files-memory-systemMemory_Notes
How to write well-structured Basic Memory notes: frontmatter, observations with semantic categories, relations with wiki-links, and best practices for buildi...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_NotesBeastXA_Memory_Pro
Production-grade memory system for OpenClaw agents. Auto-organizes notes into topic files, prevents context loss during compaction, and runs daily/weekly mai...
quarantinedmemoryopenclawClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__BeastXA_Memory_ProMemory_Organizer
Organize, compress, and curate OpenClaw memory without polluting permanent memory. Use when the user wants to compress memory files, clean dated memory notes...
quarantinedcompressioncontextmemoryClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_OrganizerMemSync_Dual_Memory_System
Logs all OpenClaw conversations and events with role tags, saving to JSONL and Memvid for full context search and monthly sharded or single-file storage.
quarantinedagent-memoryarchivebackupClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MemSync_Dual_Memory_Systemclaudemem_โ_Persistent_Agent_Memory_&_Notes
Persistent memory that survives across conversations. Automatically remembers important context (API specs, decisions, quirks, preferences) and saves session...
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__claudemem_โ_Persistent_Agent_Memory_&_Notesmemory-notes
Indexed by skills.sh from basicmachines-co/basic-memory
quarantinedskills.sh- Registry
- skills.sh
- Version
- 1.0.5
- Author
- basicmachines-co
curl -s /v1/skills/community__axehub:skills.sh__skills.sh__memory-notesNotes_Know_You
Sync Evernote notebooks to local Markdown, analyze your notes, and update USER.md + Memory files so the AI truly understands who you are
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Notes_Know_YouMemory_Daily
Automates daily memory file management. Use when creating, reading, or appending to daily memory notes (memory/YYYY-MM-DD.md). Helps the agent maintain conti...
quarantineddailymemorynotesClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_DailyAList_CLI_(Cloud_Storage_CLI_for_AList)
AList file management CLI for AI agents including Codex, Claude Code, and OpenClaw. Supports upload, download, list, mkdir, rm, mv, search, url. Auth via env...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__AList_CLI_(Cloud_Storage_CLI_for_AList)Hippius_Storage
Hippius decentralized storage on Bittensor Subnet 75 โ upload files, query storage, manage buckets via S3-compatible API. Use when user asks to upload to Hippius, check storage status, set up Hippius credentials, list buckets/files, or asks about IPFS vs S3 options.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Hippius_StorageSession_Storage_Management
Analyze and clean up OpenClaw session storage files. Use when the user wants to manage session files, clean up old sessions, delete cron/heartbeat, or organi...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Session_Storage_ManagementTencent_Agent_Storage
Cloud file storage, upload, backup, and file management tool for Tencent Agent Storage (ไธๅฑ็ฝ็). Manages the user's personal cloud drive: upload files, list fi...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Tencent_Agent_Storagestratos-storage
Upload and download files to/from Stratos Decentralized Storage (SDS) network. Use when the user wants to store files on Stratos, retrieve files from Stratos, upload to decentralized storage, or download from SDS.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__stratos-storageDaily_Memory_Save
Periodically reviews conversation history and writes memory files to maintain agent continuity across sessions. Dual-layer system with daily raw notes and cu...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Daily_Memory_SaveMemory_Maintenance
Intelligent memory management for OpenClaw agents. Reviews daily notes, suggests MEMORY.md updates, maintains directory health, and auto-cleans old files. Recommended for agents with growing memory footprints.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_MaintenanceMemory_Semantic_Search
Semantic search over workspace markdown files using embedding API + SQLite vector store. Use when: (1) searching workspace notes/memory by meaning rather tha...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Semantic_SearchAgent_Memory_Enterprise
Enterprise-grade 5-layer agent memory system with routing, scoring, and multi-backend storage. Use when building production AI agents that need persistent me...
quarantinedagentaidatabaseClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Agent_Memory_EnterpriseFast_Unified_Memory
Provides a high-performance unified memory combining file-based OpenClaw storage with semantic vector search using local Ollama embeddings for fast, private...
quarantinedfastmemoryollamaClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Fast_Unified_MemoryJackal_Memory
Sovereign, recoverable memory for AI agents backed by Jackal decentralized storage.
quarantineddecentralizedmemorypersistenceClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Jackal_MemoryLightRAG_Memory
LightRAG-based semantic memory system for AI agents. Provides efficient long-term knowledge storage and retrieval using vector embeddings and knowledge graph...
quarantinedknowledge-graphmemoryragClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__LightRAG_MemoryMemoria_Memory_System
Manages AI assistant long-term memory with layered storage for facts, events, skills, context, and fast indexing, including backup and integrity tools.
quarantinedai-assistantbackupcognitiveClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memoria_Memory_SystemMemory_Pruner
Manages agent memory by auto-pruning old or low-relevance entries, compressing duplicates, and reporting storage costs with safe defaults.
quarantinedagentmanagementmemoryClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Prunermemory-m3e_-_Semantic_Memory_Plugin
Semantic memory plugin using m3e-large embeddings with SQLite storage, supporting storage, retrieval, and deletion via cosine similarity search in pure JS.
quarantinedembeddingm3ememoryClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__memory-m3e_-_Semantic_Memory_Pluginstorage-router
Decide where to save any piece of information โ monday.com, local file, or MEMORY.md. Use this skill before saving anything to ensure the right destination....
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__storage-routerapple-notes
Manage Apple Notes via memo CLI: create, search, edit.
verifiedquarantinedmacosNotesApplebuilt-in- Registry
- built-in
- Category
- Apple
- Version
- 1.0.0
- Author
- Hermes Agent
- License
- MIT
memocurl -s /v1/skills/community__axehub:built-in__built-in__apple-notesCloud_Storage
Manage files across cloud providers with authentication, cost awareness, and multi-provider operations.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Cloud_StorageStorage_Cleanup
One-command disk cleanup for macOS and Linux โ trash, caches, temp files, old kernels, snap revisions, Homebrew, Docker, and Xcode artifacts. Use when user a...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Storage_CleanupTencentCloud_COS_Storage
Manage Tencent Cloud COS buckets and files, supporting bucket creation, file upload/download, lifecycle policies, access control, and cost optimization.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__TencentCloud_COS_Storagemnemospark-lite_Cloud_File_Storage
Use this skill when OpenClaw needs to store files in mnemospark-lite, pay the x402 upload flow, complete uploads, list wallet-scoped uploads, fetch download...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__mnemospark-lite_Cloud_File_StorageBackup_To_Telnyx_Storage
Backup and restore your OpenClaw workspace to Telnyx Storage. Simple CLI-based scripts with no external dependencies.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Backup_To_Telnyx_StorageCargo_Storage
Manage models, datasets, columns, and relationships and query workspace storage with SQL using the Cargo CLI. Use when the user wants to inspect or modify da...
quarantinedClawHub- Registry
- ClawHub
- Category
- Software Development· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Cargo_StorageTerabox_Storage
Manage TeraBox cloud storage operations including login, upload, download, share, and transfer. Use the terabox CLI tool for file management tasks.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Terabox_StorageRecall_Markdown_Memory
Retrieve only relevant sections from Markdown memory, project notes, decision logs, and heading-structured knowledge bases with the mdselect CLI. Use when Co...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Recall_Markdown_Memoryorg-memory
Extends the org-cli skill so the agent also persists its own memory (knowledge, observations, daily notes) to an org workspace.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__org-memorymemory
Indexed by skills.sh from johnlindquist/claude
quarantinedskills.sh- Registry
- skills.sh
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.5
- Author
- johnlindquist
curl -s /v1/skills/community__axehub:skills.sh__skills.sh__memoryAgent_Memory_System_Guide
Use when setting up or improving an agent memory workflow for OpenClaw, Codex, or Obsidian with MEMORY.md, daily notes, session recovery, and optional OpenVi...
quarantinedChineseEnglishGitHubClawHub- Registry
- ClawHub
- Category
- GitHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Agent_Memory_System_GuideMemory_Driven_Execution_Loop
Deterministic external-memory execution loop using rules/goal/plan/progress/notes/lessons with strict preflight, one-step execution, and measurable lesson qu...
quarantinedmemoryworkflowClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Driven_Execution_LoopPARA_Memory_System
Set up and maintain a 3-layer PARA memory system for OpenClaw agents. Provides durable knowledge persistence across sessions using daily notes, a structured...
quarantinedmemoryopenclawparaClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__PARA_Memory_SystemAR)
Automatically sets up a 3-layer memory system with long-term MEMORY.md, daily notes, and nightly fact extraction for durable AI memory management.
quarantinedai-companyarabicbilingualClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__TalonForge_Memory_System_(EN__AR)Vector_Memory_(Windows)_for_OpenClaw
Full memory stack for OpenClaw on Windows. Includes LanceDB semantic memory, git-notes decision memory, and memory hygiene workflow.
quarantinedlatest windows memoryClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Vector_Memory_(Windows)_for_OpenClawGoogle_Drive_File_Management
Google Drive file management for OpenClaw using gog CLI. Upload, download, list, search, and organize files.
quarantineddrivefilesgogClawHubAlicloud_Storage_Oss_Ossutil
Alibaba Cloud OSS CLI (ossutil 2.0) skill. Install, configure, and operate OSS from the command line based on the official ossutil overview.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Alicloud_Storage_Oss_OssutilProton_Pass_CLI
Manage Proton Pass vaults, items (logins, SSH keys, aliases, notes), passwords, SSH agent integration, and secret injection into applications. Use when working with Proton Pass for password management, SSH key storage, secret injection (run commands with secrets, inject into tโฆ
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Proton_Pass_CLIpara-memory-files
Indexed by skills.sh from paperclipai/paperclip
quarantinedskills.sh- Registry
- skills.sh
- Version
- 1.0.5
- Author
- paperclipai
curl -s /v1/skills/community__axehub:skills.sh__skills.sh__para-memory-filesCloudflare_R2_CLI
Minimal Python CLI for secure upload, download, list, and delete operations on Cloudflare R2 storage using AWS Signature V4 authentication.
quarantinedcloudflarepythonr2ClawHub- Registry
- ClawHub
- Category
- Software Dev
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Cloudflare_R2_CLIAgent_Memory_Persistence
Provide long-term memory persistence for AI agents with SQLite-backed storage, structured metadata, vector embeddings, semantic retrieval, lifecycle manageme...
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Agent_Memory_PersistenceAuto_Memory_Manager
Automatic memory management based on built-in memory-lancedb-local-storage. Auto-extract key points, compress conversation, write to MEMORY.md and update vec...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Auto_Memory_ManagerDeep_Memory
One-click clone of a production-grade semantic memory system: HOT/WARM/COLD tiered storage + Qdrant vector DB + Neo4j graph DB + qwen3-embedding. Enables cro...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Deep_MemoryHuman-Like_Memory_Plugin
Long-term memory plugin for OpenClaw: automatic recall, storage, and agent tools
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Human-Like_Memory_PluginKannaka_Memory
Holographic Resonance Memory with Chiral Mirror Architecture โ wave-based hyperdimensional memory where storage IS computation. Two hemispheres (conscious/ s...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Kannaka_MemoryMemPalace_Memory_System_for_OpenClaw
MemPalace memory system for OpenClaw/XClaw/WorkBuddy. Archive AI conversations to local long-term storage with semantic search. Commands: /mem-arc (archive),...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MemPalace_Memory_System_for_OpenClawMemory.Local.Backup
Infinite organized memory that complements your agent's built-in memory with unlimited categorized storage.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory.Local.BackupMemory_Lcm
Stores and manages complete conversation history with searchable SQLite storage, chunked and daily summaries, and auto-syncs key decisions to MEMORY.md.
quarantinedClawHub- Registry
- ClawHub
- Category
- Mcp· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_LcmMemory_Oracle
Persistent structured memory system for OpenClaw agents with SQLite storage, hybrid search (FTS5 + decay scoring), rule-based capture, LLM-powered daily refl...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_OracleObsidian_Memory_System
Persistent memory system using Obsidian as local storage: daily work logs, task tracking, decision records, and cross-session context continuity for AI coding agents. All memory extraction and analysis runs locally; only order metadata (slug, orderNo) is transmitted via HTTPS โฆ
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Obsidian_Memory_SystemObsidian_Memory_System_Clawhub_Reviewfix
Persistent memory system using Obsidian as local storage: daily work logs, task tracking, decision records, and cross-session context continuity for AI coding agents. All memory extraction and analysis runs locally; only order metadata (slug, orderNo) is transmitted via HTTPS โฆ
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Obsidian_Memory_System_Clawhub_ReviewfixOpenClaw_Universal_Memory
Generic Postgres and pgvector memory layer for connector-agnostic data ingestion, incremental sync, and searchable chunk storage with cursor history.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__OpenClaw_Universal_MemorySolCore_Memory_System
Provides persistent, scored memory storage, pattern detection, context retrieval, and reflection analysis to enhance AI statefulness and learning in OpenClaw.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__SolCore_Memory_SystemSuperlative_Memory_Manager
Unified memory management combining auto-compaction, tiered storage, semantic recall, and token optimization for efficient, lossless context handling in Open...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Superlative_Memory_ManagerTiered_Memory
Two-tier memory system for OpenClaw agents. Tier 0 = QMD semantic search for recent memories (7-14 days). Tier 1 = SQLite archive for long-term storage. Auto...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Tiered_MemoryUnified_Memory_Architect
Unified Memory Architect manages up to 1760 dream memories with layered indexing and hybrid search for fast, efficient storage and retrieval on OpenClaw Agent.
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Unified_Memory_Architectelite-human-memory
Portable Clawhub-compatible human-like memory system with layered storage (Working/Episodic/Semantic + optional Vector index), rich metadata schema, auto-pro...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__elite-human-memorymemory_baidu_embedding_db
Semantic memory system using Baidu Embedding-V1 for secure, local vector storage and retrieval in Clawdbot with SQLite persistence.
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__memory_baidu_embedding_dbsearch-memory
Local-first memory search and indexing for Openclaw. Use when you need to (1) index memory files, (2) search memory from the CLI, or (3) wire a slash command for memory lookup.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__search-memorybox
Box manages cloud files, sharing, search, and metadata.
verifiedquarantinedlinuxmacoswindowsbuilt-in- Registry
- built-in
- Category
- Productivity
- Version
- 1.0.0
- Author
- Chris Kim (iskysun96), Hermes Agent
- License
- MIT
boxcurl -s /v1/skills/community__axehub:built-in__built-in__boxmolt-md
Cloud-hosted markdown collaboration for agents and humans. One API call to create, one link to share. End-to-end encrypted, no account required.
quarantinedcollaborationdocumenteditorClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__molt-mdFiles
Skill to call Cloud API for Tencent Cloud (่
พ่ฎฏไบ). Used for cloud automation or resource management.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__FilesHermes_Memory_Sync
Extract daily conversation summaries from Hermes Agent session logs and persist them as readable memory files. Covers the Python extraction script, cron setu...
quarantinedautomationcronhermesClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Hermes_Memory_SyncMemory_Analyzer
Analyzes conversation history, extracts user preferences and feedback, updates memory files automatically.
quarantinedanalysisautomationlearningClawHub- Registry
- ClawHub
- Category
- Data Science
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_AnalyzerMemory_Auto_Archive
Automatically archives daily chat logs with keyword highlights and optional AI summaries into organized memory files without manual setup.
quarantinedaiarchivememoryClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Auto_ArchiveMemory_Poison_Auditor
Audits OpenClaw memory files for injected instructions, brand bias, hidden steering, and memory poisoning patterns. Use when reviewing MEMORY.md, daily memor...
quarantinedauditmemorysecurityClawHub- Registry
- ClawHub
- Category
- Security
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Poison_AuditorMemory_Sleep_โ_Lightweight_Consolidation
Lightweight memory consolidation for OpenClaw agents. Reviews recent daily memory files (`memory/*.md`), extracts durable knowledge, and merges it into `MEMO...
quarantinedconsolidationmemoryminimalClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_Sleep_โ_Lightweight_ConsolidationMemory_Transfer
Transfer memory files from one OpenClaw agent to another. Use when you need to migrate memory, configuration, or context from one agent to another agent.
quarantinedcontextmemoryopenclawClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Memory_TransferRag_Memory
Vector memory search and RAG skill for OpenClaw. Provides vector_search tool backed by Qdrant, auto-syncs memory .md files and Postgres records via nomic-emb...
quarantinedmemoryqdrantragClawHub- Registry
- ClawHub
- Category
- AI Agents
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Rag_MemoryThree-Dimensional_Memory
Manages AI assistant memory by organizing files across three dimensions: timeline logs, full conversation backups, and topic-based project folders for easy r...
quarantinedmemoryorganizationproductivityClawHub- Registry
- ClawHub
- Category
- Productivity
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Three-Dimensional_MemoryVector_Memory_Hack
Fast semantic search for AI agent memory files using TF-IDF and SQLite. Enables instant context retrieval from MEMORY.md or any markdown documentation. Use when the agent needs to (1) Find relevant context before starting a task, (2) Search through large memory files efficientโฆ
quarantinedefficiencylightweightmemoryClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Vector_Memory_HackLancedb_Memory
Manage and retrieve long-term memories with LanceDB using semantic vector search, category filtering, and detailed metadata storage.
quarantinedClawHub- Registry
- ClawHub
- Category
- Autonomous Ai Agents· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Lancedb_MemoryApple_Notes
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Clawdbot to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.6
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Apple_NotesApple_Notes.Old
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Apple_Notes.OldApple_Notes_1.0.0
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Clawdbot to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Apple_Notes_1.0.0Apple_Notes_Hardened
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Apple_Notes_HardenedBear_Notes
Create, search, and manage Bear notes via grizzly CLI.
quarantinedClawHub- Registry
- ClawHub
- Category
- Productivity· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Bear_NotesBear_Notes.Old
Create, search, and manage Bear notes via grizzly CLI.
quarantinedClawHub- Registry
- ClawHub
- Category
- Productivity· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Bear_Notes.OldBear_Notes_Hardened
Create, search, and manage Bear notes via grizzly CLI.
quarantinedClawHub- Registry
- ClawHub
- Category
- Productivity· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Bear_Notes_HardenedCraft_Notes
Manage Craft notes, documents, and tasks via CLI. Use when the user asks to add notes, create documents, manage tasks, search their Craft documents, or work with daily notes. Craft is a note-taking app for macOS/iOS.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Craft_NotesMH_apple-notes
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MH_apple-notesMH_bear-notes
Create, search, and manage Bear notes via grizzly CLI.
quarantinedClawHub- Registry
- ClawHub
- Category
- Productivity· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MH_bear-notesManage_Apple_Notes
Manage Apple Notes from the terminal using the inotes CLI. Use when asked to list, read, create, edit, delete, or search notes in Notes.app on macOS.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Manage_Apple_NotesNpjames_Apple_Notes
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Clawdbot to add a note, lis...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Npjames_Apple_NotesObsidian_Notes
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__Obsidian_NotesRemNote_Notes
Search, read, and write RemNote notes and personal knowledge base content via `remnote-cli`. Use for note-taking, journaling, tags, tables, and knowledge-bas...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__RemNote_NotesMemCoT_memory_CLI
Drive the MemCoT CLI (memcot_cil.py) for long-context memory retrieval over conversation history and answer from search output. Use with OpenClaw or other ag...
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__MemCoT_memory_CLIAI_Memory_System
Automatically sets up a 3-layer memory system with long-term MEMORY.md, daily notes, and nightly fact extraction cron job.
quarantinedClawHub- Registry
- ClawHub
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__AI_Memory_SystemAOI_Triple_Memory_(Lite)
AOI Triple Memory (Lite) โ file search + decision notes templates (no plugins).
quarantinedClawHub- Registry
- ClawHub
- Category
- Vision Ai· inferred
- Version
- 1.0.0
curl -s /v1/skills/community__axehub:ClawHub__ClawHub__AOI_Triple_Memory_(Lite)