electrical-circuit-analysis
Electrical Circuit Analysis - Analyze electrical circuit: compute capacitance, convert resistance units, calculate total charge, and duty cycle. Use this skill for electrical engineering tasks involving convert resistance kOhm to Ohm calculate geometric term calculate absolute error. Combines 3 tools from 3 SCP server(s).
DeepseekModel
Curated skill
Quality Excellent · 78
v1.0.0
Get
https://deepseekmodel.com/api/download.php?id=spectrai-initiative-innoclaw-claude-skills-electrical-circuit-analysis-skill-md&format=skill
Download .skill
Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name electrical_circuit_analysis description Electrical Circuit Analysis - Analyze electrical circuit: compute capacitance, convert resistance units, calculate total charge, and duty cycle. Use this skill for electrical engineering tasks involving convert resistance kOhm to Ohm calculate geometric term calculate absolute error. Combines 3 tools from 3 SCP server(s). Electrical Circuit Analysis Discipline : Electrical Engineering | Tools Used : 3 | Servers : 3 Description Analyze electrical circuit: compute capacitance, convert resistance units, calculate total charge, and duty cycle. Tools Used convert_resistance_kOhm_to_Ohm from server-21 (streamable-http) - https://scp.intern-ai.org.cn/api/v1/mcp/21/Electrical_Engineering_and_Circuit_Calculations calculate_geometric_term from server-20 (streamable-http) - https://scp.intern-ai.org.cn/api/v1/mcp/20/Materials_Mechanics_and_Fracture_Analysis calculate_absolute_error from server-26 (streamable-http) - https://scp.intern-ai.org.cn/api/v1/mcp/26/Data_processing_and_statistical_analysis Workflow Convert resistance kOhm to Ohm Calculate geometric parameters Compute measurement error Test Case Input { "resistance_kohm" : 4.7 , "measured" : 14.7 , "true_val" : 15.0 } Expected Steps Convert resistance kOhm to Ohm Calculate geometric parameters Compute measurement error Usage Example Note: Replace sk-b04409a1-b32b-4511-9aeb-22980abdc05c with your own SCP Hub API Key. You can obtain one from the SCP Platform . import asyncio import json from contextlib import AsyncExitStack from mcp import ClientSession from mcp.client.streamable_http import streamablehttp_client from mcp.client.sse import sse_client SERVERS = { "server-21" : "https://scp.intern-ai.org.cn/api/v1/mcp/21/Electrical_Engineering_and_Circuit_Calculations" , "server-20" : "https://scp.intern-ai.org.cn/api/v1/mcp/20/Materials_Mechanics_and_Fracture_Analysis" , "server-26" : "https://scp.intern-ai.org.cn/api/v1/mcp/26/Data_processing_and_statistical_analysis" } async def connect ( url, stack ): transport = streamablehttp_client(url=url, headers={ "SCP-HUB-API-KEY" : "sk-b04409a1-b32b-4511-9aeb-22980abdc05c" }) read, write, _ = await stack.enter_async_context(transport) ctx = ClientSession(read, write) session = await stack.enter_async_context(ctx) await session.initialize() return session def parse ( result ): try : if hasattr (result, 'content' ) and result.content: c = result.content[ 0 ] if hasattr (c, 'text' ): try : return json.loads(c.text) except : return c.text return str (result) except : return str (result) async def main (): async with AsyncExitStack() as stack: # Connect to required servers sessions = {} sessions[ "server-21" ] = await connect( "https://scp.intern-ai.org.cn/api/v1/mcp/21/Electrical_Engineering_and_Circuit_Calculations" , stack) sessions[ "server-20" ] = await connect( "https://scp.intern-ai.org.cn/api/v1/mcp/20/Materials_Mechanics_and_Fracture_Analysis" , stack) sessions[ "server-26" ] = await connect( "https://scp.intern-ai.org.cn/api/v1/mcp/26/Data_processing_and_statistical_analysis" , stack) # Execute workflow steps # Step 1: Convert resistance kOhm to Ohm result_1 = await sessions[ "server-21" ].call_tool( "convert_resistance_kOhm_to_Ohm" , arguments={}) data_1 = parse(result_1) print ( f"Step 1 result: {json.dumps(data_1, indent= 2 , ensure_ascii= False )[: 500 ]} " ) # Step 2: Calculate geometric parameters result_2 = await sessions[ "server-20" ].call_tool( "calculate_geometric_term" , arguments={}) data_2 = parse(result_2) print ( f"Step 2 result: {json.dumps(data_2, indent= 2 , ensure_ascii= False )[: 500 ]} " ) # Step 3: Compute measurement error result_3 = await sessions[ "server-26" ].call_tool( "calculate_absolute_error" , arguments={}) data_3 = parse(result_3) print ( f"Step 3 result: {json.dumps(data_3, indent= 2 , ensure_ascii= False )[: 500 ]} " ) # Cleanup print ( "Workflow complete!" ) if __name__ == "__main__" : asyncio.run(main())
Keywords that activate this skill. Click one to copy it.
This skill does not provide trigger words.
The downloaded .skill package contains the following fields.
| Field | Description |
|---|---|
| format | Format tag (skill/v1) |
| skill_id | Unique skill ID |
| name | Skill name |
| version | Version |
| description | Description |
| category | Categories (array) |
| trigger_words | Trigger words |
| tags | Tags |
| source | Source |
| source_url | Source URL (this page) |
| exported_at | Exported at (set per download) |
| system_prompt | System prompt body |
| model_config | Model config: provider / model / temperature / max_tokens / top_p |
| examples | Examples |
| install_guide | Import guide for Coze / Dify / Claude / custom frameworks |
The same skill can be exported in different platform formats.