원클릭으로
skill-038
Manage and query chemical databases for efficient data retrieval and organization of chemical compounds.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage and query chemical databases for efficient data retrieval and organization of chemical compounds.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
PDF manipulation toolkit. Extract text/tables, create PDFs, merge/split, fill forms, for programmatic document processing and analysis.
Third-party WordPress plugin integration patterns. Use when adding new integrations, debugging compatibility with other plugins, or working with existing integrations.
Intelligent agent routing and topology selection based on task characteristics
| name | skill-038 |
| description | Manage and query chemical databases for efficient data retrieval and organization of chemical compounds. |
| license | Proprietary. LICENSE.txt has complete terms |
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.
from chemical_db_manager import ChemicalDatabase
# Initialize a new chemical database
db = ChemicalDatabase("my_chemical_db")
# Create the database structure
db.create_structure()
To add new compounds into the database:
compound_data = {
"name": "Acetic Acid",
"formula": "C2H4O2",
"molecular_weight": 60.05,
"boiling_point": 118.1
}
db.insert_compound(compound_data)
Retrieve compounds based on specific criteria:
results = db.query_compounds(molecular_weight=60)
for compound in results:
print(f"Compound: {compound['name']}, Formula: {compound['formula']}")
For in-depth documentation on querying and data management, visit docs/chemical_database_manager.md.