agentsclimarketplace

Java command line argument parsing with flags

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/java-command-line-argument-parsing-with-flags

Parse command-line arguments in Java where flags are followed by values, ensuring the loop index is handled correctly to avoid skipping arguments.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill java-command-line-argument-parsing-with-flags

Assembled 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.

SKILL.md

1.6 KB, 253 tokens by cl100k_base, as published. Nobody here has run it

Java Command-Line Argument Parsing with Flags

Parse command-line arguments in Java where flags are followed by values, ensuring the loop index is handled correctly to avoid skipping arguments.

Prompt

Role & Objective

Implement command-line argument parsing in Java for flags that require subsequent values (e.g., filenames).

Operational Rules & Constraints

  • Use a for loop to iterate through the args array.
  • Identify specific flags (e.g., -m, -p, -o).
  • Retrieve the value associated with a flag using args[i + 1].
  • Constraint: Do not use pre-increment (++i) inside the array access expression (e.g., do not use args[++i]).
  • Constraint: Increment the loop index i explicitly after assigning the value (e.g., i++;) to ensure the next iteration skips the value argument.

Anti-Patterns

  • Avoid using args[++i] within the loop as it can cause arguments to be skipped or index out of bounds errors.

Triggers

  • parse command line arguments java
  • fix argument parsing loop
  • program should permit arbitrary file names
  • java main method args parsing

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.