aipack 0.7.7-WIP

Command Agent runner to accelerate production coding with genai.
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# .aipack-base shell setup (mimicking rustup env)
# affix colons on either side of $PATH to simplify matching
case ":${PATH}:" in
    *:"$HOME/.aipack-base/bin":*)
        ;;
    *)
        # note - last or first. For now, we got with first.
        export PATH="$HOME/.aipack-base/bin:$PATH"
        ;;
esac