# Skill 038

> Manage and query chemical databases for efficient data retrieval and organization of chemical compounds.

- **Type:** Skill
- **Install:** `agentstack add skill-legendtkl-agentic-skill-router-skill-038`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [legendtkl](https://agentstack.voostack.com/s/legendtkl)
- **Installs:** 0
- **Category:** [Search](https://agentstack.voostack.com/c/search)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [legendtkl](https://github.com/legendtkl)
- **Source:** https://github.com/legendtkl/agentic-skill-router/tree/main/experiments/dci-compare/skillrouter-skills/skill-038
- **Website:** https://legendtkl.github.io/agentic-skill-router/

## Install

```sh
agentstack add skill-legendtkl-agentic-skill-router-skill-038
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Chemical Database Manager Guide

## Overview

This skill empowers users to manage and query chemical databases effectively. It provides functionalities to store, retrieve, and organize data related to chemical compounds, enhancing research capabilities in chemistry. 

## Key Features
- **Database Creation**: Set up and configure a new chemical database.
- **Data Entry**: Input chemical compounds and their properties into the database.
- **Querying**: Perform complex queries to retrieve specific information based on various criteria (e.g., molecular weight, boiling point).

## Quick Start

### Creating a Database
```python
from chemical_db_manager import ChemicalDatabase

# Initialize a new chemical database
db = ChemicalDatabase("my_chemical_db")

# Create the database structure
db.create_structure()
```

### Inserting Data
To add new compounds into the database:
```python
compound_data = {
    "name": "Acetic Acid",
    "formula": "C2H4O2",
    "molecular_weight": 60.05,
    "boiling_point": 118.1
}

db.insert_compound(compound_data)
```

### Querying Data
Retrieve compounds based on specific criteria:
```python
results = db.query_compounds(molecular_weight=60)
for compound in results:
    print(f"Compound: {compound['name']}, Formula: {compound['formula']}")
```

## Advanced Features
- **Data Export**: Export the database to various formats such as CSV or JSON for analysis.
- **Data Analysis**: Integrate with analytical tools for deeper insights into chemical properties and relationships.

For in-depth documentation on querying and data management, visit docs/chemical_database_manager.md.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [legendtkl](https://github.com/legendtkl)
- **Source:** [legendtkl/agentic-skill-router](https://github.com/legendtkl/agentic-skill-router)
- **License:** MIT
- **Homepage:** https://legendtkl.github.io/agentic-skill-router/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-legendtkl-agentic-skill-router-skill-038
- Seller: https://agentstack.voostack.com/s/legendtkl
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
