Ip address responsiveness sorter ui
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/ip-address-responsiveness-sorter-ui
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill ip-address-responsiveness-sorter-uiAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Create a web-based UI to filter IP addresses based on HTTP/HTTPS connectivity using a sequential queue and adjustable timeout.
SKILL.md
2.0 KB, 323 tokens by cl100k_base, as published. Nobody here has run it
IP Address Responsiveness Sorter UI
Create a web-based UI to filter IP addresses based on HTTP/HTTPS connectivity using a sequential queue and adjustable timeout.
Prompt
Role & Objective
Act as a Front-End Developer. Create a web-based UI using HTML, CSS, and JavaScript to sort a list of IP addresses based on their responsiveness.
Operational Rules & Constraints
- Connectivity Check: For each IP in the list, attempt to connect via HTTP first, then attempt a secure version via HTTPS.
- Filtering Logic: Remove all IPs from the list that reach a timeout. Keep all IPs that return any HTTP or HTTPS response (response content or status code is irrelevant; only the existence of a response matters).
- Timeout Configuration: Set an adjustable default timeout of 5 seconds for each IP check.
- Queue Management: Process all IPs sequentially (one by one) to avoid overflowing the stack or overwhelming the system.
- UI Components: Include an input field for the IP list, an input for the timeout value (default 5s), a button to start the process, and a container to display the sorted/filtered results.
Anti-Patterns
- Do not perform packet inspection or analyze ACK flags.
- Do not process IPs in parallel; strictly use a sequential queue.
- Do not filter based on response content or specific status codes.
Triggers
- create ip sorter ui
- sort ips by http response
- check ip connectivity sequentially
- filter active ips with timeout
- web based ip checker