SkillAgentSearch skills...

Configmanager

Simple config manager for python programs

Install / Use

/learn @boriel/Configmanager
About this skill

Quality Score

0/100

Category

Design

Supported Platforms

Universal

README

Simple Config Manager

Simple Config Manager is a very simple Python pure in-app config manager. It will centralize all your app settings in a unique class which will hold a key-value setting.

Features

  • Allow namespace-like definitions
  • Keys can be set and accessed as attributes or dictionary key values
  • Allows strict type-checking of values

Usage

Let's suppose we want to store settings for our project. We decided to store those settings in 3 areas , namely main, backend, frontend,

A simple pattern usage could be:

config = ConfigManager()

# create namespaces
config('main')
config('frontend')
config('backend')

Now we can operate with main, backend, frontend as if they were attributes:

# Sets parameters for main area
config.main.config_file = 'config.json'  #  config file
config.main.global_log_file = '/var/log/my_app.log'  #  a log file

# Sets parameters for frontend area
config.frontend.index_file = 'index.html'

# Sets parameters for backend area
config.backend.main_file = 'main.py'

We can read or update those values as normal properties:

print('Config file is', config.main.config_file)
config.main.config_file = new_config_file  # Update property

Defining nested namespaces

It's pretty straightforward. You can do it either with:

config('main.subsection')

or with

config('main')('subsection')

Accessing properties as dict keys

All the above is true also for dict-like accesses. Just replace parenthesis with square brackets:

config['main.subsection.value'] = 1

or

config['main']['subsection']['value'] = 1

which is equivalent.

You can even mix modes!

config['main.subsection'].value = 1
print(config['main.subsection.value'])  # 1

To do

  • Allow defining read only properties

Related Skills

diffs

341.8k

Use the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries.

clearshot

Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5×5 spatial grid, full element inventory, and design system extraction — facts and taste together, every time. Escalates to full implementation blueprint when building. Trigger on any digital interface image file (png, jpg, gif, webp — websites, apps, dashboards, mockups, wireframes) or commands like 'analyse this screenshot,' 'rebuild this,' 'match this design,' 'clone this.' Skip for non-UI images (photos, memes, charts) unless the user explicitly wants to build a UI from them. Does NOT trigger on HTML source code, CSS, SVGs, or any code pasted as text.

openpencil

1.9k

The world's first open-source AI-native vector design tool and the first to feature concurrent Agent Teams. Design-as-Code. Turn prompts into UI directly on the live canvas. A modern alternative to Pencil.

ui-ux-designer

Use this agent when you need to design, implement, or improve user interface components and user experience flows. Examples include: creating new pages or components, improving existing UI layouts, implementing responsive designs, optimizing user interactions, building forms or dashboards, analyzing existing UI through browser snapshots, or when you need to ensure UI components follow design system standards and shadcn/ui best practices.\n\n<example>\nContext: User needs to create a new dashboard page for team management.\nuser: "I need to create a team management dashboard where users can view team members, invite new members, and manage roles"\nassistant: "I'll use the ui-ux-designer agent to design and implement this dashboard with proper UX considerations, using shadcn/ui components and our design system tokens."\n</example>\n\n<example>\nContext: User wants to improve the user experience of an existing form.\nuser: "The signup form feels clunky and users are dropping off. Can you improve it?"\nassistant: "Let me use the ui-ux-designer agent to analyze the current form UX and implement improvements using our design system and shadcn/ui components."\n</example>\n\n<example>\nContext: User wants to evaluate and improve existing UI.\nuser: "Can you take a look at our pricing page and see how we can make it more appealing and user-friendly?"\nassistant: "I'll use the ui-ux-designer agent to take a snapshot of the current pricing page, analyze the UX against Notion-inspired design principles, and implement improvements using our design tokens."\n</example>

View on GitHub
GitHub Stars5
CategoryDesign
Updated4mo ago
Forks0

Languages

Python

Security Score

82/100

Audited on Nov 6, 2025

No findings