modify-caching — for Claude Code modify-caching, elixir_cache, community, for Claude Code, ide skills, use Cache, Caching, Patterns, library, reference

v1.0.0

이 스킬 정보

캐싱 전략을 최적화하려는 Elixir 에이전트에게 적합하며, 통일된 캐싱 API를 사용합니다 현지화된 요약: Caching patterns for the elixir cache project. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

기능

For the full library API reference, read references/elixir-cache-reference.md.
elixir cache provides a unified caching API via the use Cache macro with pluggable adapters:
├── cache.ex # Main module: behaviour, use macro, delegation
│ ├── agent.ex # Cache.Agent adapter (simple Agent-based)
│ ├── con cache.ex # Cache.ConCache adapter (wraps con cache library)

# Core Topics

MikaAK MikaAK
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

캐싱 전략을 최적화하려는 Elixir 에이전트에게 적합하며, 통일된 캐싱 API를 사용합니다 현지화된 요약: Caching patterns for the elixir cache project. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

이 스킬을 사용하는 이유

에이전트가 효율적인 캐싱을 구현할 수 있도록 하며, Cache.Agent 및 Cache.ConCache와 같은 플러그 가능한 어댑터를 사용하고, 테스트를 우선하며, `use Cache` 매크로를 통해 통일된 캐싱 API를 제공하며, con_cache 및 DETS와 같은 라이브러리를 지원합니다

최적의 용도

캐싱 전략을 최적화하려는 Elixir 에이전트에게 적합하며, 통일된 캐싱 API를 사용합니다

실행 가능한 사용 사례 for modify-caching

Elixir 애플리케이션의 캐싱 패턴 구현
DETS 또는 con_cache 어댑터를 사용하여 캐시 저장소 최적화
플러그 가능한 어댑터를 사용하여 캐싱 전략 테스트 및 검증

! 보안 및 제한 사항

  • Elixir 환경이 필요합니다
  • Elixir 캐싱 용도만 해당
  • con_cache 또는 DETS와 같은 라이브러리에 의존합니다

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is modify-caching?

캐싱 전략을 최적화하려는 Elixir 에이전트에게 적합하며, 통일된 캐싱 API를 사용합니다 현지화된 요약: Caching patterns for the elixir cache project. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install modify-caching?

Run the command: npx killer-skills add MikaAK/elixir_cache/modify-caching. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for modify-caching?

Key use cases include: Elixir 애플리케이션의 캐싱 패턴 구현, DETS 또는 con_cache 어댑터를 사용하여 캐시 저장소 최적화, 플러그 가능한 어댑터를 사용하여 캐싱 전략 테스트 및 검증.

Which IDEs are compatible with modify-caching?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for modify-caching?

Elixir 환경이 필요합니다. Elixir 캐싱 용도만 해당. con_cache 또는 DETS와 같은 라이브러리에 의존합니다.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add MikaAK/elixir_cache/modify-caching. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use modify-caching immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

modify-caching

현지화된 요약: Caching patterns for the elixir cache project. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Caching Patterns

For the full library API reference, read references/elixir-cache-reference.md.

Architecture

elixir_cache provides a unified caching API via the use Cache macro with pluggable adapters:

lib/
├── cache.ex              # Main module: behaviour, `use` macro, delegation
├── cache/
│   ├── agent.ex          # Cache.Agent adapter (simple Agent-based)
│   ├── con_cache.ex      # Cache.ConCache adapter (wraps con_cache library)
│   ├── dets.ex           # Cache.DETS adapter (disk-persisted via Erlang DETS)
│   ├── ets.ex            # Cache.ETS adapter (high-performance in-memory)
│   ├── redis.ex          # Cache.Redis adapter (Redix + Poolboy)
│   ├── sandbox.ex        # Cache.Sandbox adapter (test isolation)
│   ├── sandbox_registry.ex  # Process registry for sandbox isolation
│   ├── term_encoder.ex   # Binary term encoding/decoding
│   └── metrics.ex        # Telemetry event definitions

Cache Behaviour

All adapters implement @behaviour Cache:

elixir
1@callback child_spec({cache_name :: atom, cache_opts :: Keyword.t()}) :: Supervisor.child_spec() 2@callback opts_definition() :: Keyword.t() 3@callback start_link(cache_opts :: Keyword.t()) :: {:ok, pid()} | {:error, term()} | :ignore 4@callback put(cache_name, key, ttl, value) :: :ok | ErrorMessage.t() 5@callback put(cache_name, key, ttl, value, opts) :: :ok | ErrorMessage.t() 6@callback get(cache_name, key) :: ErrorMessage.t_res(any) 7@callback get(cache_name, key, opts) :: ErrorMessage.t_res(any) 8@callback delete(cache_name, key) :: :ok | ErrorMessage.t() 9@callback delete(cache_name, key, opts) :: :ok | ErrorMessage.t()

use Cache Macro

The macro generates public API functions (get/1, put/2, put/3, delete/1, get_or_create/2, etc.) plus adapter-specific functions if the adapter exports __using__/1.

Required options: adapter, name Optional: sandbox?, opts

Adapters

AdapterDescription
Cache.AgentSimple agent-based caching
Cache.DETSDisk-persisted caching with Erlang DETS
Cache.ETSHigh-performance in-memory cache with ETS
Cache.RedisRedis adapter using Redix & Poolboy, supports JSON and Hashes
Cache.ConCacheWrapper around the ConCache library
Cache.SandboxTest adapter (auto-selected when sandbox?: true)

Adapter-specific functions

Some adapters inject extra functions via __using__/1:

  • Cache.ETS — full set of ETS operations (lookup/1, insert_raw/1, match_pattern/1, select/1, tab2list/0, update_counter/2, etc.)
  • Cache.Redis — hash and pipeline functions

Sandbox Testing

When sandbox?: true, Cache.Sandbox adapter is used. Keys are prefixed with a sandbox ID from Cache.SandboxRegistry for per-test isolation.

Setup in test/test_helper.exs:

elixir
1Cache.SandboxRegistry.start_link() 2ExUnit.start()

In test setup:

elixir
1Cache.SandboxRegistry.start([MyCache])

Telemetry Events

  • [:elixir_cache, :cache, :put] — span
  • [:elixir_cache, :cache, :get] — span
  • [:elixir_cache, :cache, :get, :miss] — counter on cache miss
  • [:elixir_cache, :cache, :delete] — span
  • [:elixir_cache, :cache, :put, :error] — counter on error
  • [:elixir_cache, :cache, :get, :error] — counter on error
  • [:elixir_cache, :cache, :delete, :error] — counter on error

All events include %{cache_name: cache_name} metadata.

Adding a New Adapter

  1. Create lib/cache/my_adapter.ex
  2. Implement @behaviour Cache callbacks
  3. Define opts_definition/0 returning a NimbleOptions schema
  4. Optionally export __using__/1 to inject adapter-specific functions
  5. Add tests in test/cache/my_adapter_test.exs
  6. Cache.ETS is the simplest adapter to use as a reference

관련 스킬

Looking for an alternative to modify-caching or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

현지화된 요약: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
인공지능

widget-generator

Logo of f
f

현지화된 요약: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
인공지능

flags

Logo of vercel
vercel

현지화된 요약: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

현지화된 요약: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
개발자