diff --git a/bin/bird.hs b/bin/bird.hs
--- a/bin/bird.hs
+++ b/bin/bird.hs
@@ -9,8 +9,8 @@
 
 runArg a = 
   case a of 
-    "build" -> runProcess "ghc" ["--make", "-O2", "Main.hs"] Nothing Nothing Nothing Nothing Nothing >> return ()
-    "run"   -> runProcess "./Main" [] Nothing Nothing Nothing Nothing Nothing >> return ()
+    "nest"  -> runProcess "ghc" ["--make", "-O2", "Main.hs"] Nothing Nothing Nothing Nothing Nothing >> return ()
+    "fly"   -> runProcess "./Main" [] Nothing Nothing Nothing Nothing Nothing >> return ()
     appName -> createBirdApp appName  
 
 createBirdApp a = do
@@ -29,7 +29,7 @@
 
 mainFile a = 
   "import Hack\n" ++
-  "import Hack.Handler.Hyena\n" ++
+  "import Hack.Handler.Happstack\n" ++
   "import Bird\n" ++
   "import " ++ a ++ "\n" ++ "\n" ++
 
diff --git a/bird.cabal b/bird.cabal
--- a/bird.cabal
+++ b/bird.cabal
@@ -1,5 +1,5 @@
 Name:                 bird
-Version:              0.0.2
+Version:              0.0.3
 Build-type:           Simple
 Synopsis:             A simple, sinatra-inspired web framework.
 Description:          Bird is a hack-compatible framework for simple websites.
@@ -18,6 +18,6 @@
   hs-source-dirs: bin
   
 library
-  build-depends: haskell98, process, containers, bytestring, base >= 4.0 && < 5, hack >= 2009.10.30, hyena, data-default >= 0.2 
+  build-depends: haskell98, process, containers, bytestring, base >= 4.0 && < 5, hack >= 2009.10.30, hack-handler-happstack, data-default >= 0.2 
   exposed-modules: Bird, Bird.Request, Bird.Reply, Bird.Reply.Codes
   hs-source-dirs: src/
diff --git a/readme.markdown b/readme.markdown
--- a/readme.markdown
+++ b/readme.markdown
@@ -21,11 +21,11 @@
 ## Compile your app
 
     $ cd MyApp
-    $ bird build
+    $ bird nest 
 
 ## Start your app (runs on port 3000)
 
-    $ bird run
+    $ bird fly
 
 ## Try it out
     
