# File lib/cft/commands.rb, line 168
            def opts
                opts = super("cft begin [options] SESSION")
                opts.on("-r", "--resume",
                        "Bundle manifest and needed files") do |val|
                    @resume = true
                end
                opts.on("-w", "--watch DIR",
                        "Watch additional directory " +
                        "(can be given multiple times)") do |val|
                    @roots.push(val)
                end
                opts
            end